Changeset 5650
- Timestamp:
- 09/01/10 15:49:52 (15 years ago)
- Location:
- issm/trunk/src/m
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/public/mesh/rifts/meshprocessrifts.m
r5024 r5650 7 7 % 8 8 % Usage: 9 % md=meshprocessrifts(md )9 % md=meshprocessrifts(md,domainoutline) 10 10 % 11 11 % Ex: 12 % md=meshprocessrifts(md);13 12 % md=meshprocessrifts(md,'DomainOutline.exp'); 14 13 % … … 16 15 %some checks on arguments: 17 16 if nargout~=1, 17 help meshprocessrifts 18 18 error('meshprocessrifts usage error:'); 19 19 end 20 20 21 21 if nargin~=2, 22 help meshprocessrifts 22 23 error('meshprocessrifts usage error:'); 23 24 end -
issm/trunk/src/m/utils/Meca/paterson.m
r1679 r5650 3 3 % 4 4 % rigidigty (in s^(1/3)Pa) is the flow law paramter in the flow law sigma=B*e(1/3) (Paterson, p97). 5 % temperature is in Celsiusdegrees5 % temperature is in Kelvin degrees 6 6 % 7 7 % Usage: 8 8 % rigidity=paterson(temperature) 9 9 10 if(temperature<0) 11 error('input temperature should be in Kelvin (positive)'); 12 end 10 13 T=temperature-273.15; 11 14
Note:
See TracChangeset
for help on using the changeset viewer.