import nsrunit; unit conversion on; unit s=1 second^1; unit uM=1E-3 meter^(-3)*mole^1; unit uM_per_s=1E-3 meter^(-3)*second^(-1)*mole^1; math main { //Warning: the following variables were set 'extern' or given // an initial value of '0' because the model would otherwise be // underdetermined: J_gain_Ca realDomain t s; t.min=0; extern t.max; extern t.delta; real Ca(t) uM; when(t=t.min) Ca=0.100; extern real J_gain_Ca uM_per_s; // Ca:t=J_gain_Ca; }