NetCon & ExpSyn
Posted: Sat Jan 19, 2008 5:31 am
Can anyone help me find the location of the NetCon code? I'm trying to follow how the NetCon weight parameter is implemented in the ExpSyn equations. I'm assuming the weight added to g is from the NetCon, but is g at kept <=1 by another piece of code? Thanks in advance.
Part of the ExpSyn.mod file:
BREAKPOINT {
SOLVE state METHOD cnexp
i = g*(v - e)
}
DERIVATIVE state {
g' = -g/tau
}
NET_RECEIVE(weight (uS)) {
state_discontinuity(g, g + weight)
}
Part of the ExpSyn.mod file:
BREAKPOINT {
SOLVE state METHOD cnexp
i = g*(v - e)
}
DERIVATIVE state {
g' = -g/tau
}
NET_RECEIVE(weight (uS)) {
state_discontinuity(g, g + weight)
}