source:
issm/oecreview/Archive/12678-13393/ISSM-13244-13245.diff
Last change on this file was 13394, checked in by , 13 years ago | |
---|---|
File size: 1.2 KB |
-
u/astrid-r1b/morlighe/issmuci/trunk-jpl/../trunk-jpl/test/NightlyRun/test104.py
1 from model import * 2 from triangle import * 3 from setmask import * 4 from parameterize import * 5 from setflowequation import * 6 from EnumDefinitions import * 7 from solve import * 8 from MatlabFuncs import * 9 10 md=triangle(model(),'../Exp/Square.exp',180000) 11 md=setmask(md,'all','') 12 md=parameterize(md,'../Par/SquareShelfConstrained.py') 13 md.extrude(3,2) 14 md=setflowequation(md,'stokes','all') 15 md.cluster=generic('name',oshostname(),'np',3) 16 md=solve(md,DiagnosticSolutionEnum()) 17 18 #Fields and tolerances to track changes 19 field_names =['Vx','Vy','Vz','Vel','Pressure'] 20 field_tolerances=[1e-08,1e-08,1e-07,1e-08,1e-08] 21 field_values=[\ 22 md.results['DiagnosticSolution'][1]['Vx'],\ 23 md.results['DiagnosticSolution'][1]['Vy'],\ 24 md.results['DiagnosticSolution'][1]['Vz'],\ 25 md.results['DiagnosticSolution'][1]['Vel'],\ 26 md.results['DiagnosticSolution'][1]['Pressure'],\ 27 ]
Note:
See TracBrowser
for help on using the repository browser.