Page 1 of 1

NetCon & ExpSyn

Posted: Sat Jan 19, 2008 5:31 am
by penguin00
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)
}

Re: NetCon & ExpSyn

Posted: Sun Jan 20, 2008 11:19 am
by ted
penguin00 wrote: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?
Why would you want to keep g<=1? g is the conductance of a synapse, not the "activation
variable" of an artificial spiking cell. Have you read chapter 10 of The NEURON Book?