Versions Compared

Key

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

...

Info
titleWhite Background on Graphics Window

To get white background go to:
Main Menu > File > Hardcopy
Make sure that Reverse Foreground/Background is checked and select Color in Coloring section. \

Click Preview. Click No when prompted "Reset graphics window?"

...

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.

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

Code Block
((xy/key/label "centerline")  &nbsp;  \-0.5&nbsp;&nbsp;&nbsp; 97015.3  &nbsp;  \-0.48&nbsp;&nbsp;&nbsp; 96949.9   .   .   .   0.5&nbsp;&nbsp;&nbsp; 6012.92  &nbsp;  )  &nbsp;  ((xy/key/label "wall")  &nbsp;  \-0.5&nbsp;&nbsp;&nbsp; 100853  &nbsp;  \-0.480911&nbsp;&nbsp;&nbsp; 100496  &nbsp; .   .   .  &nbsp; &nbsp;  0.5&nbsp;&nbsp;&nbsp; 2874.7  &nbsp;  <!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:1; 	mso-generic-font-family:roman; 	mso-font-format:other; 	mso-font-pitch:variable; 	mso-font-signature:0 0 0 0 0 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman","serif"; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast;} pre 	{mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-link:"HTML Preformatted Char"; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Courier New"; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast;} span.HTMLPreformattedChar 	{mso-style-name:"HTML Preformatted Char"; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-unhide:no; 	mso-style-locked:yes; 	mso-style-link:"HTML Preformatted"; 	font-family:"Courier New"; 	mso-ascii-font-family:"Courier New"; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:"Courier New"; 	mso-bidi-font-family:"Courier New";} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	font-size:10.0pt; 	mso-ansi-font-size:10.0pt; 	mso-bidi-font-size:10.0pt;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} -->((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.

...