Changeset 23793 for issm/trunk-jpl/test/NightlyRun/test302.py
- Timestamp:
- 03/13/19 03:17:46 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test302.py
r21408 r23793 9 9 10 10 11 md =triangle(model(),'../Exp/Square.exp',150000.)12 md =setmask(md,'','')13 md =parameterize(md,'../Par/SquareSheetConstrained.py')14 md =setflowequation(md,'SIA','all')15 md.cluster =generic('name',gethostname(),'np',3)16 md =solve(md,'Stressbalance')11 md = triangle(model(), '../Exp/Square.exp', 150000.) 12 md = setmask(md, '', '') 13 md = parameterize(md, '../Par/SquareSheetConstrained.py') 14 md = setflowequation(md, 'SIA', 'all') 15 md.cluster = generic('name', gethostname(), 'np', 3) 16 md = solve(md, 'Stressbalance') 17 17 18 18 #Fields and tolerances to track changes 19 field_names =['Vx','Vy','Vel','Pressure'] 20 field_tolerances=[1e-13,1e-13,1e-13,1e-13] 21 field_values=[\ 22 md.results.StressbalanceSolution.Vx,\ 23 md.results.StressbalanceSolution.Vy,\ 24 md.results.StressbalanceSolution.Vel,\ 25 md.results.StressbalanceSolution.Pressure,\ 26 ] 19 field_names = ['Vx', 'Vy', 'Vel', 'Pressure'] 20 field_tolerances = [1e-13, 1e-13, 1e-13, 1e-13] 21 field_values = [md.results.StressbalanceSolution.Vx, 22 md.results.StressbalanceSolution.Vy, 23 md.results.StressbalanceSolution.Vel, 24 md.results.StressbalanceSolution.Pressure]
Note:
See TracChangeset
for help on using the changeset viewer.