I am analysing the data of time-dependent concentration of TNF-alpha concentration after LPS challenge in presence and absence o compound intervention. I have attempted to model through Transit compartment model equations as reported by Johan Grabrielsson et al from the article entitled “Modelling and design of challenge tests.”
But it showed following errors. Kindly suggest me if there were any coding errors
‘“.\NLME7.exe”’ is not recognised as an internal or external command,
operable program or batch file.
.\Work\Model.c: In function ‘EvalAssign’:
.\Work\Model.c:1027:13: error: lvalue required as left operand of assignment
S(LPS, Ci) = (1.0 + ((((A * k) * t) * _exp_cached(( -(k) * t), &_tempArg[0], &_tempResult[0])) * INHIB));
You should review the rational of your model and send us the reference. This model is strange to me. The trend is to decrease the response E4 with time with drug while the data show the reverse.
cfMicro(A1, Cl / V, Cl2 / V, Cl2 / V2)
transit(R, mtt, ntr, in = R0*SLPSCi)
sequence{R = R0}
SLPSCi = (1 + A * k * t * exp(-k*t))*ICi
ICi = 1 - C/(IC50 + C)
mtt = (ntr + 1)/kout
ntr = mtt * kout - 1
dosepoint(A1, idosevar = A1Dose)
C = A1 / V
error(CEps = 0.1)
observe(CObs = C * (1 + CEps))
error(REps = 1)
observe(RObs = R + REps)
Looks strange to me that the authors didn’t mention the number of compartments for the fitted model. In such case it is impossible to reproduce the model. Just some suggestions from the plot: mtt should be about 1.
Not sure that initialization of transit compartment with sequence{} will work properly.