Calculates the curl of a 2D or 3D vector field at a vector.
The vector field
The vector
const field = Chalkboard.vect.field((x, y, z) => -y, (x, y, z) => x, (x, y, z) => 0);const curl = Chalkboard.calc.curl(field, Chalkboard.vect.init(1, 0, 0)); // Returns the rotational tendency Copy
const field = Chalkboard.vect.field((x, y, z) => -y, (x, y, z) => x, (x, y, z) => 0);const curl = Chalkboard.calc.curl(field, Chalkboard.vect.init(1, 0, 0)); // Returns the rotational tendency
Calculates the curl of a 2D or 3D vector field at a vector.