Ignore:
Timestamp:
05/05/21 15:40:27 (4 years ago)
Author:
Eric.Larour
Message:

CHG: implemented templated version of the love_core routine, to allow
for IssmComplex and (IssmQuad tuypes in the future). Created new IssmComplex
type.

File:
1 edited

Legend:

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

    r26233 r26242  
    1919                istemporal                 = 0;
    2020                n_temporal_iterations      = 0;
    21                 time                       = 0;
     21                time                               = 0;
    2222                love_kernels               = 0;
    2323                forcing_type               = 0;
    24                 inner_core_boundary        = 0;
     24                inner_core_boundary            = 0;
    2525                core_mantle_boundary       = 0;
     26                complex_computation        = 0;
     27
    2628        end
    2729        methods (Static)
     
    6365                        self.inner_core_boundary=1;
    6466                        self.core_mantle_boundary=2;
     67                        self.complex_computation=0;
    6568                end % }}}
    6669                function disp(self) % {{{
     
    102105                        md = checkfield(md,'fieldname','love.love_kernels','values',[0 1]);
    103106                        md = checkfield(md,'fieldname','love.forcing_type','NaN',1,'Inf',1,'numel',1,'>',0, '<=', 12);
     107                        md = checkfield(md,'fieldname','love.complex_computation','NaN',1,'Inf',1,'numel',1,'values',[0 1]);
    104108
    105109                        md = checkfield(md,'fieldname','love.istemporal','values',[0 1]);
     
    140144                        WriteData(fid,prefix,'object',self,'fieldname','istemporal','format','Boolean');
    141145                        WriteData(fid,prefix,'object',self,'fieldname','n_temporal_iterations','format','Integer');
     146                        WriteData(fid,prefix,'object',self,'fieldname','complex_computation','format','Boolean');
    142147                        %note: no need to marshall the time vector, we have frequencies
    143148                        WriteData(fid,prefix,'object',self,'fieldname','love_kernels','format','Boolean');
Note: See TracChangeset for help on using the changeset viewer.