Changeset 23621
- Timestamp:
- 01/10/19 07:13:42 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/friction.m
r22861 r23621 24 24 self.effective_pressure=project3d(md,'vector',self.effective_pressure,'type','node','layer',1); 25 25 case 4 26 error('not implemented yet');26 self.effective_pressure=project3d(md,'vector',self.effective_pressure,'type','node','layer',1); 27 27 otherwise 28 28 error('not supported yet'); … … 61 61 md = checkfield(md,'fieldname','friction.effective_pressure','NaN',1,'Inf',1,'timeseries',1); 62 62 case 4 63 error('not implemented yet');63 64 64 otherwise 65 65 error('not supported yet'); … … 72 72 fielddisplay(self,'q','q exponent'); 73 73 fielddisplay(self,'effective_pressure','Effective Pressure for the forcing if not coupled [Pa]'); 74 fielddisplay(self,'coupling','Coupling flag 0: uniform sheet (negative pressure ok, default), 1: ice pressure only, 2: water pressure assuming uniform sheet (no negative pressure), 3: use provided effective_pressure, 4: use dcoupled model (not implemented yet)');74 fielddisplay(self,'coupling','Coupling flag 0: uniform sheet (negative pressure ok, default), 1: ice pressure only, 2: water pressure assuming uniform sheet (no negative pressure), 3: use provided effective_pressure, 4: use coupled model (not implemented yet)'); 75 75 end % }}} 76 76 function marshall(self,prefix,md,fid) % {{{ … … 89 89 WriteData(fid,prefix,'class','friction','object',self,'fieldname','effective_pressure','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts); 90 90 case 4 91 error('not implemented yet');91 WriteData(fid,prefix,'class','friction','object',self,'fieldname','effective_pressure','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts); 92 92 otherwise 93 93 error('not supported yet');
Note:
See TracChangeset
for help on using the changeset viewer.