setplot.py.html | |
Source file: setplot.py | |
Directory: /home/rjl/git/rjleveque/clawpack-4.x/apps/euler/1d/hump | |
Converted: Tue Jul 26 2011 at 12:58:46 using clawcode2html | |
This documentation file will not reflect any later changes in the source file. |
""" Set up the plot figures, axes, and items to be done for each frame. This module is imported by the plotting routines and then the function setplot is called to set the plot parameters. """ import os add_qref = True # add plot of reference solution? if not os.path.isdir('_output_qref'): print "*** Did not find directory _output_qref" print "*** See README for how to create reference solution" add_qref = False qrefdir = None else: qrefdir = os.path.abspath('_output_qref') #-------------------------- def setplot(plotdata): #-------------------------- """ Specify what is to be plotted at each frame. Input: plotdata, an instance of pyclaw.plotters.data.ClawPlotData. Output: a modified version of plotdata. """ plotdata.clearfigures() # clear any old figures,axes,items data # Figure for q[0] plotfigure = plotdata.new_plotfigure(name='Density', figno=0) # Set up for axes in this figure: plotaxes = plotfigure.new_plotaxes() plotaxes.xlimits = 'auto' plotaxes.ylimits = 'auto' plotaxes.title = 'Density' # Set up for item on these axes: plotitem = plotaxes.new_plotitem(plot_type='1d') plotitem.plot_var = 0 plotitem.plotstyle = '-o' plotitem.color = 'b' # Reference solution: plotitem = plotaxes.new_plotitem(plot_type='1d') plotitem.outdir = qrefdir plotitem.show = add_qref plotitem.plot_var = 0 plotitem.plotstyle = '-' plotitem.color = 'r' # Figure for Momentum plotfigure = plotdata.new_plotfigure(name='Momentum', figno=1) # Set up for axes in this figure: plotaxes = plotfigure.new_plotaxes() plotaxes.xlimits = 'auto' plotaxes.ylimits = 'auto' plotaxes.title = 'Momentum' # Set up for item on these axes: plotitem = plotaxes.new_plotitem(plot_type='1d') plotitem.plot_var = 1 plotitem.plotstyle = '-o' plotitem.color = 'b' # Reference solution: plotitem = plotaxes.new_plotitem(plot_type='1d') plotitem.outdir = qrefdir plotitem.show = add_qref plotitem.plot_var = 1 plotitem.plotstyle = '-' plotitem.color = 'r' # Figure for Energy plotfigure = plotdata.new_plotfigure(name='Energy', figno=2) # Set up for axes in this figure: plotaxes = plotfigure.new_plotaxes() plotaxes.xlimits = 'auto' plotaxes.ylimits = 'auto' plotaxes.title = 'Energy' # Set up for item on these axes: plotitem = plotaxes.new_plotitem(plot_type='1d') plotitem.plot_var = 2 plotitem.plotstyle = '-o' plotitem.color = 'b' # Reference solution: plotitem = plotaxes.new_plotitem(plot_type='1d') plotitem.outdir = qrefdir plotitem.show = add_qref plotitem.plot_var = 2 plotitem.plotstyle = '-' plotitem.color = 'r' # Parameters used only when creating html and/or latex hardcopy # e.g., via pyclaw.plotters.frametools.printframes: plotdata.printfigs = True # print figures plotdata.print_format = 'png' # file format plotdata.print_framenos = 'all' # list of frames to print plotdata.print_fignos = 'all' # list of figures to print plotdata.html = True # create html files of plots? plotdata.html_homelink = '../README.html' # pointer for top of index plotdata.latex = True # create latex file of plots? plotdata.latex_figsperline = 2 # layout of plots plotdata.latex_framesperline = 1 # layout of plots plotdata.latex_makepdf = False # also run pdflatex? return plotdata