Application Center - Maplesoft

App Preview:

Plotting Capabilities for Engineers

You can switch back to the summary page by clicking here.

Learn about Maple
Download Application


 

Image 

Plotting Capabilities for Engineers 

? Maplesoft, a division of Waterloo Maple Inc., 2008 

Introduction 

Maple contains an extensive set of visualization tools and options, including many plots and options commonly used by engineers. This Tips & Techniques document demonstrates how to create and customize your plots using interactive techniques and command options, with emphasis on options used in engineering contexts. 

 

Constructing Plots in Maple 

Plots can be created using both interactive, "clickable" technqiues and through plotting commands. In this Tips and Techniques, both methods will be presented. 

 

Clickable Plotting 

The clickable approach is based on using point-and-click tools such as menus and interactive assistants, rather than commands. No knowledge of Maple's syntax or the underlying commands is required to create 2D and 3D plots and animations when using this approach.  

 

Example 

Plot the function `/`(`*`(sin(x)), `*`(x)) from -15 to 15 using a clickable plotting approach. 

 

Action 

Result 

Enter the expression to be plotted. 

`/`(`*`(sin(x)), `*`(x)) 

`/`(`*`(sin(x)), `*`(x)) (2.1.1.1)

 

Right click on the expression and select Plots > Plot Builder. The interactive Plot Builder assistant will appear. 

 

 

Change the range of the x axis to -15 to 15

Image 

Click Plot

Plot_2d

 

 

Tip: The Plot Builder is a good choice if you know in advance options that you want to modify. You could also select Plots > 2-D Plot, and then use context menus to change various options afterwards. 

 

Command Plotting 

The command-based approach involves using Maple commands to produce the plots. Options can be added to the command to customize the final appearance of the plot. The plotting command can be incorporated into larger scripts and custom Maple procedures. 

 

Example 

Plot a simple function using a command-based approach: 

 

plot(`/`(`*`(sin(x)), `*`(x)), x = -15 .. 15) 

Plot_2d  

 

`` 

 

Plotting Features 

Certain plotting features, such as the display command, are part of the plots package, so we will load the package below. This package contains a wide variety of specialized plots and options. For more details on the plots package, see its help page

 

with(plots); -1 

 

Feature 

Clickable-Based Approach 

Command-Based Approach 

Simple 2D Plot 

 Right click on the function below; select Plots > Plot Builder.  

Change the range of theta from 0 to 2*Pi

Click Plot

 

`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2))Plot_2d 

 

plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi)))) 

Plot_2d  

 

Gridlines 

 Right click on the function below; select Plots > Plot Builder.  

Ensure that the range of theta is from 0 to 2*Pi

Click Plot

 Right click on the plot; select Axes > Toggle Gridlines

 

`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2))Plot_2d 

Tip: When you click on the plot, the Plot toolbar will be visible above. You can click on the Image button to toggle the gridlines on and off. 

 

plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi))), gridlines = true)
plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi))), gridlines = true)
 

Plot_2d  

 

 

Annotations 

 

You can add annotations to your plot, such as titles, axis labels, legends, and more. Shown here are just some of the annotations you can make.  

 

 

Right click on the function below; select Plots > Plot Builder.  

Ensure that the range of theta is from 0 to 2*Pi

Click Plot

 Right click on the plot and select Title > Add Title

Name the plot Function Plot

Right click on the plot and select Axes > Labels > Edit Vertical

Name the vertical axis Value

 

`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2))Plot_2d 

Tip: You can also add annotations to your plot using the Drawing tools. Click on your plot and select the Image toolbar, and then you can choose from several options to annotate your plot. 

 

 

plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi))), title = `*`(Function, `*`(Plot)), labels = [thet...
plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi))), title = `*`(Function, `*`(Plot)), labels = [thet...
 

Plot_2d  

 

 

Logarithmic Scales 

 Right click on the function below; select Plots > Plot Builder.  

Ensure that the range of theta is from 0 to 2*Pi.  

 Click on Options, and Advanced Settings in the Axes section. 

Change the Mode for the unlabeled axis to Log.  

Click Apply, and then click Plot.  

 

`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2))Plot_2d 

 

 

 

plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi))), axis[2] = [mode = log])
plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi))), axis[2] = [mode = log])
 

Plot_2d  

 

 

Specialty Tickmarks 

 Right click on the function below; select Plots > Plot Builder.  

Ensure that the range of theta is from 0 to 2*Pi.  

Click on Options, and Advanced Settings in the Axes section.  

Change the Tickmarks setting for theta to spacing(Pi,0).  

Click Apply, and then click Plot.  

 

