VectorCalculus[ScalarPotential] - ベクトル場のスカラーポテンシャルの計算
使い方
ScalarPotential(v)
パラメータ
v - ベクトルまたはベクトル値の手続き; ベクトル場の成分の指定
|
説明
|
|
•
|
ScalarPotential(v) コマンドは、ベクトル場 v のスカラーポテンシャルを計算します。これは、Gradient(f) = v のように表される関数 f となります。スカラーポテンシャルが存在しない場合には、NULL が返されます。
|
•
|
v がベクトル場である場合には、代数式が返されます。v がベクトル値の手続きである場合には、手続きが返されます。
|
|
|
例
|
|
Warning, the assigned names <,> and <|> now have a global
binding
Warning, these protected names have been redefined and
unprotected: *, +, ., Vector, diff, int, limit, series
| |
>
|
SetCoordinates( 'cartesian'[x,y,z] );
|
| (2.1) |
>
|
v := VectorField( <x,y,z> );
|
| (2.2) |
| (2.3) |
>
|
v := VectorField( <y,-x,0> );
|
| (2.4) |
>
|
ScalarPotential( v );
den := x^2 + y^2 + z^2;
|
| (2.5) |
>
|
ScalarPotential( (x,y,z) -> <x,y,z>/den );
|
| (2.6) |
>
|
SetCoordinates( 'spherical'[r,phi,theta] );
|
| (2.7) |
>
|
v := VectorField( <r,0,0> );
|
| (2.8) |
| (2.9) |
| (2.10) |
|
|
Download Help Document
Was this information helpful?