From: W E. W. <wew...@gm...> - 2006-08-01 15:35:12
|
Hi, An old questions revisited? in definition of structure odeModel, /** All names, i.e. ODE variables, assigned parameters, and constant parameters */ char **names; int neq; /**< number of ODEs */ int nalg; /**< number of algebraic rules */ int nass; /**< number of assigned variables (nass) */ int nconst; /**< number of constant parameters */ Question? What is the length of the names array? In definition of structure cvodeResults /** number of variables for which results exist */ int nvalues; /** the following arrays represent the time series of all variables and parameters of the model */ double **value; Question: What are the indices of the species please? In defintion of structure cvodeData /** total number of values (variables x(t) + parameters p) */ int nvalues; /** value array is used to write and read the current values of all variables x(t) and parameters p of the system (of which there are `nvalues') */ double *value; How to determine the indices of the x(t), etc?? For me this issue is confusing since I have started to play arround with soslib. Eryk |