Changeset 26640 for issm/trunk-jpl/src/m/classes/stochasticforcing.m
- Timestamp:
- 11/18/21 06:34:31 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/stochasticforcing.m
r26620 r26640 45 45 %Check that all fields agree with the corresponding md class and if any field needs the default params 46 46 checkdefaults = false; %need to check defaults only if one of the field does not have its own dimensionality 47 structstoch = structstochforcing(); 47 48 for field=self.fields 48 49 %Checking agreement of classes 49 50 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))) 51 53 error('md.smb does not agree with stochasticforcing field %s', char(field)); 52 54 end 53 55 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))) 56 59 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)); 57 72 end 58 73 end … … 129 144 130 145 %Scaling covariance matrix (scale column-by-column and row-by-row) 131 scaledfields = {'DefaultCalving',' SMBautoregression'}; %list of fields that need scaling *1/yts146 scaledfields = {'DefaultCalving','FloatingMeltRate','SMBautoregression'}; %list of fields that need scaling *1/yts 132 147 tempcovariance = self.covariance; %copy of covariance to avoid writing back in member variable 133 148 for i=1:num_fields … … 161 176 % by the class md.stochasticforcing 162 177 163 list = {... 178 list = structstochforcing(); 179 list = list.fields; 180 end % }}} 181 function structure = structstochforcing() % {{{ 182 % Defines structure with list of fields 183 % supported and corresponding md names 184 structure.fields = {... 164 185 'DefaultCalving',... 165 'FrontalForcingsRignotAutoregression',... 186 'FloatingMeltRate',... 187 'FrontalForcingsRignotAutoregression',... 166 188 'SMBautoregression' 167 189 }; 190 structure.mdnames = {... 191 'calving',... 192 'basalforcings',... 193 'frontalforcingsrignotautoregression',... 194 'SMBautoregression' 195 }; 168 196 end % }}} 197 198 199 200
Note:
See TracChangeset
for help on using the changeset viewer.