Location: BG_TCC @ bc202e51bde6 / Kernik_matlab_parameter_fitting / f_gate_fitting.m

Author:
Shelley Fong <sfon036@UoA.auckland.ac.nz>
Date:
2022-07-06 16:26:28+12:00
Desc:
Updating to LRd 34.4 pL cell parameters
Permanent Source URI:
https://models.fieldml.org/workspace/831/rawfile/bc202e51bde6be8ddf88d35d908ef1465dcf067d/Kernik_matlab_parameter_fitting/f_gate_fitting.m

% based on Na_h gate by Pan.

clear;
% clc;
% close all;

%% Options
run_optimisation = false;

%% Set directories
current_dir = pwd;
main_dir = current_dir; %
data_dir = [main_dir '\data' filesep];
output_dir = [main_dir '\output' filesep];
storage_dir = [main_dir '\storage' filesep];

%% Steady-state gating parameters and time constants
V = transpose(-120:1:60);

g_inf = 1.0./(1.0+exp((V+61.7)/5.6));
tau_g = 1.0./(0.0153*exp(-(V+61.7)/83.3)+0.015*exp((V+61.7)/15.38));

alpha_g = g_inf./tau_g;
beta_g = (1./tau_g) - alpha_g;

%% Fit bond graph parameters to model
% params: [kf, zf, kr, zr];
error_func_alpha = @(params) square_error(alpha_g - calc_alpha(params,V/1000));
error_func_beta = @(params) square_error(beta_g - calc_beta(params,V/1000));
error_func_gss = @(params) square_error(g_inf - p2gss(params,V));
error_func_tau = @(params) square_error(tau_g- p2tau(params,V));

% error_func = @(params) error_func_alpha(params) + error_func_beta(params) + error_func_gss(params) + error_func_tau(params);
% error_func = @(params) error_func_gss(params) + error_func_tau(params);
error_func = @(params) error_func_alpha(params) + error_func_beta(params);


A = [];
b = [];
Aeq = [];
beq = [];
lb = [0; -10; 0; -10];
ub = [Inf; 10; Inf; 10];

options_unc = optimoptions('fminunc','MaxFunEvals',10000);
options_ps = optimoptions('particleswarm','UseParallel',false,'HybridFcn',@fmincon,...
    'SwarmSize',750,'FunctionTolerance',1e-14);

if run_optimisation
    [params_vec,fval,exitflag,output] = particleswarm(error_func,4,lb,ub,options_ps);
    save([storage_dir 'TCC_g_parameters.mat'],'params_vec');
else
    load([storage_dir 'TCC_g_parameters.mat']);
end
% [params_vec,fval,exitflag,output,grad,hessian] = fminunc(error_func,params_vec,options_unc);

g_ss_fit = p2gss(params_vec,V);
h1 = figure;
plot(V,g_inf,'k.','LineWidth',4);
hold on;
plot(V,g_ss_fit,'k','LineWidth',4);
legend('original','Fitted');
xlabel('Voltage (mV)');
ylabel('h_{ss}');
set(gca,'FontSize',28);
xlim([-120 60]);
set(gca,'XTick',-120:30:60);
set(gca,'YTick',0:0.2:1);
xticklabels({-120,'',-60,'',0,'',60});
yticklabels({0,'','','','',1});
set(gca,'LineWidth',3);
grid on;

tau_fit = p2tau(params_vec,V);
h2 = figure;
plot(V,tau_g,'k.','LineWidth',4);
hold on;
plot(V,tau_fit,'k','LineWidth',4);
legend('original','Fitted');
xlabel('Voltage (mV)');
ylabel('\tau_g (ms)');
set(gca,'FontSize',28);
xlim([-120 60]);
set(gca,'XTick',-120:30:60);
% set(gca,'YTick',0:0.2:1);
xticklabels({-120,'',-60,'',0,'',60});
% yticklabels({0,'','','','',1});
set(gca,'LineWidth',3);
set(gca,'xgrid','on');


alpha_fit = calc_alpha(params_vec,V/1000);
beta_fit = calc_beta(params_vec,V/1000);
figure,
subplot(1,2,1)
plot(V,alpha_g,'x',V,alpha_fit);
legend('original','fit');
subplot(1,2,2)
plot(V,beta_g,'x',V,beta_fit);
legend('original','fit');