`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2))Plot_2d 

 

plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi))), tickmarks = [spacing(Pi), default])
plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi))), tickmarks = [spacing(Pi), default])
 

Plot_2d  

 

 

 

 

Plot Multiple Expressions 

 Right click on the expressions below; select Plots > Plot Builder.  

Ensure that the range of theta is from 0 to 2*Pi

Click Plot

 

`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), `+`(`*`(22.5, `*`(cos(theta))), 22.5)
`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), `+`(`*`(22.5, `*`(cos(theta))), 22.5)Plot_2d
Tip: To create a single plot with multiple expressions, you can also drag and drop expressions from different plots, or from your Maple document, onto the same set of axes.  

 

`:=`(A, plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi))))); -1; `:=`(B, plot(`+`(`*`(22.5, `*`(cos...
`:=`(A, plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi))))); -1; `:=`(B, plot(`+`(`*`(22.5, `*`(cos...
`:=`(A, plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi))))); -1; `:=`(B, plot(`+`(`*`(22.5, `*`(cos...
`:=`(A, plot(`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), theta = 0 .. `+`(`*`(2, `*`(Pi))))); -1; `:=`(B, plot(`+`(`*`(22.5, `*`(cos...
 

display(A, B) 

Plot_2d  

 

Tip: To suppress the output of the assignments of A and B, you can place a colon at the end of your statement (as shown above). 

 

Tip: The display command is used to display more than one plot on a set of axes.  For more information on the display command, see its help page

Dual Axes 

 Right click on the functions below, select Plots > Plot Builder.  

Ensure that the range of theta is from 0 to 2*Pi; click Plot.  

 Right click on the plot; select Axes > Create second axis

Right click on a curve (e.g. below, green) and select Axes > Move to second axis

 

`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), `+`(`*`(22.5, `*`(cos(theta))), 22.5)
`*`(`^`(abs(`+`(1, exp(`*`(I, `*`(Pi, `*`(cos(theta))))), exp(`*`(`*`(2, I), `*`(Pi, `*`(cos(theta))))))), 2)), `+`(`*`(22.5, `*`(cos(theta))), 22.5)Plot_2d
 

dualaxisplot(A, B) 

Plot_2d  

 

 

Specialized Plotting Examples 

Built into Maple are a wide array of standard engineering plots. Below, some of these plots are illustrated. 

Bode Plots 

Bode plots are usually a combination of a Bode magnitude and a Bode phase plot. These plots show the transfer function or frequency response of a linear, time-invariant system. To construct a Bode plot in Maple, define your DynamicSystems system object and use the BodePlot command.  

 

 The BodePlot and TransferFunction commands are part of the DynamicSystems package, so we will load the package below: 

with(DynamicSystems); -1 

 

`:=`(sys, TransferFunction(`+`(`/`(`*`(5), `*`(`+`(`*`(5, `*`(s)), 4)))))) 

(4.1.1)

 

BodePlot(sys) 

Plot_2d Plot_2d
 

 

 

 Tip: Specialized Maple functions like BodePlot can still be customized with various plotting options, allowing you to add titles and change colors, and annotations, just as with any other Maple plot. 

 

Root Locus Plots 

Maple has the ability to plot the root-locus of a system object with a built-in command. Below, we define our system and use the RootLocusPlot command to create the plot. 

 

`:=`(sys2, NewSystem(`/`(`*`(`^`(`+`(s, 1), 2)), `*`(`+`(`*`(`^`(s, 3)), s, 1))))) 

(4.2.1)

 

RootLocusPlot(sys2) 

Plot_2d  

 

  

 The Dynamic Systems package also includes support for root-contour plots, phase plots, and more. See ?DynamicSystems for more details. 

 

Polar Plots 

To plot polar functions in Maple, you simply define your function and plot it using the Plot Builder. 

 

Action 

Result 

Enter the expression to be plotted. 

`/`(`*`(`*`(40, `+`(20, `-`(sin(`+`(`*`(7, `*`(t))))), `-`(cos(`+`(`*`(20, `*`(t)))))))), `*`(`+`(100, `*`(`^`(`+`(t, `-`(`*`(`/`(1, 2), `*`(Pi)))), 2))))) 

`+`(`/`(`*`(40, `*`(`+`(20, `-`(sin(`+`(`*`(7, `*`(t))))), `-`(cos(`+`(`*`(20, `*`(t)))))))), `*`(`+`(100, `*`(`^`(`+`(t, `-`(`*`(`/`(1, 2), `*`(Pi)))), 2)))))) (4.3.1)

 

 

Right click on the expression and select Plot > Plot Builder. The interactive Plot Builder assistant will appear. 

 

Choose 2-D polar plot

 

Change the range of the angle t  to `+`(`-`(`*`(`/`(1, 2), `*`(Pi)))) to `*`(`+`(`*`(3, `*`(Pi))), `/`(1, 2))

Image 

Click Plot

Plot_2d 

  

Tip: See the Plotting Guide for information on all of Maple's built-in specialized plots. 

 

 

Legal Notice: Maplesoft, a division of Waterloo Maple Inc. 2008. Maplesoft and Maple are trademarks of Waterloo Maple Inc. This application may contain errors and Maplesoft is not liable for any damages resulting from the use of this material.