FlowLine - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Student[VectorCalculus]

  

FlowLine

  

compute the flow line of a vector field in R^2 or R^3

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

FlowLine(F, G, options)

Parameters

F

-

'Vector'(algebraic); specify the vector field

G

-

'Vector'(realcons), {list,set}('Vector'(realcons)); specify the starting point(s) of the flow

options

-

(optional) equation(s) of the form option=value where option is one of caption, output, fieldoptions, flowlineoptions, frames.

Description

• 

The FlowLine(F, G) calling sequence displays the flow line of the vector field F starting at the point(s) G.

• 

The options arguments primarily control plot options.

• 

caption = string

  

Give the plot a caption.  

– 

If output = plot, the default caption is Arrows of the vector field, and the flow line(s) emanating from the given initial point(s).

– 

If output = animation, the default caption is the one when output = plot plus the sentence During the animation, the marker on the flow line serves to show the direction in which it is traced.

  

For more information on typesetting captions, see plot/typesetting.

  

output = plot or animation

  

This option controls the return value of the command.

– 

output = plot returns a plot of the vector field and flow line(s). This is the default value.

– 

output = animation returns an animation of an indicator flowing through the vector field (one for each flow line).

• 

fieldoptions = list

  

A list of plot options for plotting the Vector field. The field is plotted using a call to plots[fieldplot] or plots[fieldplot3d], so options valid for these commands can be passed in this option. For more information on plotting options, see plot/options. The default value is [].

• 

flowlineoptions = list

  

A list of plot options for plotting the flow line(s). For more information on plotting options, see plot/options. The default value is [].

• 

frames = posint

  

Specifies the number of frames in the animation. The default value is 16.

• 

caption = anything

  

A caption for the plot.

  

The default caption is constructed from the parameters and the command options. caption = "" disables the default caption. For more information about specifying a caption, see plot/typesetting.

Examples

withStudentVectorCalculus:

The option scaling=constrained causes both axes to use the same scale, ensuring that a circle appears round.

FlowLineVectorFieldy,x,1,1,scaling=constrained

FlowLineVectorFieldy,x,1,1,2,1,scaling=constrained

FlowLineVectorFieldy,x,4,4,flowlineoptions=thickness=3,color=green,fieldoptions=grid=8,6,color=magenta,view=6..6,6..6,scaling=constrained

The commands to create the plots from the Plotting Guide are

FlowLineVectorFieldy,x,1,1,2,1,output=animation,flowlineoptions=color=DarkGreen,scaling=constrained

FlowLineVectorFieldy,x,z,1,1,1,fieldoptions=transparency=0.3,flowlineoptions=color=black,thickness=4,style=point,axes=boxed

Compatibility

• 

The G parameter was updated in Maple 16.

See Also

plot/options

plot3d/option

plots[fieldplot3d]

plots[fieldplot]

realcons

Student[VectorCalculus]

Student[VectorCalculus][SetCoordinates]

Student[VectorCalculus][VectorField]

Student[VectorCalculus][VectorFieldTutor]