Search found 9 matches

by Tsirogiannis
Sun Dec 04, 2011 10:27 am
Forum: Modeling networks
Topic: NetCon & total neuronal current
Replies: 5
Views: 10143

Re: NetCon & total neuronal current

I 'm not sure whether I have udnerstood exactly how I should treat such a case (single compartmental model) in order to obtain the total current flowing through the membrane of a cell. From your answers I deduce that apart from the currents of the various channels and the synaptic connections, we sh...
by Tsirogiannis
Sat Nov 19, 2011 7:28 am
Forum: Modeling networks
Topic: NetCon & total neuronal current
Replies: 5
Views: 10143

Re: NetCon & total neuronal current

Thank you for your response. I still have some questions on that: (1) Are there any other ions that should be considered, if all channels incorporated in the neuron model use only Na, K & Ca? (our caase) (3) Same as (1), NONSPECIFIC_CURRENT(s) are missed only if they have been defined in the mod...
by Tsirogiannis
Fri Nov 11, 2011 8:58 am
Forum: Modeling networks
Topic: NetCon & total neuronal current
Replies: 5
Views: 10143

NetCon & total neuronal current

In a detailed model, we need to calculate the total current flowing through the membrane of a neuron, in order to calculate the local field potential around it. To this end, on the one hand we have created the following NMODL mechanism: TITLE cumI.mod UNITS { (mV) = (millivolt) (mA) = (milliamp) } N...
by Tsirogiannis
Thu Jan 04, 2007 6:43 am
Forum: Other questions
Topic: spctrm
Replies: 1
Views: 3147

spctrm

Hello. Recently, I have found the spctrm function quite useful in analyzing the spectral density of a model-generated signal in hoc. But, I am afraid that I can only take assumptions about its parameters and the exact nature of its output, since I can't find any detailed information whatsoever about...
by Tsirogiannis
Fri Oct 06, 2006 10:46 am
Forum: Other questions
Topic: segmentation violation
Replies: 1
Views: 4127

segmentation violation

A segmentation violation error occured in a couple of circumstances. The first time was in calling a function that was supposed to return an integer. I solved that problem by removing the localobj variables that I was using and setting them global, outside the function body. However, afterwards, the...
by Tsirogiannis
Tue Oct 03, 2006 9:26 am
Forum: Getting started
Topic: create object in function
Replies: 1
Views: 3044

create object in function

A rather simple question, but I can't find anything to make amends of the error in: newSynapse=new Exp2Syn(0) in the following function definition. func makeSynapse() { local newSynapse newSynapse=new Exp2Syn(0) newSynapse.tau1=0.05 newSynapse.tau2=0.1 newSynapse.e=-30 return newSynapse } How should...
by Tsirogiannis
Thu Sep 07, 2006 7:18 am
Forum: Other questions
Topic: string 2 integer
Replies: 4
Views: 6494

Thanks a lot for the tip Raj.
And I am sorry for the wrong forum.
Cheers
by Tsirogiannis
Wed Sep 06, 2006 11:11 am
Forum: Other questions
Topic: string 2 integer
Replies: 4
Views: 6494

string 2 integer

Hello. I'm trying to convert a string into an integer in hoc code. I haven't found anything particularly useful in the built-in functions (is there really anything?) and I have been trying to use external functions, such as the atoi c function or the java.lang.Integer java class. But I think that I'...
by Tsirogiannis
Mon May 29, 2006 12:43 pm
Forum: Adding new mechanisms and functions to NEURON
Topic: Simple calcium kinetics
Replies: 1
Views: 3647

Simple calcium kinetics

Hi. I m trying to include in a model a simple calcium kinetic scheme in order to calculate the intracellular calcium concentration in each time step. The code of the mod file is like this: TITLE CaDiff.mod COMMENT Calcium diffusion scheme for Gillies 2005 multi-compartmental STN model ENDCOMMENT UNI...