Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

On the XY Plot window click on the Curves button. Change the Patternto a line, Select a blank as a Symbol and change the Weight to any number greater than 2. To do this for multiple curves use the arrow buttons to navigate through the different curves displayed on the plot.


Code Block
Code Block

It is good to write the data into a file to have greater flexibility on how to present the result in the report. At the same XY Plot windows, select Write to File. Then click Write...Name the file "p.xy" in the directory that you prefer.
 
Open "p.xy" file with notepad or other word processing software. At the top, we see:

...

(title "Static Pressure")
(labels "Position" "Static Pressure")

The first line tells us the properties we are comparing. In this case we are looking at Static Pressure. The second line tells us about the labels for the x and y axes, respectively.
 
There is a header at the beginning of each the data sets so that we can differentiate which data sets we are looking at. In this case, we have "centerline" and "wall" data sets.(title "Static Pressure")
(labels "Position" "Static Pressure")

Following is an example of two data sets (centerline and wall).

...

 ((xy/key/label

...

"centerline")

...

-0.

...

5    97015.3

...

-0.

...

48    96949.9

...

.

.

.

0.5    6012.92

)

((xy/key/label

...

"wall")

...

-0.

...

5    100853

-0.480911    100496

.

.

.

0.5    2874.7

)

Try copying the appropriate data sets to excel and plotting the results.

...