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

Online Help

All Products    Maple    MapleSim


GetSpace

get the space where a VFPDO is operates on

GetSystemCount

get the number of elements returned by a VFPDO object

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

GetSpace( obj)

GetSystemCount( obj)

Parameters

obj

-

a VDPDO object

Description

• 

An VFPDO object Δ is an appliable operator. It takes in a list of linear homogeneous differential expressions and returns as a differential operator on vector field that has same components as the differential expressions.

• 

The GetSpace(obj) returns a list of space variables that a VFPDO object is operated on.

• 

The GetSystemCount(obj) gives you the number of differential expressions.

• 

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

Examples

> 

with⁡LieAlgebrasOfVectorFields:

> 

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

X≔ξ⁡x,y⁢ⅆⅆx+η⁡x,y⁢ⅆⅆy

(1)
> 

Δ≔VFPDO⁡a1⁢diff⁡ξ⁡x,y,x−a2⁢ξ⁡x,y,diff⁡η⁡x,y,x,x−a12+a22⁢η⁡x,y,X

Δ≔X↦a1⋅ⅆⅆxX⁡x−a2⋅X⁡x,∂2∂x2X⁡y+−a12−a22⋅X⁡y

(2)
> 

GetSystemCount⁡Δ

2

(3)
> 

GetSpace⁡Δ

x,y

(4)

Compatibility

• 

The GetSpace and GetSystemCount commands were introduced in Maple 2020.

• 

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

See Also

VFPDO (Object overview)

LieAlgebrasOfVectorFields[VFPDO]

VFPDO as operator