Search found 1686 matches

by hines
Thu May 18, 2006 1:24 pm
Forum: OS X
Topic: Installing 5.8/InterViews 17 from source code
Replies: 1
Views: 5159

Here is how I build on a OS X G5 NSRC=$HOME/neuron/nrn IVSRC=$HOME/neuron/ivcarbon NOBJ=$HOME/neuron/nrncarbon IDIR=/Applications/NEURON-5.8 put the nrn*tar.gz sources in NSRC and the iv*tar.gz sources in IVSRC cd $IVSRC ./configure --prefix=$IDIR/iv --enable-carbon make make install cd $NOBJ $NSRC/...
by hines
Thu May 18, 2006 1:10 pm
Forum: MSWin
Topic: Increase size character of Shell
Replies: 7
Views: 11178

For mswin, use a "-fn 20" argument pair when launching the rxvt terminal.
For nrngui you do this in the
c:/nrn58/lib/neuron.sh script.
by hines
Wed May 17, 2006 7:53 am
Forum: Adding new mechanisms and functions to NEURON
Topic: Non-ohmic Ca current and Ca accumulation
Replies: 5
Views: 6618

With regard to question 3, I would encourage you to compare the results and performance of the fixed step method with decreasing dt and secondorder=0 and secondorder=2 and the results of the variable step method with decreasing atol. I am guessing you will be very pleased with the variable step meth...
by hines
Wed May 10, 2006 9:44 am
Forum: NEURON + Python
Topic: possible section syntax
Replies: 10
Views: 12110

The intention is that Python be a native alternative to HOC. I've gotten quite far now on the section and segment interface and most of the idioms I've learned just get repeated now over and over. As soon as the mod file interface has become automatic I'll start asking for help on the tedious proces...
by hines
Tue May 02, 2006 9:02 am
Forum: The GUI
Topic: dropdown menu
Replies: 4
Views: 6427

See http://www.neuron.yale.edu/neuron/stati ... html#xmenu
You are interested in the xpanel("menubar") ... xpanel()
fragment
by hines
Sat Apr 29, 2006 9:03 am
Forum: Adding new mechanisms and functions to NEURON
Topic: C++ code via NMODL with C wrappers?
Replies: 4
Views: 5705

It might not be too difficult to modify the nrnivmodl and nrniv_makefile scripts in nrn/bin (actually the *.in precursor files if you have autoconf/automake/libtool installed) to look at the suffixes of the files you pass to nrnivmodl (default is all the mod files in the working directory). Then you...
by hines
Sun Apr 23, 2006 10:53 pm
Forum: NEURON + Python
Topic: possible section syntax
Replies: 10
Views: 12110

possible section syntax

I'd like to hear people's comments about the following. The hierarchy is section, segment, mechanism, rangevariable. [hines@NeuronDev nrnpy]$ cat demo.py from section import * soma = Section() print soma soma.insert(hh) for seg in soma : print seg for m in seg : print m for rv in m : print rv soma.n...
by hines
Fri Apr 07, 2006 6:49 am
Forum: NEURON + Python
Topic: request for comments
Replies: 13
Views: 19905

That syntax is attractive in its clarity. But I don't immediately see how s.hh.gnabar = .12 when s.nseg = 50 ends up setting the gnabar value in all 50 segments. I think andrew's idea (pace someone who actually knows python) is that would be done with s[].hh.gnabar = .12 Can a python person tell me ...
by hines
Wed Apr 05, 2006 7:11 pm
Forum: Other questions
Topic: NEURON exited abnormally
Replies: 4
Views: 4829

in your working directory containing the nrnmech.dll file remove all the *.c, *.o, and nrnmech.dll files and rerun mknrndll. If that does not work, did the sim work on your old machine? What is the NEURON version? Can you launch the NEURONDEMO? Did you happen to separately install a full version of ...
by hines
Wed Apr 05, 2006 7:08 am
Forum: Adding new mechanisms and functions to NEURON
Topic: Nsingle
Replies: 14
Views: 12682

...I wonder what is the impact of this on the calculation speed... The question may be moot since nmodl is not capable (without VERBATIM block c programming) of defining single channel models. However, from the perspective of deterministic channels, KSChan should be slightly (though probably not me...
by hines
Fri Mar 31, 2006 3:26 pm
Forum: Adding new mechanisms and functions to NEURON
Topic: Nsingle
Replies: 14
Views: 12682

That's right. Since you have a ligand sensitive transition, the internal data structure is updated every time step. Since you are still having problems, you should send me (michael.hines@yale.edu) the hoc/ses/mod files in a zip file that are needed to run the model.
by hines
Fri Mar 31, 2006 1:21 pm
Forum: Adding new mechanisms and functions to NEURON
Topic: Nsingle
Replies: 14
Views: 12682

You can change the vector values at any time, even every time step, during a run. However, in the single channel (Nsingle > 0) case there is an internal data structure based on the rate values that you will need to tickle to get it updated if any of the rate vector values change. These normally get ...
by hines
Fri Mar 31, 2006 7:56 am
Forum: NEURON + Python
Topic: request for comments
Replies: 13
Views: 19905

Hi Andrew, That is strange. I did not get notified by email that a post was added to that topic and the forum claims I am watching it. I wonder if my spam filter is inadvertently throwing away those notifications. Anyway, I am delighted for you to be involved. I am still working on the parallel comp...
by hines
Tue Mar 21, 2006 11:19 am
Forum: Other questions
Topic: Question on Linear Mechanism
Replies: 2
Views: 3848

It is the area of the compartment (segment) to which the node of the electrical device (resistor or capacitor) connects. Only equations (matrix rows) that add to the current balance equations need units consistent with the current balance equations. Matrix rows not associated with segments can have ...
by hines
Sat Mar 18, 2006 7:09 am
Forum: Other questions
Topic: Segmentation Fault
Replies: 7
Views: 7960

Before typing "nrngui" check your DISPLAY environment variable with echo $DISPLAY and see what it says. If there is no DISPLAY then you need to set it. If there is, then does it still work with the --nogui option? If you have been using the CVS archive for some time then the most recent ch...