Changeset 22383
- Timestamp:
- 02/01/18 11:01:30 (7 years ago)
- Location:
- issm/trunk-jpl/src/m
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/fourierlove.js
r22098 r22383 19 19 this.mu0=10**11; // Pa 20 20 this.allow_layer_deletion=1; 21 this.love_kernels=0; 21 22 this.forcing_type = 11; 22 23 } // }}} … … 30 31 fielddisplay(this,'mu0','adimensioning constant for stress (default 10^11) [Pa]'); 31 32 fielddisplay(this,'allow_layer_deletion','allow for migration of the integration boundary with increasing spherical harmonics degree (default 1)'); 33 fielddisplay(this,'love_kernels','compute love numbers at depth? (default 0)'); 32 34 fielddisplay(this,'forcing_type',['integer indicating the nature and depth of the forcing for the Love number calculation (default 11) :','1: Inner core boundary -- Volumic Potential','2: Inner core boundary -- Pressure','3: Inner core boundary -- Loading','4: Inner core boundary -- Tangential traction','5: Core mantle boundary -- Volumic Potential','6: Core mantle boundary -- Pressure','7: Core mantle boundary -- Loading','8: Core mantle boundary -- Tangential traction','9: Surface -- Volumic Potential','10: Surface -- Pressure','11: Surface -- Loading','12: Surface -- Tangential traction ']); 33 35 … … 43 45 md = checkfield(md,'fieldname','love.mu0','NaN',1,'Inf',1,'numel',1,'>',0); 44 46 md = checkfield(md,'fieldname','love.allow_layer_deletion','values',[0, 1]); 47 md = checkfield(md,'fieldname','love.love_kernels','values',[0, 1]); 45 48 md = checkfield(md,'fieldname','love.forcing_type','NaN',1,'Inf',1,'numel',1,'>',0, '<=', 12); 46 49 if (md.love.sh_nmin<=1 && md.love.forcing_type==9) { … … 58 61 WriteData(fid,prefix,'object',this,'fieldname','mu0','format','Double'); 59 62 WriteData(fid,prefix,'object',this,'fieldname','allow_layer_deletion','format','Boolean'); 63 WriteData(fid,prefix,'object',this,'fieldname','love_kernels','format','Boolean'); 60 64 WriteData(fid,prefix,'object',this,'fieldname','forcing_type','format','Integer'); 61 65 … … 72 76 this.mu0 = NaN; 73 77 this.allow_layer_deletion = NaN; 78 this.love_kernels = NaN; 74 79 this.forcing_type = NaN; 75 80 -
issm/trunk-jpl/src/m/classes/fourierlove.m
r22004 r22383 13 13 r0 = NaN; 14 14 mu0 = NaN; 15 allow_layer_deletion = NaN; 15 allow_layer_deletion = NaN; 16 love_kernels = NaN; 16 17 forcing_type = NaN; 17 18 end … … 43 44 self.mu0=10^11; % Pa 44 45 self.allow_layer_deletion=1; 46 self.love_kernels=0; 45 47 self.forcing_type = 11; 46 48 end % }}} … … 54 56 fielddisplay(self,'mu0','adimensioning constant for stress (default 10^11) [Pa]'); 55 57 fielddisplay(self,'allow_layer_deletion','allow for migration of the integration boundary with increasing spherical harmonics degree (default 1)'); 58 fielddisplay(self,'love_kernels','compute love numbers at depth? (default 0)'); 56 59 fielddisplay(self,'forcing_type',{'integer indicating the nature and depth of the forcing for the Love number calculation (default 11) :','1: Inner core boundary -- Volumic Potential','2: Inner core boundary -- Pressure','3: Inner core boundary -- Loading','4: Inner core boundary -- Tangential traction','5: Core mantle boundary -- Volumic Potential','6: Core mantle boundary -- Pressure','7: Core mantle boundary -- Loading','8: Core mantle boundary -- Tangential traction','9: Surface -- Volumic Potential','10: Surface -- Pressure','11: Surface -- Loading','12: Surface -- Tangential traction '}); 57 60 … … 67 70 md = checkfield(md,'fieldname','love.mu0','NaN',1,'Inf',1,'numel',1,'>',0); 68 71 md = checkfield(md,'fieldname','love.allow_layer_deletion','values',[0 1]); 72 md = checkfield(md,'fieldname','love.love_kernels','values',[0 1]); 69 73 md = checkfield(md,'fieldname','love.forcing_type','NaN',1,'Inf',1,'numel',1,'>',0, '<=', 12); 70 74 if md.love.sh_nmin<=1 & md.love.forcing_type==9 … … 82 86 WriteData(fid,prefix,'object',self,'fieldname','mu0','format','Double'); 83 87 WriteData(fid,prefix,'object',self,'fieldname','allow_layer_deletion','format','Boolean'); 88 WriteData(fid,prefix,'object',self,'fieldname','love_kernels','format','Boolean'); 84 89 WriteData(fid,prefix,'object',self,'fieldname','forcing_type','format','Integer'); 85 90 -
issm/trunk-jpl/src/m/classes/fourierlove.py
r22122 r22383 20 20 self.mu0 = float('NaN'); 21 21 self.allow_layer_deletion = float('NaN'); 22 self.love_kernels = float('NaN'); 22 23 self.forcing_type = float('NaN'); 23 24 … … 38 39 string="%s\n%s"%(string,fielddisplay(self,'mu0','adimensioning constant for stress (default 10^11) [Pa]')) 39 40 string="%s\n%s"%(string,fielddisplay(self,'allow_layer_deletion','allow for migration of the integration boundary with increasing spherical harmonics degree (default 1)')) 41 string="%s\n%s"%(string,fielddisplay(self,'love_kernels','compute love numbers at depth? (default 0)')) 40 42 string="%s\n%s"%(string,fielddisplay(self,'forcing_type','integer indicating the nature and depth of the forcing for the Love number calculation (default 11) :')) 41 43 string="%s\n%s"%(string,' 1: Inner core boundary -- Volumic Potential') … … 70 72 self.mu0=1e11 # Pa 71 73 self.allow_layer_deletion=1 74 self.love_kernels=0 72 75 self.forcing_type = 11 73 76 … … 84 87 md = checkfield(md,'fieldname','love.mu0','NaN',1,'Inf',1,'numel',[1],'>',0); 85 88 md = checkfield(md,'fieldname','love.allow_layer_deletion','values',[0,1]); 89 md = checkfield(md,'fieldname','love.love_kernels','values',[0,1]); 86 90 md = checkfield(md,'fieldname','love.forcing_type','NaN',1,'Inf',1,'numel',[1],'>',0, '<=', 12); 87 91 if md.love.sh_nmin<=1 and md.love.forcing_type==9: … … 100 104 WriteData(fid,prefix,'object',self,'fieldname','mu0','format','Double'); 101 105 WriteData(fid,prefix,'object',self,'fieldname','allow_layer_deletion','format','Boolean'); 106 WriteData(fid,prefix,'object',self,'fieldname','love_kernels','format','Boolean'); 102 107 WriteData(fid,prefix,'object',self,'fieldname','forcing_type','format','Integer'); 103 108 -
issm/trunk-jpl/src/m/solve/parseresultsfromdisk.m
r22330 r22383 211 211 elseif strcmp(fieldname,'CalvingCalvingrate'), 212 212 field = field*yts; 213 elseif (strcmp(fieldname,'LoveKernelsReal') | strcmp(fieldname,'LoveKernelsImag')), 214 nlayer = md.materials.numlayers; 215 degmax = md.love.sh_nmax; 216 nfreq = md.love.nfreq; 217 temp_field = cell(degmax+1,nfreq,nlayer+1,6); 218 for ii=1:degmax+1 219 for jj=1:nfreq 220 for kk=1:nlayer+1 221 ll = (ii-1)*(nlayer+1)*6 + ((kk-1)*6+1); 222 for mm=1:6 223 temp_field{ii,jj,kk,mm} = field(ll+(mm-1),jj); 224 end 225 end 226 end 227 end 228 field=temp_field; 213 229 end 214 230
Note:
See TracChangeset
for help on using the changeset viewer.