RE: line length limit of NMTRAN and initial value limit of NONMEM
From: "Bachman, William (MYD)" bachmanw@iconus.com
Subject: RE: [NMusers] line length limit of NMTRAN and initial value limit of NONMEM
Date: Wed, 4 Jan 2006 15:19:09 -0500
The 80 character-limit is a FORTRAN artefact and you're stuck with it.
Since you can't use exponential format for the parameter, I think you are stuck
with 8 characters also. The only way to get around this is to scale the parameter
as part of the control stream code:
$PK
TVCL=THETA(1)/(1000000*1000000)
CL=TVCL*EXP(ETA(1))
etc.
$THETA
(0, 5.) ;[CL]
etc.