CoreNEURON
coreneuron::detail Namespace Reference

Classes

class  Instrumentor
 Instrumentation infrastructure for benchmarking and profiling. More...
 
struct  NullInstrumentor
 

Typedefs

using InstrumentorImpl = detail::Instrumentor< detail::NullInstrumentor >
 

Functions

template<typename F >
void nrn_buildjacobian_thread (NewtonSpace *ns, int n, int *index, F const &func, double *value, double **jacobian, _threadargsproto_)
 Calculate the Jacobian matrix using finite central differences. More...
 

Typedef Documentation

◆ InstrumentorImpl

Function Documentation

◆ nrn_buildjacobian_thread()

template<typename F >
void coreneuron::detail::nrn_buildjacobian_thread ( NewtonSpace ns,
int  n,
int *  index,
F const &  func,
double *  value,
double **  jacobian,
_threadargsproto_   
)

Calculate the Jacobian matrix using finite central differences.

Creates the Jacobian matrix by computing partial derivatives by finite central differences. If the column variable is nonzero, an increment of 2% of the variable is used. STEP is the minimum increment allowed; it is currently set to 1.0E-6.

Parameters
nnumber of variables
xpointer to array of addresses of the solution vector elements
parray of parameter values
funccallable that computes the deviation from zero of each equation in the model
valuepointer to array of addresses of function values
[out]jacobiancomputed jacobian matrix

Definition at line 45 of file newton_thread.hpp.