Ignore:
Timestamp:
11/18/21 06:34:31 (3 years ago)
Author:
vverjans
Message:

CHG: added stochasticforcing capability for basalforcings.floatingice_melting_rate, corrections in stochasticforcing checkconsistency

File:
1 edited

Legend:

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

    r26620 r26640  
    4545                        %Check that all fields agree with the corresponding md class and if any field needs the default params   
    4646         checkdefaults = false; %need to check defaults only if one of the field does not have its own dimensionality
     47                        structstoch   = structstochforcing();
    4748                        for field=self.fields
    4849            %Checking agreement of classes
    4950            if(contains(field,'SMB'))
    50                if~(isequal(class(md.smb),char(field)))
     51                                        mdname = structstoch.mdnames(find(strcmp(structstoch.fields,char(field))));
     52                                        if~(isequal(class(md.smb),char(mdname)))
    5153                  error('md.smb does not agree with stochasticforcing field %s', char(field));
    5254               end
    5355            end
    54             if(contains(field,'frontalforcings'))
    55                if~(isequal(class(md.frontalforcings),char(field)))
     56            if(contains(field,'FrontalForcings'))
     57                                        mdname = structstoch.mdnames(find(strcmp(structstoch.fields,char(field))));
     58               if~(isequal(class(md.frontalforcings),char(mdname)))
    5659                  error('md.frontalforcings does not agree with stochasticforcing field %s', char(field));
     60               end
     61            end
     62                                if(contains(field,'Calving'))
     63                                        mdname = structstoch.mdnames(find(strcmp(structstoch.fields,char(field))));
     64               if~(isequal(class(md.calving),char(mdname)))
     65                  error('md.calving does not agree with stochasticforcing field %s', char(field));
     66               end
     67            end
     68                                if(contains(field,'BasalforcingsFloatingice'))
     69                                        mdname = structstoch.mdnames(find(strcmp(structstoch.fields,char(field))));
     70               if~(isequal(class(md.basalforcings),char(mdname)))
     71                  error('md.basalforcings does not agree with stochasticforcing field %s', char(field));
    5772               end
    5873            end
     
    129144
    130145                                %Scaling covariance matrix (scale column-by-column and row-by-row)
    131                                 scaledfields = {'DefaultCalving','SMBautoregression'}; %list of fields that need scaling *1/yts
     146                                scaledfields = {'DefaultCalving','FloatingMeltRate','SMBautoregression'}; %list of fields that need scaling *1/yts
    132147                                tempcovariance = self.covariance; %copy of covariance to avoid writing back in member variable
    133148                                for i=1:num_fields
     
    161176   % by the class md.stochasticforcing
    162177
    163    list = {...
     178   list = structstochforcing();
     179        list = list.fields;
     180end % }}}
     181function structure = structstochforcing() % {{{
     182        % Defines structure with list of fields
     183        % supported and corresponding md names
     184        structure.fields = {...
    164185      'DefaultCalving',...
    165                 'FrontalForcingsRignotAutoregression',...
     186      'FloatingMeltRate',...
     187      'FrontalForcingsRignotAutoregression',...
    166188      'SMBautoregression'
    167189      };
     190        structure.mdnames = {...
     191                'calving',...
     192                'basalforcings',...
     193                'frontalforcingsrignotautoregression',...
     194                'SMBautoregression'
     195        };
    168196end % }}}
     197
     198
     199
     200
Note: See TracChangeset for help on using the changeset viewer.