Changeset 18791


Ignore:
Timestamp:
11/17/14 10:39:19 (10 years ago)
Author:
srebuffi
Message:

CHG : repair test 806

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test806.py

    r18783 r18791  
    88from solve import *
    99from MatlabFuncs import *
     10from numpy import *
    1011
    1112md=triangle(model(),'../Exp/Square.exp',50000.)
     
    2021Lx = (xmax-xmin)
    2122alpha = 2./3.
    22 md.mask.ice_levelset = ((x - alpha*Lx)>0) - ((x - alpha*Lx)<0)
     23md.mask.ice_levelset = numpy.float_((x - alpha*Lx)>0) - numpy.float_((x - alpha*Lx)<0)
    2324
    2425md.timestepping.time_step=10
Note: See TracChangeset for help on using the changeset viewer.