Changeset 24077
- Timestamp:
- 07/09/19 17:53:40 (6 years ago)
- 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 8 8 % Usage: 9 9 % 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)'); 13 14 end 14 15 … … 31 32 %Arhenius law 32 33 A = A_const*exp(-Q./(temperature*Rg)); % s^-1 MPa 33 B= A.^(-1/n)*1e6; % s^(1/n) Pa34 rigidity = A.^(-1/n)*1e6; % s^(1/n) Pa 34 35 35 36 end
Note:
See TracChangeset
for help on using the changeset viewer.