Search found 6 matches

by agidon20
Mon Jul 13, 2009 12:00 pm
Forum: Other questions
Topic: random point process events
Replies: 4
Views: 3529

Re: random point process events

If a system is driven by a random input, it does not necessarily follow that the system will generate a random output. exactly! so in my case the "system" is just multiple point_processes: NET_RECEIVE... ,.. net_send(exprand(rate),flag) ... on a section (nothing else, running the simulati...
by agidon20
Sun Jul 12, 2009 4:01 pm
Forum: Other questions
Topic: random point process events
Replies: 4
Views: 3529

Re: random point process events

The algorithms does not concern me as the implementation e.g. mod, point_process, events, discrete time steps and so forth. But if I got it correctly, the simulation would not produce correlations when the random number generator doesn't.
by agidon20
Sun Jul 12, 2009 8:10 am
Forum: Other questions
Topic: random point process events
Replies: 4
Views: 3529

random point process events

Dear friends, I am using a self generated random event for N point processes on a single cpu (no threading) that looks something like: NET_RECEIVE... ,.. net_send(exprand(rate),flag) ... Is it possible that depending on simulation parameters (such as dt or nseg) these point process will be (even wea...
by agidon20
Sun May 24, 2009 6:20 am
Forum: Other questions
Topic: vector continuous play - what to expect
Replies: 1
Views: 1639

vector continuous play - what to expect

Hi All, When running the following code: load_file("nrngui.hoc") a = 0 objref vplay,tplay vplay = new Vector() tplay = new Vector() vplay.append(0,0,1,1,0) tplay.append(0,100,100,200,200) vplay.play(&a,tplay,1) tstop = 300 run() What should be the value of variable "a" at the...
by agidon20
Tue Jun 19, 2007 2:38 pm
Forum: Adding new mechanisms and functions to NEURON
Topic: Naundorf kinetic scheme
Replies: 3
Views: 4136

Re: Naundorf kinetic scheme

Thanks Ted,

Sometimes I get (I run a fitting algorithm) :

Code: Select all

Convergence not achieved in maximum number of iterations
at line 71 in file Naundorf.mod:
When TMP is used, I don't get errors, but this made me doubt the results.
by agidon20
Mon Jun 18, 2007 8:38 am
Forum: Adding new mechanisms and functions to NEURON
Topic: Naundorf kinetic scheme
Replies: 3
Views: 4136

Naundorf kinetic scheme

Hi All, I'm trying to build the "Naundorf model" for a single compartment with the following kinetics equations BREAKPOINT { SOLVE scheme METHOD sparse gHHO = gHHObar*O ina = gHHO*(v-ena) } KINETIC scheme{ ~C <-> O (alpha_a(v+K*J*O),beta_a(v+K*J*O)) ~I <-> C (alpha_ci(v),beta_ci(v)) ~O <->...