您在這裡

Waveform Chart

26 七月, 2019 - 09:47
Available under Creative Commons-ShareAlike 4.0 International License. Download for free at http://cnx.org/contents/5b6e61df-b830-48cb-9764-94696cb47c80@1.3

Waveform Charts provide a historical graphical representation of numeric data.

The following example will build a simple G program that will allow you to chart a sine wave as it is being generated on a point-by-point basis using the equation:

yi = sin (0.2xi)                             (9.1)

media/image1.png
Figure 7.1 Waveform Chart  

Start with a while loop and add into it a Multiply and Sine functions, a numeric constant with value 0.2 and a Boolean control to stop the loop when its value is True. Arrange the diagram to look as in the following Figure Figure 7.2.

media/image2.png
Figure 7.2 While Loop For Waveform Chart  

To select a waveform chart, right click on the Front Panel window and select Waveform Chart from the Controls »Modern »Graph menu.

Figure 7.3 Selecting Waveform Chart  
media/image3.png
Figure 7.4

This places the Waveform Chart in the Front Panel window.

media/image4.png
Figure 7.5 Waveform Chart in Front Panel window  

In the Block Diagram window, make sure that the Waveform Chart terminal is inside the while loop. Wire the output of the Sine function to this terminal.

Notice that Waveform Chart terminal is that of a numeric output.

media/image5.png
Figure 7.6 Waveform Chart Terminal  

Most modern computers will run this program too fast. Thus, before this program is executed, a delay of 125 milliseconds will be inserted in the while loop. This will allow users to see how the Waveform Chart operates as data samples are plotted in the chard.

From theFunctions »Programming »Timing selectWait Until Next ms Multiple. This will put the while loop to sleep for the indicated number of milliseconds.

media/image6.png
Figure 7.7 Wait Until Next ms Multiple  

Drop the Wait Until Next ms Multiple function inside the loop and wire a constant to it with the value

125. This will delay the loop for 125 milliseconds. The final Waveform Chart program is shown in Figure Waveform Chart Program.

media/image7.png
Figure 7.8 Waveform Chart Program 

The default graphing mode of the Waveform Chart is autoscaling. You will notice the auto-scaling property when the program frst begins to run and the y-axis, labeled Amplitude, updates automatically as new numerical values are aggregated and displayed on the chart.

media/image8.png
Figure 7.9 Waveform Chart Autoscaling  

As the program continues to run, the graph continues to build as per the values associated with the x-axis, labeled Time, which correspond to the index value of the equations.

media/image9.png
Figure 7.10 Accumulating Values for the Waveform Chart  

As the program continues to run, the autoscaling property also applies to the x-axis. Noticed the updated x-axis. For this example, the x-axis will continue updating so as long as the program is running. This gives the appearance of a scrolling strip chart.

media/image10.png
Figure 7.11 Scrolling X-Axis  

Stopping and restarting the G program retains the numeric history and continues to aggregate the values for display.

media/image11.png
Figure 7.12 Graph History Retained Between Runs  

The Waveform Chart options can be easily updated by right clicking on the Waveform Chart and selecting the appropriate option to update from the pop-up menu.

Selecting Properties from this pop-up menu brings up the Waveform Chart dialog window (Figure Figure 7.14).

Figure 7.13 Waveform Chart Pop-Up Menu  
media/image13.png
Figure 7.14 Waveform Chart Options Dialog Box