Changeset 24077


Ignore:
Timestamp:
07/09/19 17:53:40 (6 years ago)
Author:
schlegel
Message:

CHG: add python nye and minor edits to nye.m

Location:
issm/trunk-jpl/src/m/materials
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/materials/nye.m

    r24072 r24077  
    88%   Usage:
    99%      rigidity=nye(temperature,ice_type) % ice_type = 1: CO2 ice // ice_type = 2: H2O ice
    10 
    11         if (any(temperature < 130) || any(temperature > 273))
    12                 error('Input temperature out of bounds (130<T<273)');
     10        if ((ice_type == 2) && (any(temperature > 195)))
     11                error('Input temperature for CO2 ice out of bounds (T>195)');
     12        elseif ((ice_type == 2) && (any(temperature > 273.15)))
     13                error('Input temperature for H2O ice out of bounds (T>273.15)');
    1314        end
    1415
     
    3132        %Arhenius law
    3233        A = A_const*exp(-Q./(temperature*Rg)); % s^-1 MPa
    33         B = A.^(-1/n)*1e6; % s^(1/n) Pa
     34        rigidity = A.^(-1/n)*1e6; % s^(1/n) Pa
    3435
    3536end
Note: See TracChangeset for help on using the changeset viewer.