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