Display XY-plot by using PyFluent Visualization

Gopi Raju Velpula
Gopi Raju Velpula Member Posts: 22
10 Comments First Anniversary First Answer Name Dropper
**

Iam trying to plot XYplot by using the pyfluent visualization by using the below code.

from
import Plots

get the plots object for the session

plots_session1 = Plots(solver)

get xyplot object

plot1=plots_session1.XYPlots["plot-1"]

set properties

plot1.surfaces_list = ["pres_outlet_1"]
plot1.y_axis_function = "temperature"

Draw plot

plot1.plot("window-1")

When i try to display the plot getting "Javascript Error: IPython is not defined" error .can any one help me with it.

Comments