Hello,
My goal is to plot a string on top of a contour picture when using the save_picture method using no GUI. For example:
graphics.picture.save_picture(file_name="contour-example.png")
I started trying to reproduce the following TUI command in order to define a string with the desired text, taking advantage of fluent titles:
/display/set/windows/text/visible? yes
/display/set/windows/text/date? no
/display/set/titles//left-top "Sample text"
Converting to .py I only get this:
solver.settings.results.graphics.windows.text.visible = True
solver.settings.results.graphics.windows.text.date = False
I can't find a way to define a title text with pyfluent. I also tried with annotations, but they are not visible when launching with no GUI.
Any workaround?
.