TNBFrame - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


VectorCalculus

  

TNBFrame

  

compute the tangent, normal, binormal frame of a curve in R^3

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

TNBFrame(C, t, out)

Parameters

C

-

free or position Vector or Vector valued procedure; specify the components of the curve in R^3

t

-

(optional) name; specify the parameter of the curve

out

-

(optional) equation of the form output=which where which is a list containing a combination of the names 'T', 'N', and 'B'

Description

• 

The TNBFrame(C, t, out) command computes the tangent, normal, binormal frame of the curve C.  The computed objects are returned in an expression sequence.

• 

The curve can be specified as a free or position Vector or a procedure that returns a Vector. This determines the returned object type.

• 

If t is not specified, the function tries to determine a suitable variable name by using the components of C.  To do this, it checks all of the indeterminates of type name in the components of C and removes the ones which are determined to be constants.

  

If the resulting set has a single entry, the single entry is the variable name.  If it has more than one entry, an error is raised.

• 

The right side of the equation out, when specified, controls which of the Vectors in the tangent, normal, binormal frame return. If 'T' is specified, the tangent vector is returned.  If 'N' is specified, the normal vector is returned.  If 'B' is specified, the binormal vector is returned.  The default is output=T,N,B.

• 

If a coordinate system attribute is specified on C, C is interpreted in that coordinate system.  Otherwise, the curve is interpreted as a curve in the current default coordinate system.  If the two are not compatible, an error is raised.

Examples

withVectorCalculus:

TNBFramePositionVectorcost,sint,t,t

2sint22cost222,costsint0,2sint22cost222

(1)

TNBFramecost,sint,t,output=T

2sint22cost222

(2)

TNBFramecost,sint,t,output=N,B

costsint0,2sint22cost222

(3)

SetCoordinatescylindrical

cylindrical

(4)

TNBFrame1,t,t

costcossint2sint2+cost2sinsint22cost2sinsint2+cost2cossint2cost2cossint22+costsinsint2sint2cost2sinsint2+cost2cossint222,cost2cossintcostsinsintsintcost2sinsint2+cost2cossint2costcossintsint+cost2sinsintcost2sinsint2+cost2cossint20,costcossint2sint2cost2sinsint22cost2sinsint2+cost2cossint2cost2cossint22costsinsint2sint2cost2sinsint2+cost2cossint222

(5)

See Also

VectorCalculus

VectorCalculus[Binormal]

VectorCalculus[Curvature]

VectorCalculus[GetCoordinates]

VectorCalculus[PrincipalNormal]

VectorCalculus[RadiusOfCurvature]

VectorCalculus[SetCoordinates]

VectorCalculus[TangentVector]

VectorCalculus[Torsion]