I tried to make network model between CA1 neuron model and my neuron model.
1. Copy the source that Migliore CA1 pyramidal neuron model in ModelDB.
2. Modify the source(Migliore CA1 Pyramidal NEURON source, remove Clamp)
3. Make Template my neuron model
Code: Select all
begintemplate myec
public exp2, soma
create soma
proc init() {
topol()
synset()
}
proc topol() {
insert hh
}
proc synset () {
soma exp2 = new Exp2Syn(0.5)
exp2.tau1 = 3.8
exp2.tau2 = 11.4
}
endtemplate myneuronmodel
Code: Select all
objectvar mn
mn = new myneuronmodel()
Code: Select all
objref netcon
soma netcon = new NetCon(&v(0.5), mn.exp2,0,0,0.0002)
I success to confirm connection between two neurons, but my neuron model voltage trace has a question.
CA1 model v_init is -65mV, but my neuron model v_init is -60mV. (my neuron model e_pas is -65mV)
Therefore my neuron model membrane voltage start at -65mV.
Can I have two v_init in one hoc file?