-
this is a part of the code i have solver.settings.results.plot.xy_plot["Cp_plot"] = {
"surfaces_list": ["airfoil"],
"y_axis_function": "pressure-coefficient",
'axes': {'numbers': {'x_format': 'general',
'x_axis_precision': 3,
'y_format': 'float',
'y_axis_precision': 2}},
} i want to write the .xy file of the pressure distribution of the airfoil in the working directory i used the below command: solver.settings.results.plot.xy_plot["Cp_plot"].write_to_file() but it didnt save anything |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
solver.settings.results.plot.xy_plot["Cp_plot"].write_to_file(file_name=). For example:
For getting this data as python float you need to parse the output file. |
Beta Was this translation helpful? Give feedback.
-
It's working fine. cc: @prmukherj |
Beta Was this translation helpful? Give feedback.
solver.settings.results.plot.xy_plot["Cp_plot"].write_to_file(file_name=).
For example:
For getting this data as python float you need to parse the output file.