I am trying to plot my solution u for various time steps. In order to meaningfully compare the solutions at different times, I need to keep my y-axis fixed. However, I can't seem to get the commands here to work: http://tinyurl.com/mvehtud
My code looks like this
fig = plot(u_, wireframe=False, title='Scaled membrane deflection',
interactive = False, scalarbar = False, range_min=0.2,
range_max=1.0,axes=True,tile_windows=False)
fig.elevate(-85)
fig.set_min_max(0.2,1.0)
My plot does not come up with a title, nor does tile_windows work. I want my y-axis to go from 0.2 to 1.0 for every plot, but neither range_min/range_max nor set_min_max appear to do anything.
Any ideas on how to get this to work?
Thanks,
Eric