Changeset 24719


Ignore:
Timestamp:
04/21/20 21:50:34 (5 years ago)
Author:
ibsmith
Message:

Updated CO2 parameters based on new study.

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

Legend:

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

    r24101 r24719  
    2626
    2727        if(ice_type==1)     % CO2 ice
    28                 A_const     = 10^(10.8);    % s^-1 MPa
    29                 Q           = 63000;        % J mol^-1
    30                 n           = 7;            % Glen's exponent
     28                A_const     = 10^(13.0);    % s^-1 MPa
     29                Q           = 66900;        % J mol^-1
     30                n           = 8;            % Glen's exponent
    3131        elseif(ice_type==2) % H2O ice
    3232                A_const     = 9e4;          % s^-1 MPa
  • issm/trunk-jpl/src/m/materials/nye.py

    r24260 r24719  
    11import numpy as np
    22
    3 
    43def nye(temperature, ice_type):
    5     """
     4        """
    65   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     temperature is in Kelvin degrees
     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
    98
    109   Usage:
    11        rigidity = nye(temperature, ice_type) % ice_type = 1: CO2 ice / / ice_type = 2: H2O ice
    12     """
     10           rigidity=nye(temperature,ice_type) % ice_type = 1: CO2 ice // ice_type = 2: H2O ice
     11        """
    1312
    14     # Declaring temperature and rigidity arrays
    15     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 = temperature
    21     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)
    2221
    23     # Beyond - melting - point cases
    24     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             break
    29         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.')
    3332
    34     Rg = 8.3144598  # J mol^-1 K^-1
     33        Rg = 8.3144598              # J mol^-1 K^-1
    3534
    36     if ice_type == 1:  # CO2 ice
    37         A_const = 10**(10.8)  # s^-1 MPa
    38         Q = 63000.  # J mol^-1
    39         n = 7.  # Glen's exponent
    40     elif ice_type == 2:  # H2O ice
    41         A_const = 9 * 10**4  # s^-1 MPa
    42         Q = 60000.  #  J mol^-1
    43         n = 3.  # Glen's exponent
    44     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')
    4645
    47     # Arrhenius Law
    48     A = A_const * np.exp(-1 * Q / (T * Rg)) # s^-1 MPa
    49     rigidity = A**(-1 / n) * 10**6  # s^(1 / n) Pa
     46        # 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
    5049
    51     # Return output
    52     return rigidity
     50        # Return output
     51        return rigidity
Note: See TracChangeset for help on using the changeset viewer.