diff --git a/doc/user/optimise.htm b/doc/user/optimise.htm index c8a2e881..4e97d439 100644 --- a/doc/user/optimise.htm +++ b/doc/user/optimise.htm @@ -29,6 +29,18 @@ maximum number of cycles was reached. This routine requires that the instrument is currently placed somewhere on the peak and not miles away.
+The peak optimiser supports another optimisation algorithm which is faster but +may not be as accurate. This is hill climbing: +
+while errors gt precision and cycles lt maxcycles + for all variables + find the direction into which the intensity rises + step into this direction until the intensity drops + end for +end while ++ +
The Peak Optimiser is implemented as an object with the name opti. It understand the following commands:
+It is the users reponsability to provide meaningful step widths. Usually this is +dependent on the instrument resolution and thus fairly constant. Also these +optimisation algorithms will fail if the instrument is not positioned at the +flank of a peak. Probaly the best will be to do several cycles of hill +climbing first, followed by one cycle of scan optimisation for extra accuracy. +