Ignore:
Timestamp:
04/23/13 14:52:18 (12 years ago)
Author:
Eric.Larour
Message:

CHG: introduced all the enums necessary for element inputs to the GiaDeflectionCore.
Introduced new fields in materials to include some of the material properties of the mantle
and lithosphere.
Introduced new class gia in model to control the lithosphere thickness.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/enum/EnumDefinitions.py

    r14689 r14724  
    12991299        return StringToEnum('MaterialsThermalconductivity')[0]
    13001300
     1301def MaterialsLithosphereShearModulusEnum():
     1302        """
     1303        MATERIALSLITHOSPHERESHEARMODULUSENUM - Enum of MaterialsLithosphereShearModulus
     1304
     1305           Usage:
     1306              macro=MaterialsLithosphereShearModulusEnum()
     1307        """
     1308
     1309        return StringToEnum('MaterialsLithosphereShearModulus')[0]
     1310
     1311def MaterialsLithosphereDensityEnum():
     1312        """
     1313        MATERIALSLITHOSPHEREDENSITYENUM - Enum of MaterialsLithosphereDensity
     1314
     1315           Usage:
     1316              macro=MaterialsLithosphereDensityEnum()
     1317        """
     1318
     1319        return StringToEnum('MaterialsLithosphereDensity')[0]
     1320
     1321def MaterialsMantleShearModulusEnum():
     1322        """
     1323        MATERIALSMANTLESHEARMODULUSENUM - Enum of MaterialsMantleShearModulus
     1324
     1325           Usage:
     1326              macro=MaterialsMantleShearModulusEnum()
     1327        """
     1328
     1329        return StringToEnum('MaterialsMantleShearModulus')[0]
     1330
     1331def MaterialsMantleViscosityEnum():
     1332        """
     1333        MATERIALSMANTLEVISCOSITYENUM - Enum of MaterialsMantleViscosity
     1334
     1335           Usage:
     1336              macro=MaterialsMantleViscosityEnum()
     1337        """
     1338
     1339        return StringToEnum('MaterialsMantleViscosity')[0]
     1340
     1341def MaterialsMantleDensityEnum():
     1342        """
     1343        MATERIALSMANTLEDENSITYENUM - Enum of MaterialsMantleDensity
     1344
     1345           Usage:
     1346              macro=MaterialsMantleDensityEnum()
     1347        """
     1348
     1349        return StringToEnum('MaterialsMantleDensity')[0]
     1350
    13011351def MeshAverageVertexConnectivityEnum():
    13021352        """
     
    20792129        return StringToEnum('ThermalIsenthalpy')[0]
    20802130
     2131def GiaLithosphereThicknessEnum():
     2132        """
     2133        GIALITHOSPHERETHICKNESSENUM - Enum of GiaLithosphereThickness
     2134
     2135           Usage:
     2136              macro=GiaLithosphereThicknessEnum()
     2137        """
     2138
     2139        return StringToEnum('GiaLithosphereThickness')[0]
     2140
    20812141def ThicknessEnum():
    20822142        """
     
    51975257        """
    51985258
    5199         return 518
    5200 
     5259        return 524
     5260
Note: See TracChangeset for help on using the changeset viewer.