Changeset 5650


Ignore:
Timestamp:
09/01/10 15:49:52 (15 years ago)
Author:
ala
Message:

Better help for Paterson and meshprocessrifts

Location:
issm/trunk/src/m
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/public/mesh/rifts/meshprocessrifts.m

    r5024 r5650  
    77%
    88%   Usage:
    9 %      md=meshprocessrifts(md)
     9%      md=meshprocessrifts(md,domainoutline)
    1010%
    1111%   Ex:
    12 %      md=meshprocessrifts(md);
    1312%      md=meshprocessrifts(md,'DomainOutline.exp');
    1413%
     
    1615%some checks on arguments:
    1716if nargout~=1,
     17        help meshprocessrifts
    1818        error('meshprocessrifts usage error:');
    1919end
    2020
    2121if nargin~=2,
     22        help meshprocessrifts
    2223        error('meshprocessrifts usage error:');
    2324end
  • issm/trunk/src/m/utils/Meca/paterson.m

    r1679 r5650  
    33%
    44%   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 Celsius degrees
     5%   temperature is in Kelvin degrees
    66%
    77%   Usage:
    88%      rigidity=paterson(temperature)
    99
     10if(temperature<0)
     11        error('input temperature should be in Kelvin (positive)');
     12end
    1013T=temperature-273.15;
    1114
Note: See TracChangeset for help on using the changeset viewer.