Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cal4.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ NEURON {
USEION ca READ cao, ica WRITE cai, ica
USEION ip3 READ ip3i VALENCE 1
RANGE ica_pmp,ca1, ca2,alpha,beta,ca3,gamma,ip3ca, DCa,jip3
GLOBAL vrat, TBufs, KDs, TBufs, TBufm, KDm, factor
GLOBAL vrat, TBufs, KDs, TBufm, KDm, factor
}

DEFINE Nannuli 4
Expand Down
10 changes: 4 additions & 6 deletions minmax.mod
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,14 @@ INITIAL {

BREAKPOINT {

VERBATIM
if (v > vmax) {
vmax = v;
tmax = t;
vmax = v
tmax = t
}

if (v < vmin) {
vmin = v;
tmin = t;
vmin = v
tmin = t
}

ENDVERBATIM
}