|
空間内の線分に沿う線積分
|
|
|
説明
|
|
点 (1,2,3) と (4,5,0) を繋ぐ線分に沿う F . dr の線積分 (line integral) を求めます。
|
座標を指定します。
>
|
VectorCalculus[SetCoordinates] ( 'cartesian'[__x__,__y__,__z__] );
|
| (1.1) |
ベクトル場を指定します。
>
|
__F__ := VectorCalculus[VectorField] (<__x__^2, __y__^2, __z__^2>);
|
| (1.2) |
ベクトル場の線積分を求めます。
>
|
__LI__ := VectorCalculus[LineInt]( __F__, Line( <1,2,3>, <4,5,0> ), inert );
__LI__ := VectorCalculus[LineInt]( __F__, Line( <1,2,3>, <4,5,0> ) );
|
| (1.3) |
|
|
Download Help Document
Was this information helpful?