Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
VectorCalculus[TNBFrame] - R^3 内にある曲線に関する接線、法線、陪法線枠の計算
使い方
TNBFrame(C, t, out)
パラメータ
C - ベクトルまたはベクトル値の手続き; R^3 内にある曲線の成分の指定
t - (オプション) 名前; 曲線のパラメータの指定
out - (オプション) output=which の形の等式; ここで which は変数名 'T', 'N' および 'B' の組み合わせを含むリスト
説明
TNBFrame(C, t, out) コマンドは、曲線 C の、接線、法線、陪法線の枠を計算します。計算されるオブジェクトは、式列として返されます。
曲線は、ベクトルまたはベクトル値の手続きとして入力が可能です。これにより、返されるオブジェクトの型が決定されます。
t が指定されていない場合には、この関数は、C の成分を用いて適切な変数名を決定しようと試みます。これを行うには、C の成分に含まれる型 name の不定元を全てチェックし、定数であると決定されたものを削除します。
結果の集合が単独の成分からなる場合には、その成分が変数名となります。複数の成分がある場合には、エラーが起こります。
等式 out が指定されるとき、その右辺は、ベクトルの接線、法線、陪法線の枠のうちのいずれを返すのかを制御します。'T' が指定される場合には、接線ベクトルが返されます。'N' が指定される場合には、法線ベクトルが返されます。'B' が指定される場合には、陪法線ベクトルが返されます。デフォルトは、'output'=['T', 'N', 'B'] です。
C について座標系の属性が指定されている場合には、曲線はその座標系で解釈されます。それ以外の場合には、曲線は現在のデフォルト座標系にある曲線として解釈されます。その2つに互換性がない場合には、エラーが起こります。
例
with(VectorCalculus):
Warning, the assigned names <,> and <|> now have a global binding Warning, these protected names have been redefined and unprotected: *, +, ., Vector, diff, int, limit, series
TNBFrame( <cos(t),sin(t),t>, t );
TNBFrame( <cos(t),sin(t),t>, 'output'=['T'] );
TNBFrame( <cos(t),sin(t),t>, 'output'=['N','B'] );
SetCoordinates( 'cylindrical' );
TNBFrame( <1,t,t> );
参照
VectorCalculus パッケージの紹介, VectorCalculus[Binormal], VectorCalculus[Curvature], VectorCalculus[GetCoordinates], VectorCalculus[PrincipalNormal], VectorCalculus[RadiusOfCurvature], VectorCalculus[SetCoordinates], VectorCalculus[TangentVector], VectorCalculus[Torsion]
Download Help Document