From 176e7a46a791dd1e4adc49eeec192d7c387dbfa0 Mon Sep 17 00:00:00 2001 From: Marie Houillon <marie.houillon@kit.edu> Date: Fri, 10 Jun 2022 07:00:05 +0000 Subject: [PATCH] Fix naming convention in 21_reentry_induction --- .../02_EP_tissue/21_reentry_induction/run.py | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tutorials/02_EP_tissue/21_reentry_induction/run.py b/tutorials/02_EP_tissue/21_reentry_induction/run.py index 3303ac8f..cd8981fc 100755 --- a/tutorials/02_EP_tissue/21_reentry_induction/run.py +++ b/tutorials/02_EP_tissue/21_reentry_induction/run.py @@ -696,18 +696,18 @@ def single_cell_initialization(args, job, steady_state_dir): duration = 20*args.prepace_bcl - g_CaL = [0.45, 0.225] - g_K1 = [2, 1] - g_Na = [1, 0.6] - blf_i_Kur = [0.5, 0.5] - g_to = [0.35, 0.35] - g_Ks = [2, 2] - maxI_pCa = [1.5, 1.5] - maxI_NaCa = [1.6, 1.6] - g_Kr = [1.6, 1] + GCaL = [0.45, 0.225] + GK1 = [2, 1] + GNa = [1, 0.6] + factorGKur = [0.5, 0.5] + Gto = [0.35, 0.35] + GKs = [2, 2] + maxIpCa = [1.5, 1.5] + maxINaCa = [1.6, 1.6] + GKr = [1.6, 1] tissue_init = [] - for k in range(len(g_CaL)): + for k in range(len(GCaL)): init_file = steady_state_dir+'/init_values_stab_{}_bcl_{}.sv'.format(k,args.prepace_bcl) cmd = [settings.execs.BENCH, '--imp', args.model, -- GitLab