src
|
bail.c,
derivs.c,
enter.c,
extract.c,
f.c,
first.c,
initial.c,
inlist.c,
makefile,
new_vert.c,
order.c,
parse.c,
rates.c,
reader.c,
readme,
regress.c,
report.c,
reprint.c,
rxn.c,
rxn.h,
select.c,
setfiles.c,
sfit.c,
simplex.h,
splist.c,
sum_resi.c,
wr_results.c,
wr_species.c,
|
|
|
/* include for rxn.c */
#include
#define SIZE 100 /* max line length for a reaction record */
#define SPESIZE 4000 /* max length of species list */
#define MSPR 10 /* max species per reaction */
#define MNR 100 /* max no. reactions */
#define MNS 100 /* max no. species */
typedef struct {
double k; /* rate constant */
int s[MSPR], n; /* list of participating species and count */
double rate; /* computed reaction rate */
} RXN;
RXN R[MNR]; /* reactions */
double *Y, *DY; /* concentrations */
char *SPECIES; /* list of species */
int RP_FLAG; /* reactant vs product flag */
int NR; /* no. reactions read in */
int NS; /* no. species used */
extern void bail();
FILE *params, *mech, *Ywrite, *Swrite;
char *parameters, *mechanism, *results, *select, *Species, *fitdata;
char *altlist;
|