Changeset 27035 for issm/trunk/test/NightlyRun/test127.py
- Timestamp:
- 06/01/22 05:01:48 (3 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 26745-26955,26957-27031
- Property svn:mergeinfo changed
-
issm/trunk/test
- Property svn:mergeinfo changed
-
issm/trunk/test/NightlyRun/test127.py
r26744 r27035 1 #Test Name: SquareShelfConstrainedStressM LHO2d1 #Test Name: SquareShelfConstrainedStressMOLHO2d 2 2 from model import * 3 3 from socket import gethostname … … 9 9 from massfluxatgate import massfluxatgate 10 10 from generic import generic 11 from SetM LHOBC import SetMLHOBC11 from SetMOLHOBC import SetMOLHOBC 12 12 13 13 md = triangle(model(), '../Exp/Square.exp', 50000) 14 14 md = setmask(md, 'all', '') 15 15 md = parameterize(md, '../Par/SquareShelfConstrained.py') 16 md = setflowequation(md, 'M LHO', 'all')16 md = setflowequation(md, 'MOLHO', 'all') 17 17 md.cluster = generic('name', gethostname(), 'np', 2) 18 18 #outputs 19 #FIXME compute the stress components for M LHO19 #FIXME compute the stress components for MOLHO 20 20 md.stressbalance.requested_outputs = ['default', 'VxSurface', 'VySurface', 'VxShear', 'VyShear', 'VxBase', 'VyBase', 'MassFlux1', 'MassFlux2', 'MassFlux3', 'MassFlux4', 'MassFlux5', 'MassFlux6'] 21 21 #md.stressbalance.requested_outputs = ['default', 'DeviatoricStressxx', 'DeviatoricStressyy', 'DeviatoricStressxy', 'MassFlux1', 'MassFlux2', 'MassFlux3', 'MassFlux4', 'MassFlux5', 'MassFlux6'] … … 26 26 massfluxatgate('name', 'MassFlux5', 'profilename', '../Exp/MassFlux5.exp', 'definitionstring', 'Outputdefinition5'), 27 27 massfluxatgate('name', 'MassFlux6', 'profilename', '../Exp/MassFlux6.exp', 'definitionstring', 'Outputdefinition6')] 28 md = SetM LHOBC(md)28 md = SetMOLHOBC(md) 29 29 md = solve(md, 'Stressbalance') 30 30
Note:
See TracChangeset
for help on using the changeset viewer.