source: issm/branches/trunk-larour-NatGeoScience2016/test/NightlyRun/test3006.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: 782 bytes
Line 
1#Test Name: SquareShelfConstrainedMasstransp2dDGAdolc
2from model import *
3from triangle import *
4from meshconvert import *
5from setmask import *
6from parameterize import *
7from setflowequation import *
8from solve import *
9from MatlabFuncs import *
10
11md=triangle(model(),'../Exp/Square.exp',150000.)
12md=meshconvert(md)
13md=setmask(md,'all','')
14md=parameterize(md,'../Par/SquareShelfConstrained.py')
15md=setflowequation(md,'SSA','all')
16md.cluster=generic('name',oshostname(),'np',1)
17md.masstransport.stabilization=3
18md.masstransport.spcthickness=md.geometry.thickness
19md.autodiff.isautodiff=True
20md=solve(md,'Masstransport')
21
22#Fields and tolerances to track changes
23field_names =['Thickness']
24field_tolerances=[1e-13]
25field_values=[\
26 md.results.MasstransportSolution.Thickness,\
27 ]
Note: See TracBrowser for help on using the repository browser.