Ignore:
Timestamp:
Sep 24, 2014, 12:54:27 PM (11 years ago)
Author:
davies
Message:

Updating validation tests to try to run on NCI

Location:
trunk/anuga_core/validation_tests/experimental_data
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/validation_tests/experimental_data/dam_break_yeh_petroff/plot_results.py

    r8804 r9345  
    77import numpy
    88from matplotlib import pyplot as pyplot
     9import matplotlib
     10matplotlib.use('Agg')
    911from anuga.utilities import plot_utils as util
    1012from numpy import sqrt, sin, cos, pi
  • trunk/anuga_core/validation_tests/experimental_data/okushiri/plot_results.py

    r9273 r9345  
    1919from anuga.shallow_water.sww_interrogate import get_maximum_inundation_elevation
    2020from anuga.shallow_water.sww_interrogate import get_maximum_inundation_location
     21import matplotlib
     22matplotlib.use('Agg')
    2123
    2224##if sys.platform == 'win32':
     
    3537
    3638try:
    37     from pylab import ion, hold, plot, title, legend
    38     from pylab import xlabel, ylabel, savefig
     39    from matplotlib import pyplot
     40    from pyplot import ion, hold, plot, title, legend
     41    from pyplot import xlabel, ylabel, savefig
    3942    hold(False)  # Check if this command can be issued
    4043except:
Note: See TracChangeset for help on using the changeset viewer.