/* File rxnparam.h, written by Steven Andrews, 2003. This code is in the public domain. It is not copyrighted and may not be copyrighted. This is a header file for rxnparam.c. See the comments in that code. */ #ifndef __rxnparam_h #define __rxnparam_h float numrxnrate(float step,float a,float b); float actrxnrate(float step,float a); float bindingradius(float rate,float dt,float difc,float b,int rel); float unbindingradius(float rate,float dt,float difc,float a); double rdfabsorb(double *r,double *rdf,int n); void rdfdiffuse(double *r,double *rdfa,double *rdfd,int n,double step); void rdfreverserxn(double *r,double *rdf,int n,double step,double b,double flux); double rdfsteadystate(double *r,double *rdfa,double *rdfd,int n,double step,double b,double eps); void rdfmaketable(); #endif