source: issm/trunk-jpl/test/NightlyRun/test608.py@ 19049

Last change on this file since 19049 was 19049, checked in by Mathieu Morlighem, 10 years ago

NEW: test name is now included in the file itself so that people don't forget to include it

File size: 665 bytes
RevLine 
[19049]1#Test Name: 79NorthBalThic2d
[13668]2import numpy
3from model import *
4from EnumDefinitions import *
5from MatlabFuncs import *
6from triangle import *
7from setmask import *
8from parameterize import *
9from setflowequation import *
10from solve import *
11
12md=triangle(model(),'../Exp/79North.exp',10000.)
13md=setmask(md,'../Exp/79NorthShelf.exp','')
14md=parameterize(md,'../Par/79North.py')
[15565]15md=setflowequation(md,'SSA','all')
[13668]16md.cluster=generic('name',oshostname(),'np',3)
17md=solve(md,BalancethicknessSolutionEnum())
18
19#Fields and tolerances to track changes
20field_names =['Thickness']
[16938]21field_tolerances=[1e-12]
[13668]22field_values=[\
[13967]23 md.results.BalancethicknessSolution.Thickness,\
[13668]24 ]
Note: See TracBrowser for help on using the repository browser.