source: issm/trunk-jpl/test/NightlyRun/test313.py@ 14021

Last change on this file since 14021 was 14021, checked in by jschierm, 12 years ago

CHG: Python test updates and deletions.

File size: 905 bytes
Line 
1from model import *
2from triangle import *
3from setmask import *
4from parameterize import *
5from setflowequation import *
6from EnumDefinitions import *
7from solve import *
8from MatlabFuncs import *
9
10md=triangle(model(),'../Exp/Square.exp',180000.)
11md=setmask(md,'','')
12md=parameterize(md,'../Par/SquareSheetConstrained.py')
13md.extrude(3,1.)
14md=setflowequation(md,'macayeal','all')
15md.cluster=generic('name',oshostname(),'np',3)
16md.verbose=verbose('convergence',True,'solution',True)
17md.transient.isdiagnostic=False
18md.transient.isprognostic=False
19md.transient.isthermal=True
20md.transient.isgroundingline=False
21md=solve(md,TransientSolutionEnum())
22
23#Fields and tolerances to track changes
24field_names =['Temperature','BasalforcingsMeltingRate']
25field_tolerances=[1e-13,1e-13]
26field_values=[\
27 md.results.TransientSolution[0].Temperature,\
28 md.results.TransientSolution[0].BasalforcingsMeltingRate,\
29 ]
Note: See TracBrowser for help on using the repository browser.