|
Calling Sequence
|
|
DotProduct(v1, v2)
v1 . v2
|
|
Parameters
|
|
v1
|
-
|
Vector(algebraic); Vector, Vector-valued procedure, or differential operator
|
v2
|
-
|
Vector(algebraic); Vector, Vector-valued procedure, or differential operator
|
|
|
|
|
Description
|
|
•
|
The function can be accessed through . or DotProduct exports.
|
•
|
If v2 is a VectorField, the divergence of v2 can be computed as DotProduct(Del, v2), or .
|
•
|
If v1 is a VectorField, an operator representing the directional derivative in the direction of v1 is obtained as DotProduct(v1, Del), or .
|
•
|
The behavior of the dot product of two Vectors is described by the following table:
|
|
|
coord ()
|
|
coord ()
|
|
1
|
free Vector
|
cartesian
|
free Vector
|
cartesian
|
scalar
|
|
free Vector
|
curved
|
free Vector
|
any
|
error
|
2
|
free Vector
|
cartesian
|
rooted Vector (root2)
|
coord2
|
scalar
|
|
free Vector
|
curved
|
rooted Vector (root2)
|
coord2
|
error
|
3
|
free Vector
|
cartesian
|
vector field
|
cartesian
|
scalar
|
|
free Vector
|
cartesian
|
vector field
|
curved
|
error
|
|
free Vector
|
curved
|
vector field
|
any
|
error
|
4
|
free Vector
|
cartesian
|
position Vector
|
cartesian
|
scalar
|
5
|
rooted Vector (root1)
|
coord1
|
rooted Vector (root1)
|
coord1
|
scalar
|
|
rooted Vector (root1)
|
coord1
|
rooted Vector (root2)
|
coord1
|
error
|
|
rooted Vector (any)
|
coord1
|
rooted Vector (any)
|
coord2
|
error
|
6
|
rooted Vector (root1)
|
coord1
|
vector field
|
coord2
|
|
7
|
rooted Vector (root1)
|
cartesian
|
position Vector
|
cartesian
|
scalar
|
8
|
vector field
|
coord1
|
vector field
|
coord1
|
scalar field
|
|
vector field
|
coord1
|
vector field
|
coord2
|
error
|
9
|
vector field
|
coord1
|
position Vector
|
cartesian
|
error
|
10
|
position Vector
|
cartesian
|
position Vector
|
cartesian
|
scalar
|
|
|
|
|
Examples
|
|
>
|
|
Take the dot product of two free Vectors in cartesian coordinates.
>
|
|
>
|
|
>
|
|
Take the dot product of two rooted vectors if they have the same coordinate system and root point.
>
|
|
| (5) |
>
|
|
>
|
|
The dot product of a cartesian free Vector and a rooted Vector is valid.
>
|
|
>
|
|
The dot product of two vector fields is defined if they are in the same coordinate system.
>
|
|
>
|
|
>
|
|
Use differential operators to compute the divergence of a vector field.
>
|
|
>
|
|
Construct a directional derivative operator.
>
|
|
>
|
|
The dot product of two position vectors is defined.
>
|
|
>
|
|
| (17) |
The dot product of a cartesian free Vector and a cartesian vector field is defined.
>
|
|
>
|
|
|
|
|