VectorCross_j
The VectorCross_j function requires 2 parameters, each of which must be the name of a vector that has been previously identified with the $Vector directive. This function is not applicable for 2D vectors.
VectorCross_j returns a scalar, which is the component of the cross product of the two vectors in the j-direction. The units of the scalar is the product of the units of the two vectors provided as parameters.
Example:
$Vector A B C
A=VectorAssign(1,2,3) [m]
B=VectorAssign(4,5,6) [m]
C=VectorCross(A,B)
E=VectorCross_j(A,B)
{Solution:
A = (1, 2, 3) [m]
B = (4, 5, 6) [m]
C = (-3 ,6, -3) [(m)*(m)]
E= 6 [(m)*(m)]
}
See also: VectorCross