Changeset 23716 for issm/trunk-jpl/src/m/classes/slr.py
- Timestamp:
- 02/12/19 06:10:51 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/slr.py
r23088 r23716 9 9 """ 10 10 SLR class definition 11 11 12 12 Usage: 13 13 slr=slr() 14 14 """ 15 16 15 def __init__(self): # {{{ 17 16 self.deltathickness = float('NaN') 18 17 self.sealevel = float('NaN') 19 self.spcthickness 18 self.spcthickness = float('NaN') 20 19 self.maxiter = 0 21 20 self.reltol = 0 … … 26 25 self.tide_love_k = 0 #ideam 27 26 self.tide_love_h = 0 #ideam 28 self.fluid_love = 0 29 self.equatorial_moi = 0 30 self.polar_moi = 0 27 self.fluid_love = 0 28 self.equatorial_moi = 0 29 self.polar_moi = 0 31 30 self.angular_velocity = 0 32 31 self.rigid = 0 … … 44 43 self.requested_outputs = [] 45 44 self.transitions = [] 46 45 47 46 #set defaults 48 47 self.setdefaultparameters() 49 48 #}}} 49 50 50 def __repr__(self): # {{{ 51 51 string=' slr parameters:' 52 52 string="%s\n%s"%(string,fielddisplay(self,'deltathickness','thickness change: ice height equivalent [m]')) 53 53 string="%s\n%s"%(string,fielddisplay(self,'sealevel','current sea level (prior to computation) [m]')) 54 54 string="%s\n%s"%(string,fielddisplay(self,'spcthickness','thickness constraints (NaN means no constraint) [m]')) … … 64 64 string="%s\n%s"%(string,fielddisplay(self,'equatorial_moi','mean equatorial moment of inertia [kg m^2]')) 65 65 string="%s\n%s"%(string,fielddisplay(self,'polar_moi','polar moment of inertia [kg m^2]')) 66 string="%s\n%s"%(string,fielddisplay(self,'angular_velocity','mean rotational velocity of earth [per second]')) 66 string="%s\n%s"%(string,fielddisplay(self,'angular_velocity','mean rotational velocity of earth [per second]')) 67 67 string="%s\n%s"%(string,fielddisplay(self,'ocean_area_scaling','correction for model representation of ocean area [default: No correction]')) 68 68 string="%s\n%s"%(string,fielddisplay(self,'steric_rate','rate of steric ocean expansion [mm/yr]')) 69 string="%s\n%s"%(string,fielddisplay(self,'Ngia','rate of viscous (GIA) geoid expansion (in mm/yr)')) 69 string="%s\n%s"%(string,fielddisplay(self,'Ngia','rate of viscous (GIA) geoid expansion (in mm/yr)')) 70 70 string="%s\n%s"%(string,fielddisplay(self,'Ugia','rate of viscous (GIA) bedrock uplift (in mm/yr)')) 71 71 string="%s\n%s"%(string,fielddisplay(self,'loop_increment','vector assembly (in the convolution) framentation')) … … 81 81 return string 82 82 # }}} 83 83 84 def setdefaultparameters(self): # {{{ 84 85 85 #Convergence criterion: absolute, relative and residual 86 self.reltol =0.01 #default87 self.abstol =float('NaN') #1 mm of sea level rise86 self.reltol = 0.01 #default 87 self.abstol = float('NaN') #1 mm of sea level rise 88 88 89 89 #maximum of non-linear iterations. 90 self.maxiter =591 self.loop_increment =20092 93 #computational flags: 94 self.geodetic =095 self.rigid =196 self.elastic =197 self.ocean_area_scaling =098 self.rotation =199 100 #tidal love numbers: 101 self.tide_love_h =0.6149 #degree 2102 self.tide_love_k =0.3055 #degree 2103 104 #secular fluid love number: 105 self.fluid_love =0.942106 107 #moment of inertia: 108 self.equatorial_moi =8.0077*10**37 # [kg m^2]109 self.polar_moi = 8.0345*10**37 # [kg m^2]110 111 #mean rotational velocity of earth 112 self.angular_velocity =7.2921*10**-5 # [s^-1]90 self.maxiter = 5 91 self.loop_increment = 200 92 93 #computational flags: 94 self.geodetic = 0 95 self.rigid = 1 96 self.elastic = 1 97 self.ocean_area_scaling = 0 98 self.rotation = 1 99 100 #tidal love numbers: 101 self.tide_love_h = 0.6149 #degree 2 102 self.tide_love_k = 0.3055 #degree 2 103 104 #secular fluid love number: 105 self.fluid_love = 0.942 106 107 #moment of inertia: 108 self.equatorial_moi = 8.0077*10**37 # [kg m^2] 109 self.polar_moi = 8.0345*10**37 # [kg m^2] 110 111 #mean rotational velocity of earth 112 self.angular_velocity = 7.2921*10**-5 # [s^-1] 113 113 114 114 #numerical discretization accuracy 115 self.degacc =.01115 self.degacc = .01 116 116 117 117 #steric: 118 self.steric_rate =0118 self.steric_rate = 0 119 119 120 120 #how many time steps we skip before we run SLR solver during transient 121 self.geodetic_run_frequency =1122 121 self.geodetic_run_frequency = 1 122 123 123 #output default: 124 self.requested_outputs =['default']125 126 #transitions should be a cell array of vectors: 127 self.transitions =[]124 self.requested_outputs = ['default'] 125 126 #transitions should be a cell array of vectors: 127 self.transitions = [] 128 128 129 129 #horizontal displacement? (not by default) 130 self.horiz =0130 self.horiz = 0 131 131 132 132 return self 133 133 #}}} 134 134 135 def checkconsistency(self,md,solution,analyses): # {{{ 135 136 136 #Early return 137 137 if (solution!='SealevelriseAnalysis'): … … 162 162 md = checkfield(md,'fieldname','slr.Ugia','NaN',1,'Inf',1,'size',[md.mesh.numberofvertices]) 163 163 164 #check that love numbers are provided at the same level of accuracy: 164 #check that love numbers are provided at the same level of accuracy: 165 165 if (size(self.love_h,0) != size(self.love_k,0) | size(self.love_h,0) != size(self.love_l,0)): 166 166 error('slr error message: love numbers should be provided at the same level of accuracy') 167 167 168 #cross check that whereever we have an ice load, the mask is <0 on each vertex: 168 #cross check that whereever we have an ice load, the mask is <0 on each vertex: 169 169 pos=np.where(self.deltathickness) 170 maskpos=md.mask.ice_levelset[md.mesh.elements[pos,:]] 170 maskpos=md.mask.ice_levelset[md.mesh.elements[pos,:]] 171 171 els=np.where(maskpos>0) 172 172 if len(els[0])>0: 173 173 warnings.warn('slr checkconsistency fail: there are elements with ice loads where some vertices are not on the ice!') 174 175 #check that if geodetic is requested, we are a mesh3dsurface model (planet), or if we are not, 176 #a coupler to a planet model is provided. 174 175 #check that if geodetic is requested, we are a mesh3dsurface model (planet), or if we are not, 176 #a coupler to a planet model is provided. 177 177 if self.geodetic and not md.transient.iscoupler and domaintype(md.mesh)!='mesh3dsurface': 178 178 error('model is requesting geodetic computations without being a mesh3dsurface, or being coupled to one!') 179 179 return md 180 180 # }}} 181 181 182 def defaultoutputs(self,md): # {{{ 182 183 return ['Sealevel'] 183 184 # }}} 185 184 186 def marshall(self,prefix,md,fid): # {{{ 185 187 WriteData(fid,prefix,'object',self,'fieldname','deltathickness','format','DoubleMat','mattype',2) … … 211 213 WriteData(fid,prefix,'object',self,'fieldname','horiz','format','Integer') 212 214 WriteData(fid,prefix,'object',self,'fieldname','geodetic','format','Integer') 213 215 214 216 #process requested outputs 215 217 outputs = self.requested_outputs
Note:
See TracChangeset
for help on using the changeset viewer.