source:
issm/oecreview/Archive/18296-19100/ISSM-18790-18791.diff@
19102
Last change on this file since 19102 was 19102, checked in by , 10 years ago | |
---|---|
File size: 707 bytes |
-
../trunk-jpl/test/NightlyRun/test806.py
7 7 from EnumDefinitions import * 8 8 from solve import * 9 9 from MatlabFuncs import * 10 from numpy import * 10 11 11 12 md=triangle(model(),'../Exp/Square.exp',50000.) 12 13 md=setmask(md,'','') … … 19 20 xmax = max(x) 20 21 Lx = (xmax-xmin) 21 22 alpha = 2./3. 22 md.mask.ice_levelset = ((x - alpha*Lx)>0) -((x - alpha*Lx)<0)23 md.mask.ice_levelset = numpy.float_((x - alpha*Lx)>0) - numpy.float_((x - alpha*Lx)<0) 23 24 24 25 md.timestepping.time_step=10 25 26 md.timestepping.final_time=30
Note:
See TracBrowser
for help on using the repository browser.