We want to make something inspired by gnuplot to make quick exploratory plots of our AMR data, building from yt.
a sample session:
plot 'plt00000' using "temp"
set logscale
set xrange [0:10]
replot
save "figure.png"
most of these have analogs to gnuplot, except save is much simpler than setting a terminal, output, and replotting as we need to do in gnuplot.
some other bits:
- what syntax do we use for making 1-d slices?
- for 3-d, is it assumed that we always want to plot the three slice planes? should we have a
set origin (x,y,z)?
We want to make something inspired by
gnuplotto make quick exploratory plots of our AMR data, building fromyt.a sample session:
most of these have analogs to
gnuplot, exceptsaveis much simpler than setting a terminal, output, and replotting as we need to do in gnuplot.some other bits:
set origin (x,y,z)?