Versions Compared

Key

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

...

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:

Code Block
No Format

(title "Static Pressure") \ (labels "Position" "Static Pressure")
Code Block

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).

Code Block
((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   )

...