Luc Grosheintz
Luc Grosheintz
This seems to have been implemented and there's newer tickets for other types of name clashes.
Nice, what's the purpose of testing both `fib` and `factorial`? How do they differ and enhance eachother?
> Is there a reference somewhere how users can ... I don't know but I'm not writing one. Users should not use and ideally not know about VERBATIM. It constantly...
> it doesn't work Fixed & testing that now. It's related to `SUFFIX nothing`.
Regarding how well it's tested, not very well. It's enough to compile everything we need for the `nrn` repository. Without it's slowly a bit tedious to make progress towards getting...
Thank you, I can reproduce the issue and I'll debugging now. STEADY_STATE is a very good next keyword to work on.
I'm using the following simplified MOD file: ``` NEURON { SUFFIX minipump } PARAMETER { volA = 1e9 volB = 1e9 volC = 13.0 kf = 3.0 kb = 4.0...
However, it's not enough to make `capmp.mod` work as expected.
I think it comes down to these three things: * scaling of the equations, * the the tolerances, * one case of cancellation magic. Scaling ODE terms: ``` volA *...
Using numpy notation: ``` l1_err = np.sum(np.abs(x)) l2_err = np.sum(x**2)**0.5 ``` (it's unlikely a really important part of the discussion.) Might as well make it a complete answer: Mathematicians like...