MANUAL > FUNCTIONS
FUNCTIONS
The following functions are available to use in AquaMOOSE. Your equations must use "t" as the variable.
| Function |
Symbol |
Example |
| sine |
sin( ) |
x(t) = sin(t) |
| cosine |
cos( ) |
y(t) = cos(3) |
| natural log |
ln( ) |
z(t) = ln(t) |
| power |
^ |
x(t) = t^4 |
| addition |
+ |
y(t) = t + 2 |
| subtraction |
- |
z(t) = t - 3 |
| multiplication |
* |
x(t) = t*2 |
| division |
/ |
y(t) = 3/2 |
CONSTANTS
AquaMOOSE currently does not recognize symbols, so you must enter Pi for π. The constant 2.718 can be written as e.
| Constant |
Symbol |
Example |
| 3.14 (π) |
Pi |
x(t) = sin(Pi) |
| 2.718 (e) |
e |
y(t) = 2*e |
|