Ignore:
Timestamp:
Sep 1, 2012, 1:58:45 PM (13 years ago)
Author:
davies
Message:

Minor updates to validation test code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/shallow_water/okada_tsunami.py

    r8467 r8548  
    2323"""
    2424import numpy
    25 import okada_tsunami_fortran
     25
     26try:
     27    import okada_tsunami_fortran
     28except:
     29    raise Exception,\
     30    'okada_tsunami_fortran does not appear to be compiled.\n \
     31    You can compile it by running the command:\n \
     32    "f2py -c okada_tsunami_fortran.f -m okada_tsunami_fortran"\n \
     33    in the shallow_water directory'
     34 
    2635from pyproj import Proj
    2736import copy
Note: See TracChangeset for help on using the changeset viewer.