ScalarPotential - Maple Help

Online Help

All Products    Maple    MapleSim


Student[VectorCalculus]

  

ScalarPotential

  

compute the scalar potential of a vector field

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ScalarPotential(v)

Parameters

v

-

vector field or Vector-valued procedure; specify the components of the vector field

Description

• 

The ScalarPotential(v) calling sequence computes the scalar potential of the vector field v.  This is a function f such that Gradientf=v.  If a scalar potential does not exist, NULL is returned.

• 

If v is a vector field, an algebraic expression is returned. If v is a Vector-valued procedure, a procedure is returned.

Examples

withStudentVectorCalculus:

vVectorFieldx,y,z

vxe_x+ye_y+ze_z

(1)

ScalarPotentialv

x22+y22+z22

(2)

Gradient

xe_x+ye_y+ze_z

(3)

vVectorFieldy,x,0

vye_x+xe_y+0e_z

(4)

ScalarPotentialv

denx2+y2+z2

denx2+y2+z2

(5)

ScalarPotentialx,y,zx,y,zden

x,y,zlnx2+y2+z22

(6)

SetCoordinatessphericalr,φ,θ

sphericalr,φ,θ

(7)

vVectorFieldr,0,0

vre_r+0e_φ+0e_θ

(8)

ScalarPotentialv

r22

(9)

See Also

Student[VectorCalculus]

Student[VectorCalculus][Gradient]

Student[VectorCalculus][SetCoordinates]

Student[VectorCalculus][Vector]

Student[VectorCalculus][VectorField]

Student[VectorCalculus][VectorPotential]