Changeset 22383


Ignore:
Timestamp:
02/01/18 11:01:30 (7 years ago)
Author:
adhikari
Message:

NEW: extracting love numbers at depth

Location:
issm/trunk-jpl/src/m
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/fourierlove.js

    r22098 r22383  
    1919                this.mu0=10**11; // Pa
    2020                this.allow_layer_deletion=1;
     21                this.love_kernels=0;
    2122                this.forcing_type = 11;
    2223        } // }}}
     
    3031                fielddisplay(this,'mu0','adimensioning constant for stress (default 10^11) [Pa]');
    3132                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)');
    3234                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 ']);
    3335
     
    4345                md = checkfield(md,'fieldname','love.mu0','NaN',1,'Inf',1,'numel',1,'>',0);
    4446                md = checkfield(md,'fieldname','love.allow_layer_deletion','values',[0, 1]);
     47                md = checkfield(md,'fieldname','love.love_kernels','values',[0, 1]);
    4548                md = checkfield(md,'fieldname','love.forcing_type','NaN',1,'Inf',1,'numel',1,'>',0, '<=', 12);
    4649                if (md.love.sh_nmin<=1 && md.love.forcing_type==9) {
     
    5861                WriteData(fid,prefix,'object',this,'fieldname','mu0','format','Double');
    5962                WriteData(fid,prefix,'object',this,'fieldname','allow_layer_deletion','format','Boolean');
     63                WriteData(fid,prefix,'object',this,'fieldname','love_kernels','format','Boolean');
    6064                WriteData(fid,prefix,'object',this,'fieldname','forcing_type','format','Integer');
    6165
     
    7276        this.mu0                  =  NaN;
    7377        this.allow_layer_deletion =  NaN;
     78        this.love_kernels =  NaN;
    7479        this.forcing_type         =  NaN;
    7580       
  • issm/trunk-jpl/src/m/classes/fourierlove.m

    r22004 r22383  
    1313                r0               =  NaN;
    1414                mu0              =  NaN;
    15         allow_layer_deletion = NaN;
     15      allow_layer_deletion = NaN;
     16      love_kernels = NaN;
    1617                forcing_type     =  NaN;
    1718        end
     
    4344                        self.mu0=10^11; % Pa
    4445                        self.allow_layer_deletion=1;
     46                        self.love_kernels=0;
    4547                        self.forcing_type = 11;
    4648                end % }}}
     
    5456                        fielddisplay(self,'mu0','adimensioning constant for stress (default 10^11) [Pa]');
    5557                        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)');
    5659                        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 '});
    5760
     
    6770                        md = checkfield(md,'fieldname','love.mu0','NaN',1,'Inf',1,'numel',1,'>',0);
    6871                        md = checkfield(md,'fieldname','love.allow_layer_deletion','values',[0 1]);
     72                        md = checkfield(md,'fieldname','love.love_kernels','values',[0 1]);
    6973                        md = checkfield(md,'fieldname','love.forcing_type','NaN',1,'Inf',1,'numel',1,'>',0, '<=', 12);
    7074                        if md.love.sh_nmin<=1 & md.love.forcing_type==9
     
    8286                        WriteData(fid,prefix,'object',self,'fieldname','mu0','format','Double');
    8387                        WriteData(fid,prefix,'object',self,'fieldname','allow_layer_deletion','format','Boolean');
     88                        WriteData(fid,prefix,'object',self,'fieldname','love_kernels','format','Boolean');
    8489                        WriteData(fid,prefix,'object',self,'fieldname','forcing_type','format','Integer');
    8590
  • issm/trunk-jpl/src/m/classes/fourierlove.py

    r22122 r22383  
    2020                self.mu0                  =  float('NaN');
    2121                self.allow_layer_deletion = float('NaN');
     22                self.love_kernels = float('NaN');
    2223                self.forcing_type         =  float('NaN');
    2324
     
    3839                string="%s\n%s"%(string,fielddisplay(self,'mu0','adimensioning constant for stress (default 10^11) [Pa]'))
    3940                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)'))
    4042                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) :'))
    4143                string="%s\n%s"%(string,'                                                     1:  Inner core boundary -- Volumic Potential')
     
    7072            self.mu0=1e11 # Pa
    7173            self.allow_layer_deletion=1
     74            self.love_kernels=0
    7275            self.forcing_type = 11
    7376
     
    8487            md = checkfield(md,'fieldname','love.mu0','NaN',1,'Inf',1,'numel',[1],'>',0);
    8588            md = checkfield(md,'fieldname','love.allow_layer_deletion','values',[0,1]);
     89            md = checkfield(md,'fieldname','love.love_kernels','values',[0,1]);
    8690            md = checkfield(md,'fieldname','love.forcing_type','NaN',1,'Inf',1,'numel',[1],'>',0, '<=', 12);
    8791            if md.love.sh_nmin<=1 and md.love.forcing_type==9:
     
    100104            WriteData(fid,prefix,'object',self,'fieldname','mu0','format','Double');
    101105            WriteData(fid,prefix,'object',self,'fieldname','allow_layer_deletion','format','Boolean');
     106            WriteData(fid,prefix,'object',self,'fieldname','love_kernels','format','Boolean');
    102107            WriteData(fid,prefix,'object',self,'fieldname','forcing_type','format','Integer');
    103108
  • issm/trunk-jpl/src/m/solve/parseresultsfromdisk.m

    r22330 r22383  
    211211        elseif strcmp(fieldname,'CalvingCalvingrate'),
    212212                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;
    213229        end
    214230
Note: See TracChangeset for help on using the changeset viewer.