Changeset 17040
- Timestamp:
- 12/21/13 13:00:28 (11 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/m/classes/flowequation.m ¶
r16764 r17040 87 87 md = checkfield(md,'fieldname','flowequation.fe_SSA','values',{'P1','P1bubble','P1bubblecondensed','P2'}); 88 88 md = checkfield(md,'fieldname','flowequation.fe_HO' ,'values',{'P1','P1bubble','P1bubblecondensed','P1xP2','P2xP1','P2'}); 89 md = checkfield(md,'fieldname','flowequation.fe_FS' ,'values',{'P1P1','P1P1GLS','MINIcondensed','MINI','TaylorHood' });89 md = checkfield(md,'fieldname','flowequation.fe_FS' ,'values',{'P1P1','P1P1GLS','MINIcondensed','MINI','TaylorHood','OneLayerP4z'}); 90 90 md = checkfield(md,'fieldname','flowequation.borderSSA','size',[md.mesh.numberofvertices 1],'values',[0 1]); 91 91 md = checkfield(md,'fieldname','flowequation.borderHO','size',[md.mesh.numberofvertices 1],'values',[0 1]); -
TabularUnified issm/trunk-jpl/src/m/classes/flowequation.py ¶
r16764 r17040 75 75 md = checkfield(md,'fieldname','flowequation.fe_SSA','values',['P1','P1bubble','P1bubblecondensed','P2']) 76 76 md = checkfield(md,'fieldname','flowequation.fe_HO' ,'values',['P1','P1bubble','P1bubblecondensed','P1xP2','P2xP1','P2']) 77 md = checkfield(md,'fieldname','flowequation.fe_FS' ,'values',['P1P1','P1P1GLS','MINIcondensed','MINI','TaylorHood' ])77 md = checkfield(md,'fieldname','flowequation.fe_FS' ,'values',['P1P1','P1P1GLS','MINIcondensed','MINI','TaylorHood','OneLayerP4z']) 78 78 md = checkfield(md,'fieldname','flowequation.borderSSA','size',[md.mesh.numberofvertices],'values',[0,1]) 79 79 md = checkfield(md,'fieldname','flowequation.borderHO','size',[md.mesh.numberofvertices],'values',[0,1]) -
TabularUnified issm/trunk-jpl/test/NightlyRun/temp291.m ¶
r16985 r17040 4 4 md=extrude(md,2,1.); 5 5 md=setflowequation(md,'FS','all'); 6 md.flowequation.fe_FS=' FINITELEMENTNAME';6 md.flowequation.fe_FS='OneLayerP4z'; 7 7 md.cluster=generic('name',oshostname(),'np',1); 8 8 md=solve(md,StressbalanceSolutionEnum()); -
TabularUnified issm/trunk-jpl/test/NightlyRun/temp291.py ¶
r17034 r17040 14 14 md.extrude(2,1.) 15 15 md=setflowequation(md,'FS','all') 16 md.flowequation.fe_FS=' FINITELEMENTNAME'16 md.flowequation.fe_FS='OneLayerP4z' 17 17 md.cluster=generic('name',oshostname(),'np',1) 18 18 md=solve(md,StressbalanceSolutionEnum())
Note:
See TracChangeset
for help on using the changeset viewer.