Fabio,
the precision of representation of reals as floating point is far from
trivial. There are many problems with floating point numbers that,
unfortunately, are mostly only mentioned in Numerical Analysis classes
(sometimes not even that). See the link below for the main issues
https://www.codeproject.com/Articles/29637/Five-Tips-for-Floating-Point-Programming
note that this affects any program, written in any language, that uses
floating point numbers...
But even more basic is the fact that solving ODEs (and inverting
matrices, etc.) is carried out by asymptotic algorithms. These
approximate the solutions iteratively and the numbers that come out can
only be trusted to a certain limit (usually this is more restrictive
than the floating point issues mentioned above).
So when in COPASI you solve ODEs, the algorithm is governed by the
absolute tolerance and the relative tolerance values. If you have an
absolute tolerance of 1e-12 (the default in COPASI) you should expect
that values smaller than this are not reliable and are essentially the
same as zero (ie if you see a concentrations of 1e-23 or -1e-16, etc.
these are basically the same as 0).
In the steady state analysis the steady state (which should have fluxes
of 0), the tolerance also determines the error in the solution. So if
your tolerance is 1e-9 you should not expect much rates below this value
to be meaningful.
This all means that at some point you cannot rely on all of the digits
of solutions. Personally I don't trust much more than 5 or 6 significant
digits.
> --
> You received this message because you are subscribed to the Google
> Groups "COPASI User Forum" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to
copasi-user-fo...@googlegroups.com
> <mailto:
copasi-user-fo...@googlegroups.com>.
> <mailto:
copasi-u...@googlegroups.com>.
> To view this discussion on the web visit
>
https://groups.google.com/d/msgid/copasi-user-forum/1b130697-039e-496e-beb6-d01362f0a2d2%40googlegroups.com
> <
https://groups.google.com/d/msgid/copasi-user-forum/1b130697-039e-496e-beb6-d01362f0a2d2%40googlegroups.com?utm_medium=email&utm_source=footer>.