Changeset 25477
- Timestamp:
- 08/26/20 06:04:56 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/sealevelmodel.py
r25455 r25477 1 1 import warnings 2 3 2 import numpy as np 4 3 from fielddisplay import fielddisplay 4 from fieldnames import fieldnames 5 5 from generic import generic 6 6 from issmsettings import issmsettings … … 12 12 from private import private 13 13 from TwoDToThreeD import TwoDToThreeD 14 14 from plotmodel import plotmodel 15 from plot3 import plot3 16 from loneedges import loneedges 17 from planetradius import planetradius 15 18 16 19 class sealevelmodel(object): … … 30 33 """ 31 34 32 def __init__(self, *args): #{{{33 self.icecaps = []# list of land/ice models; name should be changed later34 self.earth = 0# model for the whole earth35 self.basins = []# list of basins, matching icecaps, where shapefile info is held36 self.cluster 37 self.miscellaneous 38 self.settings 39 self.private 40 self.mergedcaps 41 self.transitions 42 self.eltransitions 43 self.planet 35 def __init__(self, *args): #{{{ 36 self.icecaps = [] # list of land/ice models; name should be changed later 37 self.earth = 0 # model for the whole earth 38 self.basins = [] # list of basins, matching icecaps, where shapefile info is held 39 self.cluster = 0 40 self.miscellaneous = 0 41 self.settings = 0 42 self.private = 0 43 self.mergedcaps = 0 44 self.transitions = [] 45 self.eltransitions = [] 46 self.planet = '' 44 47 45 48 # Create a default object … … 60 63 #}}} 61 64 62 def __repr__(self): # {{{65 def __repr__(self): # {{{ 63 66 s = '{}\n'.format(fielddisplay(self, 'icecaps', 'ice caps')) 64 67 s += '{}\n'.format(fielddisplay(self, 'earth', 'earth')) … … 68 71 #}}} 69 72 70 def setdefaultparameters(self): # {{{71 self.icecaps 72 self.earth 73 self.cluster 74 self.miscellaneous 75 self.settings 76 self.private 77 self.transitions 78 self.eltransitions 79 self.planet 73 def setdefaultparameters(self): # {{{ 74 self.icecaps = [] 75 self.earth = [] 76 self.cluster = generic() 77 self.miscellaneous = miscellaneous() 78 self.settings = issmsettings() 79 self.private = private() 80 self.transitions = [] 81 self.eltransitions = [] 82 self.planet = 'earth' 80 83 #}}} 81 84 82 85 @staticmethod 83 def checkconsistency(slm, solutiontype): # {{{86 def checkconsistency(slm, solutiontype): # {{{ 84 87 # Is the coupler turned on? 85 88 for i in range(len(slm.icecaps)): … … 107 110 #}}} 108 111 109 def mergeresults(self): # {{{110 champs = fieldnames(self.icecaps[ i].results.TransientSolution)112 def mergeresults(self): # {{{ 113 champs = fieldnames(self.icecaps[0].results.TransientSolution) 111 114 for i in range(len(self.mergedcaps / 2)): 112 115 md = self.mergedcaps[2 * i] … … 135 138 self.mergedcaps[2 * i] = md 136 139 #}}} 137 138 def listcaps(self): # {{{140 141 def listcaps(self): # {{{ 139 142 for i in range(len(self.icecaps)): 140 143 print('{}: {}'.format(i, self.icecaps[i].miscellaneous.name)) 141 144 #}}} 142 145 143 def continents(self): # {{{146 def continents(self): # {{{ 144 147 list = [] 145 148 for i in range(len(self.basins)): … … 148 151 #}}} 149 152 150 def basinsfromcontinent(self, continent): # {{{153 def basinsfromcontinent(self, continent): # {{{ 151 154 list = [] 152 155 for i in range(len(self.icecaps)): … … 156 159 #}}} 157 160 158 def addbasin(self, bas): # {{{161 def addbasin(self, bas): # {{{ 159 162 if bas.__class__.__name__ != 'basin': 160 163 raise RuntimeError('addbasin method only takes a \'basin\' class object as input') … … 162 165 #}}} 163 166 164 def intersections(self, *args): #{{{167 def intersections(self, *args): #{{{ 165 168 options = pairoptions(*args) 166 169 force = options.getfieldvalue('force', 0) … … 181 184 182 185 # For elements 183 zei = mdi.mesh.x[mdi.mesh.elements] * onesmatrix / 3186 xei = mdi.mesh.x[mdi.mesh.elements] * onesmatrix / 3 184 187 yei = mdi.mesh.y[mdi.mesh.elements] * onesmatrix / 3 185 188 zei = mdi.mesh.z[mdi.mesh.elements] * onesmatrix / 3 … … 191 194 #}}} 192 195 193 def checkintersections(self): #{{{196 def checkintersections(self): #{{{ 194 197 flags = np.zeros(self.earth.mesh.numberofvertices, 1) 195 198 for i in range(len(self.basins)): … … 198 201 #}}} 199 202 200 def checkbasinconsistency(self): #{{{203 def checkbasinconsistency(self): #{{{ 201 204 for i in range(len(self.basins)): 202 205 self.basins[i].checkconsistency() 203 206 #}}} 204 207 205 def basinindx(self, *args): #{{{208 def basinindx(self, *args): #{{{ 206 209 options = pairoptions(*args) 207 210 continent = options.getfieldvalue('continent', 'all') … … 218 221 continent = np.unique(continent) 219 222 else: 220 pass # Nothing to do: assume we have a list of continents223 pass # Nothing to do: assume we have a list of continents 221 224 else: 222 pass # Nothing to do: assume we have a list of continents225 pass # Nothing to do: assume we have a list of continents 223 226 else: 224 227 if continent == 'all': … … 229 232 continent = np.unique(continent) 230 233 else: 231 pass # Nothing to do: assume we have a list of continents234 pass # Nothing to do: assume we have a list of continents 232 235 #}}} 233 236 … … 278 281 #}}} 279 282 280 def addicecap(self, md): #{{{281 if not type(md) == 283 def addicecap(self, md): #{{{ 284 if not type(md) == model: 282 285 raise Exception("addicecap method only takes a 'model' class object as input") 283 286 … … 285 288 #}}} 286 289 287 def basinsplot3d(self, *args): #{{{290 def basinsplot3d(self, *args): #{{{ 288 291 for i in range(len(self.basins)): 289 292 self.basins[i].plot3d(*args) 290 293 #}}} 291 294 292 def caticecaps(self, *args): #{{{295 def caticecaps(self, *args): #{{{ 293 296 # Recover options 294 297 options = pairoptions(*args) … … 313 316 for i in range(len(edges)): 314 317 ind1 = edges(i, 1) 315 ind 1= edges(i, 2)318 ind2 = edges(i, 2) 316 319 plot3([md.mesh.x[ind1], md.mesh.x[ind2]], [md.mesh.y[ind1], md.mesh.y[ind2]], [md.mesh.z[ind1], md.mesh.z[ind2]], 'g*-') 317 320 … … 323 326 #}}} 324 327 325 def viscousiterations(self): #{{{328 def viscousiterations(self): #{{{ 326 329 for i in range(len(self.icecaps)): 327 330 ic = self.icecaps[i] … … 332 335 #}}} 333 336 334 def maxtimestep(self): #{{{337 def maxtimestep(self): #{{{ 335 338 for i in range(len(self.icecaps)): 336 339 ic = self.icecaps[i] … … 343 346 print("Earth: {}/{}", mvi, timei) 344 347 #}}} 345 346 def transfer(self, string): #{{{348 349 def transfer(self, string): #{{{ 347 350 # Recover field size in one icecap 348 n = np.size(getattr(self.icecaps[ i], string), 0)351 n = np.size(getattr(self.icecaps[0], string), 0) 349 352 350 353 if n == self.icecaps[0].mesh.numberofvertices: … … 367 370 # Initialize #{{{ 368 371 field = np.zeros((self.earth.mesh.numberofvertices + 1, nsteps)) 369 field[-1, :] = times # Transfer the times only, not the values372 field[-1, :] = times # Transfer the times only, not the values 370 373 #}}} 371 374 # Transfer all the time fields #{{{ … … 373 376 capfieldi = getattr(self.icecaps[i], string) 374 377 for j in range(nsteps): 375 field[self.transitions[i], j] = capfieldi[0:-2, j] # Transfer only the values, not the time376 setattr(self.earth, string, field) # Do not forget to plug the field variable into its final location378 field[self.transitions[i], j] = capfieldi[0:-2, j] # Transfer only the values, not the time 379 setattr(self.earth, string, field) # Do not forget to plug the field variable into its final location 377 380 #}}} 378 381 elif n == (self.icecaps[0].mesh.numberofelements): … … 384 387 #}}} 385 388 386 def homogenize(self, noearth=0): #{{{389 def homogenize(self, noearth=0): #{{{ 387 390 mintimestep = np.inf 388 391 389 392 for i in range(len(self.icecaps)): 390 393 ic = self.icecaps[i] 391 mintimestep = np.min(mintimestep, len 394 mintimestep = np.min(mintimestep, len(ic.results.TransientSolution)) 392 395 393 396 if not noearth: … … 409 412 #}}} 410 413 411 def initializemodels(self): #{{{414 def initializemodels(self): #{{{ 412 415 for i in range(len(self.basins)): 413 416 md = model()
Note:
See TracChangeset
for help on using the changeset viewer.