Skip to content

Commit

Permalink
Update iaf_cond_alpha.cpp
Browse files Browse the repository at this point in the history
Fixed dg_inh/dt and ddg_inh/dt
  • Loading branch information
anthropikos authored Sep 12, 2023
1 parent 181f554 commit d779402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/iaf_cond_alpha.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ nest::iaf_cond_alpha_dynamics( double, const double y[], double f[], void* pnode
f[ 1 ] = -y[ S::DG_EXC ] / node.P_.tau_synE;
f[ 2 ] = y[ S::DG_EXC ] - ( y[ S::G_EXC ] / node.P_.tau_synE );

// d dg_exc/dt, dg_exc/dt
// d dg_inh/dt, dg_inh/dt
f[ 3 ] = -y[ S::DG_INH ] / node.P_.tau_synI;
f[ 4 ] = y[ S::DG_INH ] - ( y[ S::G_INH ] / node.P_.tau_synI );

Expand Down

0 comments on commit d779402

Please sign in to comment.