Calculates the circulation (line integration over a scalar/vector field) of a parametric curve through a multivariable function or a vector field.
The multivariable function or vector field
The parametric curve function
The lower bound
The upper bound
const segment = Chalkboard.real.define((t) => t, (t) => 0);const scalar = Chalkboard.real.define((x) => 1);const integral = Chalkboard.calc.frds(scalar, segment, 0, 1); // Returns approximately 1 Copy
const segment = Chalkboard.real.define((t) => t, (t) => 0);const scalar = Chalkboard.real.define((x) => 1);const integral = Chalkboard.calc.frds(scalar, segment, 0, 1); // Returns approximately 1
Calculates the circulation (line integration over a scalar/vector field) of a parametric curve through a multivariable function or a vector field.