Location: BG_K1 @ 6fc31f67b692 / matlab_parameter_fitting / K1_gating.m

Author:
Shelley Fong <sfon036@UoA.auckland.ac.nz>
Date:
2022-07-06 16:27:35+12:00
Desc:
Updating to LRd 34.4 pL cell parameters
Permanent Source URI:
https://models.cellml.org/workspace/824/rawfile/6fc31f67b69226933e396f8e794cb7c1626d7ce5/matlab_parameter_fitting/K1_gating.m

clear;
clc;
close all;

%% Options
run_optimisation = false;

%% Set directories
current_dir = cd;
Idx_backslash = find(current_dir == filesep);
main_dir = current_dir(1:Idx_backslash(end));
data_dir = [main_dir 'data' filesep];
code_dir = [main_dir 'code' filesep];
output_dir = [main_dir 'output' filesep];
storage_dir = [main_dir 'storage' filesep];

%% Define constants
R = 8.314;
T = 310;
F = 96485;

%% Plot steady-state gating parameters and time constants
cKo_st = 5.4;
cKo = 5.4;
cKi_st = 145;
cKi = 145;

V = transpose(-120:1:60);
E_K1 = 1000*R*T/F*log(cKo/cKi); % Unit mV

alpha_K1 = 1.02./(1+exp(0.2385 * (V - E_K1 - 59.215)));
beta_K1 = (0.49124 * exp(0.08032*(V-E_K1+5.476)) + exp(0.06175*(V-E_K1-594.31)))./(1+exp(-0.5143*(V-E_K1+4.753)));


tau_h = 1./(alpha_K1 + beta_K1);
g_ss_h = alpha_K1./(alpha_K1 + beta_K1);


%% Fit bond graph parameters to model
% params: [kf, zf, kr, zr];
error_func_alpha = @(params) square_error(alpha_K1 - calc_alpha(params,V/1000));
error_func_beta = @(params) square_error(beta_K1 - calc_beta(params,V/1000));
error_func_gss = @(params) square_error(g_ss_h - p2gss(params,V));
error_func_tau = @(params) square_error(tau_h- 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) 1e3*error_func_gss(params) + error_func_tau(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',true,'HybridFcn',@fmincon,'SwarmSize',200);

if run_optimisation
    [params_vec,fval,exitflag,output] = particleswarm(error_func,4,lb,ub,options_ps);
    save([storage_dir 'K1_parameters.mat'],'params_vec');
else
    load([storage_dir 'K1_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_ss_h,'k--','LineWidth',4);
hold on;
plot(V,g_ss_fit,'k','LineWidth',4);
% legend('Luo and Rudy','Fitted');
xlabel('Voltage (mV)');
ylabel('K1_{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_h,'k--','LineWidth',4);
hold on;
plot(V,tau_fit,'k','LineWidth',4);
% legend('Luo and Rudy','Fitted');
xlabel('Voltage (mV)');
ylabel('\tau_{K1} (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');

% plot alpha and beta
figure,
subplot(1,2,1)
plot(V, alpha_K1, V, calc_alpha(params_vec,V/1000));
title('alpha'); 
subplot(1,2,2)
plot(V, beta_K1, V, calc_beta(params_vec,V/1000));
title('beta'); 

print_figure(h1,output_dir,'g_ss_K1');
print_figure(h2,output_dir,'tau_K1');