Arithmetic |
abs |
abs( constant | scalar | vector | tensor ) |
Rounds to nearest integer |
round |
round( constant | scalar ) |
Rounds to nearest integer |
ceil |
ceil( constant | scalar ) |
Rounds to next greater integer |
floor |
floor( constant | scalar ) |
Rounds to next lesser integer |
trunc |
trunc( constant | scalar ) |
Truncates non-integral digits |
sign |
sign( constant | scalar ) |
Returns 1 if positive, -1 if negative |
ln |
ln( constant | scalar ) |
Natural logarithm |
log10 |
log10( constant | scalar ) |
Base-10 logarithm |
exp |
exp( constant | scalar ) |
Exponential function |
sqrt |
sqrt( constant | scalar ) |
The square root |
cbrt |
cbrt( constant | scalar ) |
The cubic root |
Trigonometric |
sin |
sin( constant | scalar ) |
The trigonometric sine function |
asin |
asin( constant | scalar ) |
The inverse trigonometric sine function |
sinh |
sinh( constant | scalar ) |
The hyperbolic sine function |
asinh |
asinh( constant | scalar ) |
The inverse hyperbolic sine function |
cos |
cos( constant | scalar ) |
The trigonometric cosine function |
acos |
acos( constant | scalar ) |
The inverse trigonometric cosine function |
cosh |
cosh( constant | scalar ) |
The hyperbolic cosine function |
acosh |
acosh( constant | scalar ) |
The inverse hyperbolic cosine function |
tan |
tan( constant | scalar ) |
The trigonometric tangent function |
atan |
atan( constant | scalar ) |
The inverse trigonometric tangent function |
atan2 |
atan2( constant | scalar , constant | scalar ) |
The inverse trigonometric tangent function (accepts two arguments: the numerator and denominator) |
tanh |
tanh( constant | scalar ) |
The hyperbolic tangent function |
atanh |
atanh( constant | scalar ) |
The inverse hyperbolic tangent function |
Field |
min |
min( scalar ) |
Returns the minimum value in the field |
max |
max( scalar ) |
Returns the maximum value in the field |
sum |
sum( scalar ) |
Sums all values in the field |
volume_integral |
volume_integral( scalar ) |
Returns the integral of the field multiplied by volume |
volume_average |
volume_average( scalar ) |
Returns the volume-averaged value of a field |
mass_integral |
mass_integral( scalar ) |
Returns the integral of the field multiplied by mass |
mass_average |
mass_average( scalar ) |
Returns the mass-averaged value of a field |
surface_integral |
surface_integral( scalar ) |
Returns the integral of the field multiplied by surface area |
surface_average |
surface_average( scalar ) |
Returns the surface area-averaged value of a field |
Vector |
dot |
dot( vector , vector ) |
The inner-product of two vector fields |
cross |
cross( vector , vector ) |
The cross-product of two vector fields |
Gradients |
grad |
grad( scalar | vector ) |
The gradient of a field |
div |
div( vector ) |
The divergence of a field |
curl |
curl( vector ) |
The curl of a field |
qcriterion |
qcriterion( vector ) |
The Q-Criterion function |
Other |
tr |
tr( tensor ) |
The trace of a tensor |
transform |
transform( vector | tensor , string ) |
Returns a field in an alternate user-defined coordinate system |