[21759] | 1 | import numpy as np
|
---|
[19248] | 2 | from fielddisplay import fielddisplay
|
---|
| 3 | from checkfield import checkfield
|
---|
| 4 | from WriteData import WriteData
|
---|
| 5 | from project3d import project3d
|
---|
| 6 |
|
---|
| 7 | class SMBd18opdd(object):
|
---|
| 8 | """
|
---|
| 9 | SMBd18opdd Class definition
|
---|
| 10 |
|
---|
| 11 | Usage:
|
---|
| 12 | SMBd18opdd=SMBd18opdd();
|
---|
| 13 | """
|
---|
| 14 |
|
---|
| 15 | def __init__(self): # {{{
|
---|
| 16 | self.desfac = 0.
|
---|
[19309] | 17 | self.s0p = float('NaN')
|
---|
| 18 | self.s0t = float('NaN')
|
---|
[19248] | 19 | self.rlaps = 0.
|
---|
| 20 | self.rlapslgm = 0.
|
---|
| 21 | self.dpermil = 0.
|
---|
[21759] | 22 | self.f = 0.
|
---|
[19248] | 23 | self.Tdiff = float('NaN')
|
---|
| 24 | self.sealev = float('NaN')
|
---|
| 25 | self.ismungsm = 0
|
---|
| 26 | self.isd18opd = 0
|
---|
| 27 | self.delta18o = float('NaN')
|
---|
| 28 | self.delta18o_surface = float('NaN')
|
---|
| 29 | self.temperatures_presentday = float('NaN')
|
---|
| 30 | self.precipitations_presentday = float('NaN')
|
---|
| 31 |
|
---|
| 32 | #set defaults
|
---|
| 33 | self.setdefaultparameters()
|
---|
[19527] | 34 | self.requested_outputs = []
|
---|
[19248] | 35 | #}}}
|
---|
| 36 | def __repr__(self): # {{{
|
---|
| 37 | string=" surface forcings parameters:"
|
---|
| 38 |
|
---|
| 39 | string="%s\n%s"%(string,fielddisplay(self,'isd18opd','is delta18o parametrisation from present day temperature and precipitation activated (0 or 1, default is 0)'))
|
---|
| 40 | string="%s\n%s"%(string,fielddisplay(self,'desfac','desertification elevation factor (between 0 and 1, default is 0.5) [m]'))
|
---|
| 41 | string="%s\n%s"%(string,fielddisplay(self,'s0p','should be set to elevation from precip source (between 0 and a few 1000s m, default is 0) [m]'))
|
---|
| 42 | string="%s\n%s"%(string,fielddisplay(self,'s0t','should be set to elevation from temperature source (between 0 and a few 1000s m, default is 0) [m]'))
|
---|
| 43 | string="%s\n%s"%(string,fielddisplay(self,'rlaps','present day lapse rate [degree/km]'))
|
---|
[19259] | 44 | if self.isd18opd:
|
---|
| 45 | string="%s\n%s"%(string,fielddisplay(self,'temperatures_presentday','monthly present day surface temperatures [K], required if delta18o/mungsm is activated'))
|
---|
| 46 | string="%s\n%s"%(string,fielddisplay(self,'precipitations_presentday','monthly surface precipitation [m/yr water eq], required if delta18o or mungsm is activated'))
|
---|
| 47 | string="%s\n%s"%(string,fielddisplay(self,'delta18o','delta18o [per mil], required if pdd is activated and delta18o activated'))
|
---|
| 48 | string="%s\n%s"%(string,fielddisplay(self,'dpermil','degree per mil, required if d18opd is activated'))
|
---|
[19527] | 49 | string="%s\n%s"%(string,fielddisplay(self,'requested_outputs','additional outputs requested'))
|
---|
[19259] | 50 |
|
---|
[19248] | 51 | return string
|
---|
| 52 | #}}}
|
---|
| 53 | def extrude(self,md): # {{{
|
---|
| 54 |
|
---|
| 55 | if self.isd18opd: self.temperatures_presentday=project3d(md,'vector',self.temperatures_presentday,'type','node')
|
---|
| 56 | if self.isd18opd: self.precipitations_presentday=project3d(md,'vector',self.precipitations_presentday,'type','node')
|
---|
[19309] | 57 | self.s0p=project3d(md,'vector',self.s0p,'type','node')
|
---|
| 58 | self.s0t=project3d(md,'vector',self.s0t,'type','node')
|
---|
| 59 |
|
---|
[19248] | 60 | return self
|
---|
| 61 | #}}}
|
---|
[19527] | 62 | def defaultoutputs(self,md): # {{{
|
---|
| 63 | return []
|
---|
| 64 | #}}}
|
---|
[19248] | 65 | def initialize(self,md): # {{{
|
---|
| 66 |
|
---|
[21759] | 67 | if np.all(np.isnan(self.s0p)):
|
---|
| 68 | self.s0p=np.zeros((md.mesh.numberofvertices))
|
---|
[19309] | 69 | print " no SMBd18opdd.s0p specified: values set as zero"
|
---|
| 70 |
|
---|
[21759] | 71 | if np.all(np.isnan(self.s0t)):
|
---|
| 72 | self.s0t=np.zeros((md.mesh.numberofvertices))
|
---|
[19309] | 73 | print " no SMBd18opdd.s0t specified: values set as zero"
|
---|
| 74 |
|
---|
| 75 | return self
|
---|
| 76 | # }}}
|
---|
[19248] | 77 | def setdefaultparameters(self): # {{{
|
---|
| 78 |
|
---|
| 79 | #pdd method not used in default mode
|
---|
| 80 | self.ismungsm = 0
|
---|
| 81 | self.isd18opd = 1
|
---|
| 82 | self.desfac = 0.5
|
---|
| 83 | self.rlaps = 6.5
|
---|
| 84 | self.rlapslgm = 6.5
|
---|
| 85 | self.dpermil = 2.4
|
---|
[21759] | 86 | self.f = 0.169
|
---|
[19248] | 87 | return self
|
---|
| 88 | #}}}
|
---|
| 89 | def checkconsistency(self,md,solution,analyses): # {{{
|
---|
| 90 |
|
---|
[21049] | 91 | if 'MasstransportAnalysis' in analyses:
|
---|
[19527] | 92 | md = checkfield(md,'fieldname','smb.desfac','<=',1,'numel',[1])
|
---|
[21759] | 93 | md = checkfield(md,'fieldname','smb.s0p','>=',0,'NaN',1,'Inf',1,'size',[md.mesh.numberofvertices])
|
---|
| 94 | md = checkfield(md,'fieldname','smb.s0t','>=',0,'NaN',1,'Inf',1,'size',[md.mesh.numberofvertices])
|
---|
[19527] | 95 | md = checkfield(md,'fieldname','smb.rlaps','>=',0,'numel',[1])
|
---|
| 96 | md = checkfield(md,'fieldname','smb.rlapslgm','>=',0,'numel',[1])
|
---|
[19248] | 97 |
|
---|
| 98 | if self.isd18opd:
|
---|
[19897] | 99 | md = checkfield(md,'fieldname','smb.temperatures_presentday','size',[md.mesh.numberofvertices+1,12],'NaN',1,'Inf',1,'timeseries',1)
|
---|
| 100 | md = checkfield(md,'fieldname','smb.precipitations_presentday','size',[md.mesh.numberofvertices+1,12],'NaN',1,'Inf',1,'timeseries',1)
|
---|
[21759] | 101 | md = checkfield(md,'fieldname','smb.delta18o','NaN',1,'Inf',1,'size',[2,np.nan],'singletimeseries',1)
|
---|
[19527] | 102 | md = checkfield(md,'fieldname','smb.dpermil','>=',0,'numel',[1])
|
---|
[21759] | 103 | md = checkfield(md,'fieldname','smb.f','>=',0,'numel',[1])
|
---|
| 104 |
|
---|
[19527] | 105 | md = checkfield(md,'fieldname','masstransport.requested_outputs','stringrow',1)
|
---|
[19248] | 106 |
|
---|
| 107 | return md
|
---|
| 108 | # }}}
|
---|
[20690] | 109 | def marshall(self,prefix,md,fid): # {{{
|
---|
[19248] | 110 |
|
---|
[20896] | 111 | yts=md.constants.yts
|
---|
[19248] | 112 |
|
---|
[20889] | 113 | WriteData(fid,prefix,'name','md.smb.model','data',5,'format','Integer')
|
---|
[19248] | 114 |
|
---|
[20690] | 115 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','ismungsm','format','Boolean')
|
---|
| 116 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','isd18opd','format','Boolean')
|
---|
| 117 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','desfac','format','Double')
|
---|
| 118 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','s0p','format','DoubleMat','mattype',1);
|
---|
| 119 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','s0t','format','DoubleMat','mattype',1);
|
---|
| 120 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','rlaps','format','Double')
|
---|
| 121 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','rlapslgm','format','Double')
|
---|
[20902] | 122 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','Tdiff','format','DoubleMat','mattype',1,'timeserieslength',2,'yts',md.constants.yts)
|
---|
| 123 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','sealev','format','DoubleMat','mattype',1,'timeserieslength',2,'yts',md.constants.yts)
|
---|
[19248] | 124 |
|
---|
| 125 | if self.isd18opd:
|
---|
[20902] | 126 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','temperatures_presentday','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts)
|
---|
| 127 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','precipitations_presentday','format','DoubleMat','mattype',1,'scale',1./yts,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts)
|
---|
| 128 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','delta18o','format','DoubleMat','mattype',1,'timeserieslength',2,'yts',md.constants.yts)
|
---|
[20690] | 129 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','dpermil','format','Double')
|
---|
[21759] | 130 | WriteData(fid,prefix,'object',self,'class','smb','fieldname','f','format','Double')
|
---|
[19527] | 131 | #process requested outputs
|
---|
| 132 | outputs = self.requested_outputs
|
---|
| 133 | indices = [i for i, x in enumerate(outputs) if x == 'default']
|
---|
| 134 | if len(indices) > 0:
|
---|
| 135 | outputscopy=outputs[0:max(0,indices[0]-1)]+self.defaultoutputs(md)+outputs[indices[0]+1:]
|
---|
| 136 | outputs =outputscopy
|
---|
[20690] | 137 | WriteData(fid,prefix,'data',outputs,'name','md.smb.requested_outputs','format','StringArray')
|
---|
[19527] | 138 |
|
---|
[19248] | 139 | # }}}
|
---|