Entering Formulas
The formula builder has some specific keyboard assignments which are required for it's use, most noticeably the use of the $ and the [ESC] keys.
To enter a variable you need to first type a "$" to enter into "variable mode". When you type a "$", the area around the cursor changes to blue and you can then type the name of your variable. Use [ESC] to exit ‘variable mode’ and continue writing the formula.
Examples:
- For variable, use the following key sequence:
$input.<NameOfVariable>[ESC] - For Square Root:
\sqrt$input.gas[ESC]
- For Log(x):
log($input.x[ESC])
- For Log(x,y):
log($input.x[ESC],$input.y[ESC])
- For Log10(x):
log10($input.x[ESC])
- For Power of 2:
$input.gas[ESC]^2[ESC]
|