Just to inform anyone else who sees a similar issue; the solution in individual mode was to switch in the Run options tab; “Max ODE” from “Matrix Exponent” to “Stiff”. Then 200 points will run the same as 300 points even in Individual mode, and will show the minimum around 93.
The same is true if you use “auto-detect”.
We tried leaving it set to “Matrix Exponent” and adjusting the tolerances, but didn’t manage to fix this case. This is a differential equation model, so the simulation has to start at IVAR=0 and work forward, and I guess this method deviates a bit along the way. The plots make the change in the minimum look significant, but if you look at the scale of the y-axis, the whole curve is rather flat, so a slight deviation could move the minimum.
Simon
PS we will look to make some more explanation of this in the documentation going forward, in the mean time these comments from the developers should help;
If matrix exponent is actually used, it is usually the most accurate method by far.
However if you ask for matrix exponent, and it is not applicable, you get non-stiff (i.e. RungeKutta), which may have problems with a stiff system.
If matrix exponent is chosen, that does not mean matrix exponent will be used. It will only be used if possible.
It decides if it will be possible by seeing if every element of this matrix is constant between time points:
Aa A1 A2 ...
Aa' dAa'/dA dAa'/dA1 dAa'/dA2
A1' dA1'/dA dA1'/dA1 dA1'/dA2
A2' dA2'/dA dA2'/dA1 dA2'/dA2
...
In other words, the Jacobian of the differential equations.
It determines every one of those derivatives symbolically, and asks if they are constant between time points (like doses, observations, covariate changes).
If any one is not constant between time points, then it cannot use matrix exponent, so it defaults to another method instead, RK I think.
If this is a stiff system, the non-stiff solver (RK) will have difficulty. Either running the stiff solver or auto-detect should be accurate.
Edited by Simon Davis, 13 May 2015 - 12:25 PM.