source: issm/branches/trunk-larour-NatGeoScience2016/test/NightlyRun/test531.py@ 21243

Last change on this file since 21243 was 21060, checked in by Mathieu Morlighem, 9 years ago

CHG: no more enums in python

File size: 812 bytes
Line 
1#Test Name: PigBalVel2
2from model import *
3from triangle import *
4from setmask import *
5from parameterize import *
6from setflowequation import *
7from solve import *
8from MatlabFuncs import *
9
10md=triangle(model(),'../Exp/Pig.exp',20000.)
11md=setmask(md,'../Exp/PigShelves.exp','../Exp/PigIslands.exp')
12md=parameterize(md,'../Par/Pig.py')
13md.initialization.vx[:]=0.
14md.initialization.vy[:]=0.
15md=setflowequation(md,'SSA','all')
16md.cluster=generic('name',oshostname(),'np',3)
17md=solve(md,'Balancevelocity')
18
19# Fields and tolerances to track changes
20field_names =['DrivingStressX','DrivingStressY','Vel']
21field_tolerances=[1e-13,1e-13,1e-13]
22field_values=[\
23 md.results.BalancevelocitySolution.DrivingStressX,\
24 md.results.BalancevelocitySolution.DrivingStressY,\
25 md.results.BalancevelocitySolution.Vel,\
26 ]
Note: See TracBrowser for help on using the repository browser.