Skip to content

Commit d863de4

Browse files
author
cervenyj
committed
UPDATE minor
1 parent d52c1db commit d863de4

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

PP-GrowthOptimizer.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,20 @@ var UserDefinedProtocol = {
4343
* controlled accessory protocols (i.e. Lights, Thermoregulation, GMS, Stirrer).
4444
* The controlled pump has to be set to ID 5 to allow compatibility with other scripts
4545
*
46+
* -turbidostat settings
4647
* @param {number} turbidostatODMin [AU] - Minimum OD/lower bound for OD regulator/turbidostat
4748
* @param {number} turbidostatODMax [AU] - Maximum OD/upper bound for OD regulator/turbidostat
4849
* @param {number} turbidostatODType [680/720/735] - OD sensor used for turbidostat control
4950
* @param {number} ODReadoutInterval [s] - Defines how often is the OD measured
51+
* -optimizer parameters
5052
* @param {string} controlledParameter ['none'/'temperature'/'lights'/'GMS'/'stirrer'/'ODRange'] - Supported parameters to control by the script
5153
* @param {array} controlledParameterSteps - List of values for the controlled parameter. Examples:
5254
* temperature = [ 28, 32, 34, 30, 26, 22 ]; // [oC]
5355
* lights = [[ 55, 25 ],[ 110, 25 ],[ 220, 25 ],[ 440, 25 ],[ 880,25 ]]; // [uE]
5456
* GMS = [[ 195.88, 5.873 ],[ 195.88, 12.478 ],[ 185.30, 18.257 ],[ 185.30,25.274 ]]; // [ml/min]
5557
* stirrer = [ 30, 50, 65, 80, 95 ]; // [%] !!! works only with SW version 0.7.14 and later
5658
* ODRange = [[0.4, 0.425], [0.2, 0.215], [0.1, 0.113]]; // [AU]
59+
* -optimizer stability check
5760
* @param {number} growthStatistics [true/false] - Enable or disable calculation of growth statistics. Note that the doubling time (Dt) calculation also includes information about the fit coefficient of determination (CoD in %), known as R-squared
5861
* @param {number} regressionODType [680/720/735] - OD sensor used for doubling time determination
5962
* @param {number} regressionCoDMin [%] - Minimum accpeted coefficient of determination for staility check evaluation (values below are ignored)
@@ -63,13 +66,15 @@ var UserDefinedProtocol = {
6366
* @param {number} analyzedSteps [-] - Number of steps to be analyzed for stability check
6467
* @param {number} growthTrendMax [%] - Maximum growth speed trend in time
6568
* @param {number} intervalOfConfidenceMax [%] - Maximum allowed percents of 95% Confidence Interval
69+
* -peristaltic pump settings
6670
* @param {number} peristalticPumpID [3-7] - Defines peristaltic pump ID set to the pump that is used for fresh media supply (quasi-continuous mode)
6771
* @param {number} peristalticPumpSpeed [%] - Nominal pump speed used for dilution of the suspension
6872
* @param {number} peristalticPumpSlowDownRange [%] - Lower range where the pump slows down
6973
* @param {number} peristalticPumpSlowDownFactor [%] - Slow down factor for the pump
74+
* -advanced options
7075
* @param {number} growthRateEvalDelay [s] - Time after dilution where data for doubling time determination are ignored. By default growthRateEvalFrac, i.e. only limited fraction of the data points is used for calculations.
7176
* This is to prevent influence of post dilution effect on doubling time evaluation. If 0 or false, growthRateEvalDelay is used instead. Note that to completely disable data limitation you need to set both growthRateEvalFrac and growthRateEvalDelay to 0.
72-
* @param {string} groupGMS - Identifies the group that contains Gas Mixing System.
77+
* @param {string} groupGMS - Identifies the group that contains Gas Mixing System. System value - do not change unless sure what you are doing!
7378
*
7479
* @return Flow of external/additional pump
7580
*

0 commit comments

Comments
 (0)