Changeset 17810
- Timestamp:
- 04/22/14 11:55:27 (11 years ago)
- Location:
- issm/trunk-jpl/src/m/extrusion
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/extrusion/DepthAverage.m
r17725 r17810 9 9 10 10 %check that the model given in input is 3d 11 if ~strcmp(md.mesh.elementtype(),' 3D');11 if ~strcmp(md.mesh.elementtype(),'Penta'); 12 12 error('DepthAverage error message: the model given in input must be 3d') 13 13 end -
issm/trunk-jpl/src/m/extrusion/DepthAverage.py
r17725 r17810 15 15 16 16 #check that the model given in input is 3d 17 if md.mesh. domaintype().lower() != '3d':17 if md.mesh.elementtype() != 'Penta': 18 18 raise TypeError('DepthAverage error message: the model given in input must be 3d') 19 19
Note:
See TracChangeset
for help on using the changeset viewer.