Source code for issm.matdamageice

from issm.fielddisplay import fielddisplay
from issm.project3d import project3d
from issm.checkfield import checkfield
from issm.WriteData import WriteData

[docs]class matdamageice(object): """ MATICE class definition Usage: matdamagice=matdamageice(); """ def __init__(self): # {{{ self.rho_ice = 0. self.rho_water = 0. self.rho_freshwater = 0. self.mu_water = 0. self.heatcapacity = 0. self.latentheat = 0. self.thermalconductivity = 0. self.temperateiceconductivity = 0. self.meltingpoint = 0. self.beta = 0. self.mixed_layer_capacity = 0. self.thermal_exchange_velocity = 0. self.rheology_B = float('NaN') self.rheology_n = float('NaN') self.rheology_law = '' #giaivins: self.lithosphere_shear_modulus = 0. self.lithosphere_density = 0. self.mantle_shear_modulus = 0. self.mantle_density = 0. #SLR self.earth_density= 5512; # average density of the Earth, (kg/m^3) self.setdefaultparameters() #}}} def __repr__(self): # {{{ string=" Materials:" string="%s\n%s"%(string,fielddisplay(self,"rho_ice","ice density [kg/m^3]")) string="%s\n%s"%(string,fielddisplay(self,"rho_water","water density [kg/m^3]")) string="%s\n%s"%(string,fielddisplay(self,"rho_freshwater","fresh water density [kg/m^3]")) string="%s\n%s"%(string,fielddisplay(self,"mu_water","water viscosity [N s/m^2]")) string="%s\n%s"%(string,fielddisplay(self,"heatcapacity","heat capacity [J/kg/K]")) string="%s\n%s"%(string,fielddisplay(self,"thermalconductivity","ice thermal conductivity [W/m/K]")) string="%s\n%s"%(string,fielddisplay(self,"temperateiceconductivity","temperate ice thermal conductivity [W/m/K]")) string="%s\n%s"%(string,fielddisplay(self,"meltingpoint","melting point of ice at 1atm in K")) string="%s\n%s"%(string,fielddisplay(self,"latentheat","latent heat of fusion [J/m^3]")) string="%s\n%s"%(string,fielddisplay(self,"beta","rate of change of melting point with pressure [K/Pa]")) string="%s\n%s"%(string,fielddisplay(self,"mixed_layer_capacity","mixed layer capacity [W/kg/K]")) string="%s\n%s"%(string,fielddisplay(self,"thermal_exchange_velocity","thermal exchange velocity [m/s]")) string="%s\n%s"%(string,fielddisplay(self,"rheology_B","flow law parameter [Pa/s^(1/n)]")) string="%s\n%s"%(string,fielddisplay(self,"rheology_n","Glen's flow law exponent")) string="%s\n%s"%(string,fielddisplay(self,"rheology_law","law for the temperature dependance of the rheology: 'None', 'BuddJacka', 'Cuffey', 'CuffeyTemperate', 'Paterson', 'Arrhenius' or 'LliboutryDuval'")) string="%s\n%s"%(string,fielddisplay(self,"lithosphere_shear_modulus","Lithosphere shear modulus [Pa]")) string="%s\n%s"%(string,fielddisplay(self,"lithosphere_density","Lithosphere density [g/cm^-3]")) string="%s\n%s"%(string,fielddisplay(self,"mantle_shear_modulus","Mantle shear modulus [Pa]")) string="%s\n%s"%(string,fielddisplay(self,"mantle_density","Mantle density [g/cm^-3]")) string="%s\n%s"%(string,fielddisplay(self,"earth_density","Mantle density [kg/m^-3]")) return string #}}}
[docs] def extrude(self,md): # {{{ self.rheology_B=project3d(md,'vector',self.rheology_B,'type','node') self.rheology_n=project3d(md,'vector',self.rheology_n,'type','element') return self
#}}}
[docs] def setdefaultparameters(self): # {{{ #ice density (kg/m^3) self.rho_ice=917. #ocean water density (kg/m^3) self.rho_water=1023. #fresh water density (kg/m^3) self.rho_freshwater=1000. #water viscosity (N.s/m^2) self.mu_water=0.001787 #ice heat capacity cp (J/kg/K) self.heatcapacity=2093. #ice latent heat of fusion L (J/kg) self.latentheat=3.34*10**5 #ice thermal conductivity (W/m/K) self.thermalconductivity=2.4 #temperate ice thermal conductivity (W/m/K) self.temperateiceconductivity=0.24 #the melting point of ice at 1 atmosphere of pressure in K self.meltingpoint=273.15 #rate of change of melting point with pressure (K/Pa) self.beta=9.8*10**-8 #mixed layer (ice-water interface) heat capacity (J/kg/K) self.mixed_layer_capacity=3974. #thermal exchange velocity (ice-water interface) (m/s) self.thermal_exchange_velocity=1.00*10**-4 #Rheology law: what is the temperature dependence of B with T #available: none, paterson and arrhenius self.rheology_law='Paterson' # GIA: self.lithosphere_shear_modulus = 6.7*10**10 # (Pa) self.lithosphere_density = 3.32 # (g/cm^-3) self.mantle_shear_modulus = 1.45*10**11 # (Pa) self.mantle_density = 3.34 # (g/cm^-3) #SLR self.earth_density= 5512; #average density of the Earth, (kg/m^3) return self
#}}}
[docs] def checkconsistency(self,md,solution,analyses): # {{{ md = checkfield(md,'fieldname','materials.rho_ice','>',0) md = checkfield(md,'fieldname','materials.rho_water','>',0) md = checkfield(md,'fieldname','materials.rho_freshwater','>',0) md = checkfield(md,'fieldname','materials.mu_water','>',0) md = checkfield(md,'fieldname','materials.rheology_B','>',0,'size',[md.mesh.numberofvertices]) md = checkfield(md,'fieldname','materials.rheology_n','>',0,'size',[md.mesh.numberofelements]) md = checkfield(md,'fieldname','materials.rheology_law','values',['None', 'BuddJacka', 'Cuffey', 'CuffeyTemperate', 'Paterson','Arrhenius','LliboutryDuval']) md = checkfield(md,'fieldname','materials.lithosphere_shear_modulus','>',0,'numel',[1]); md = checkfield(md,'fieldname','materials.lithosphere_density','>',0,'numel',[1]); md = checkfield(md,'fieldname','materials.mantle_shear_modulus','>',0,'numel',[1]); md = checkfield(md,'fieldname','materials.mantle_density','>',0,'numel',[1]); md = checkfield(md,'fieldname','materials.earth_density','>',0,'numel',[1]); return md
# }}}
[docs] def marshall(self,prefix,md,fid): # {{{ WriteData(fid,prefix,'name','md.materials.type','data',1,'format','Integer'); WriteData(fid,prefix,'object',self,'class','materials','fieldname','rho_ice','format','Double') WriteData(fid,prefix,'object',self,'class','materials','fieldname','rho_water','format','Double') WriteData(fid,prefix,'object',self,'class','materials','fieldname','rho_freshwater','format','Double') WriteData(fid,prefix,'object',self,'class','materials','fieldname','mu_water','format','Double') WriteData(fid,prefix,'object',self,'class','materials','fieldname','heatcapacity','format','Double') WriteData(fid,prefix,'object',self,'class','materials','fieldname','latentheat','format','Double') WriteData(fid,prefix,'object',self,'class','materials','fieldname','thermalconductivity','format','Double') WriteData(fid,prefix,'object',self,'class','materials','fieldname','temperateiceconductivity','format','Double') WriteData(fid,prefix,'object',self,'class','materials','fieldname','meltingpoint','format','Double') WriteData(fid,prefix,'object',self,'class','materials','fieldname','beta','format','Double') WriteData(fid,prefix,'object',self,'class','materials','fieldname','mixed_layer_capacity','format','Double') WriteData(fid,prefix,'object',self,'class','materials','fieldname','thermal_exchange_velocity','format','Double') WriteData(fid,prefix,'object',self,'class','materials','fieldname','rheology_B','format','DoubleMat','mattype',1) WriteData(fid,prefix,'object',self,'class','materials','fieldname','rheology_n','format','DoubleMat','mattype',2) WriteData(fid,prefix,'data',self.rheology_law,'name','md.materials.rheology_law','format','String') WriteData(fid,prefix,'object',self,'class','materials','fieldname','lithosphere_shear_modulus','format','Double'); WriteData(fid,prefix,'object',self,'class','materials','fieldname','lithosphere_density','format','Double','scale',10.**3.); WriteData(fid,prefix,'object',self,'class','materials','fieldname','mantle_shear_modulus','format','Double'); WriteData(fid,prefix,'object',self,'class','materials','fieldname','mantle_density','format','Double','scale',10.**3.); WriteData(fid,prefix,'object',self,'class','materials','fieldname','earth_density','format','Double');
# }}}