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
GetVectorField( obj)
GetDeterminingSystem( obj)
obj
-
a LAVF object
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.
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
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=ξ,η
L≔LAVF⁡V,E2
L≔ξ⁢ⅆⅆx+η⁢ⅆⅆy&whereξy,y=0,ξx=0,ηx=−ξy,ηy=0
Now we can retrieve the basic properties of the LAVF L:
GetVectorField⁡L
ξ⁢ⅆⅆx+η⁢ⅆⅆy
S≔GetDeterminingSystem⁡L
S≔ξy,y=0,ξx=0,ηx=−ξy,ηy=0,indep=x,y,dep=ξ,η
The determining system of L is indeed a LHPDE object, and has access to various methods...
type⁡S,LHPDE
true
GetSystem⁡S
ξy,y=0,ξx=0,ηx=−ξy,ηy=0
GetDependents⁡S
ξ,η
GetIndependents⁡S
x,y
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]
Download Help Document