GetVectorField - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


GetVectorField

get the vector field of a LAVF object

GetDeterminingSystem

 get the symmetry determining system of a LAVF object

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

GetVectorField( obj)

GetDeterminingSystem( obj)

Parameters

obj

-

a LAVF object

Description

• 

The GetVectorField method returns the vector field for a LAVF object, as a VectorField object. The returned VectorField object then has access to various methods. See Overview of the VectorField object for more detail.

• 

The GetDeterminingSystem method returns the symmetry determining system for a LAVF object, as a LHPDE object. The returned LHPDE object then has access to various methods. See Overview of the LHPDE object for more detail.

• 

These methods are associated with the LAVF object. For more detail, see Overview of the LAVF object.

Examples

> 

with⁡LieAlgebrasOfVectorFields:

> 

Typesetting:-Settings⁡userep=true:

> 

Typesetting:-Suppress⁡ξ⁡x,y,η⁡x,y:

Construct an indeterminate vector field and a determining system, then construct an LAVF object from them...

> 

V≔VectorField⁡ξ⁡x,y⁢Dx+η⁡x,y⁢Dy,space=x,y

V≔ξ⁢ⅆⅆx+η⁢ⅆⅆy

(1)
> 

E2≔LHPDE⁡diff⁡ξ⁡x,y,y,y=0,diff⁡η⁡x,y,x=−diff⁡ξ⁡x,y,y,diff⁡η⁡x,y,y=0,diff⁡ξ⁡x,y,x=0,indep=x,y,dep=ξ,η

E2≔ξy,y=0,ηx=−ξy,ηy=0,ξx=0,indep=x,y,dep=ξ,η

(2)
> 

L≔LAVF⁡V,E2

L≔ξ⁢ⅆⅆx+η⁢ⅆⅆy&whereξy,y=0,ξx=0,ηx=−ξy,ηy=0

(3)

Now we can retrieve the basic properties of the LAVF L:

> 

GetVectorField⁡L

ξ⁢ⅆⅆx+η⁢ⅆⅆy

(4)
> 

S≔GetDeterminingSystem⁡L

S≔ξy,y=0,ξx=0,ηx=−ξy,ηy=0,indep=x,y,dep=ξ,η

(5)

The determining system of L is indeed a LHPDE object, and has access to various methods...

> 

type⁡S,LHPDE

true

(6)
> 

GetSystem⁡S

ξy,y=0,ξx=0,ηx=−ξy,ηy=0

(7)
> 

GetDependents⁡S

ξ,η

(8)
> 

GetIndependents⁡S

x,y

(9)

Compatibility

• 

The GetVectorField and GetDeterminingSystem commands were introduced in Maple 2020.

• 

For more information on Maple 2020 changes, see Updates in Maple 2020.

See Also

LAVF (Object overview)

VectorField (Object overview)

LHPDE (Object overview)

LieAlgebrasOfVectorFields[VectorField]

LieAlgebrasOfVectorFields[LHPDE]

LieAlgebrasOfVectorFields[LAVF]