Changeset 24719
- Timestamp:
- 04/21/20 21:50:34 (5 years ago)
- Location:
- issm/trunk-jpl/src/m/materials
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/materials/nye.m
r24101 r24719 26 26 27 27 if(ice_type==1) % CO2 ice 28 A_const = 10^(1 0.8); % s^-1 MPa29 Q = 6 3000; % J mol^-130 n = 7; % Glen's exponent28 A_const = 10^(13.0); % s^-1 MPa 29 Q = 66900; % J mol^-1 30 n = 8; % Glen's exponent 31 31 elseif(ice_type==2) % H2O ice 32 32 A_const = 9e4; % s^-1 MPa -
issm/trunk-jpl/src/m/materials/nye.py
r24260 r24719 1 1 import numpy as np 2 2 3 4 3 def nye(temperature, ice_type): 5 4 """ 6 5 NYE - figure out the rigidity of ice (either CO2 or H2O) for a given temperature 7 rigidity (in s^(1 / n)Pa) is the flow law parameter in the flow law sigma = B * e(1 /n) (Nye, p2000).8 6 rigidity (in s^(1/n)Pa) is the flow law parameter in the flow law sigma=B*e(1/n) (Nye, p2000). 7 temperature is in Kelvin degrees 9 8 10 9 Usage: 11 rigidity = nye(temperature, ice_type) % ice_type = 1: CO2 ice / /ice_type = 2: H2O ice12 10 rigidity=nye(temperature,ice_type) % ice_type = 1: CO2 ice // ice_type = 2: H2O ice 11 """ 13 12 14 # Declaring temperature and rigidity arrays15 if np.ndim(temperature) ==2:16 T =temperature.flatten()17 elif isinstance(temperature, float) or isinstance(temperature,int):18 T =np.array([temperature])19 else:20 T =temperature21 rigidity =np.zeros_like(T)13 # Declaring temperature and rigidity arrays 14 if np.ndim(temperature)==2: 15 T=temperature.flatten() 16 elif isinstance(temperature,float) or isinstance(temperature,int): 17 T=np.array([temperature]) 18 else: 19 T=temperature 20 rigidity=np.zeros_like(T) 22 21 23 # Beyond - melting -point cases24 if (ice_type ==1):25 for i in range(len(T)):26 if (200 < T[i] <220):27 warnings.warn('CO2 ICE - POSSIBLE MELTING. Some temperature values are between 200K and 220K.')28 break29 if ((T >=220).any()):30 warnings.warn('CO2 ICE - GUARANTEED MELTING. Some temperature values are beyond 220K.')31 elif (ice_type == 2) and ((T >273.15).any()):32 warnings.warn('H2O ICE - GUARANTEED MELTING. Some temperature values are beyond 273.15K.')22 # Beyond-melting-point cases 23 if (ice_type==1): 24 for i in range(len(T)): 25 if (200<T[i]<220): 26 warnings.warn('CO2 ICE - POSSIBLE MELTING. Some temperature values are between 200K and 220K.') 27 break 28 if ((T>=220).any()): 29 warnings.warn('CO2 ICE - GUARANTEED MELTING. Some temperature values are beyond 220K.') 30 elif (ice_type==2) and ((T>273.15).any()): 31 warnings.warn('H2O ICE - GUARANTEED MELTING. Some temperature values are beyond 273.15K.') 33 32 34 Rg = 8.3144598# J mol^-1 K^-133 Rg = 8.3144598 # J mol^-1 K^-1 35 34 36 if ice_type == 1:# CO2 ice37 A_const = 10**(10.8)# s^-1 MPa38 Q = 63000.# J mol^-139 n = 7.# Glen's exponent40 elif ice_type == 2:# H2O ice41 A_const = 9 * 10**4# s^-1 MPa42 Q = 60000.# J mol^-143 n = 3.# Glen's exponent44 else:45 raise RuntimeError('Ice type not supported')35 if ice_type == 1: # CO2 ice 36 A_const = 10**(13.0) # s^-1 MPa 37 Q = 66900. # J mol^-1 38 n = 8. # Glen's exponent 39 elif ice_type == 2: # H2O ice 40 A_const = 9*10**4 # s^-1 MPa 41 Q = 60000. # J mol^-1 42 n = 3. # Glen's exponent 43 else: 44 raise RuntimeError('Ice type not supported') 46 45 47 # Arrhenius Law48 A = A_const * np.exp(-1 * Q / (T * Rg))# s^-1 MPa49 rigidity = A**(-1 / n) * 10**6 # s^(1 /n) Pa46 # Arrhenius Law 47 A=A_const*np.exp(-1*Q/(T*Rg)) # s^-1 MPa 48 rigidity=A**(-1/n)*10**6 # s^(1/n) Pa 50 49 51 # Return output52 return rigidity50 # Return output 51 return rigidity
Note:
See TracChangeset
for help on using the changeset viewer.