RE: error message: Number of evaluations of differential equations
From: Bachman, William (MYD) bachmanw@iconus.com
Subject: RE:[NMusers] error message: Number of evaluations of differential equations
Date: Mon, April 19, 2004 3:19 pm
This same problem was discussed one week ago by Nick Holford and
Matt Hutmacher (99apr082004.html),
the suggested fix was(98apr192004.html):
> > Try the following code changes to NMTRAN subroutine GENCOM.for after
> > copying the original file to GENCOM.save.
> >
> > After the line
> > CHARACTER*12 WORK
> > add the line
> > CHARACTER*13 WORKX
> >
> > Edit the line
> > WRITE (WORK,'(A,I4.4,A)') 'BBBBBB(',I,')'
> > to be
> > WRITE (WORKX,'(A,I5.5,A)') 'BBBBBB(',I,')'
> >
> > In the IF THEN ELSE block that follows
> > edit the lines
> > LINE(LL+1:)=WORK
> > LL=LL+12
> > ELSE
> > LINE(LL+1:)=','//WORK
> > LL=LL+13
> > to be
> > LINE(LL+1:)=WORKX
> > LL=LL+13
> > ELSE
> > LINE(LL+1:)=','//WORKX
> > LL=LL+14
then delete the object files nonmem.lib in c:\nmv\nm and re-run SETUP.bat from the c:\nmv directory.
_______________________________________________________