Changeset 20500 for issm/trunk/src/m/classes/linearbasalforcings.m
- Timestamp:
- 04/12/16 21:32:01 (9 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:ignore
-
old new 1 build-js 2 build-esmf 3 build-gcm 1 4 build-fw 2 5 build-ad
-
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 19104,19106-19126,19128-19134,19136-19170,19172-19299,19302,19306-19405,19407-19604,19606-19668,19670-20496
- Property svn:ignore
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/m/classes/linearbasalforcings.m
r19105 r20500 13 13 end 14 14 methods 15 function createxml(self,fid) % {{{16 fprintf(fid, '\n\n');17 fprintf(fid, '%s\n', '<!-- basalforcings -->');18 fprintf(fid,'%s%s%s%s%s\n%s\n%s\n%s\n', '<parameter key ="melting_rate" type="', class(self.melting_rate),'" default="', num2str(self.melting_rate),'">', ' <section name="basalforcings" />',' <help> basal melting rate (positive if melting) [m/yr] </help>','</parameter>');19 fprintf(fid,'%s%s%s%s%s\n%s\n%s\n', '<parameter key ="geothermalflux" type="', class(self.geothermalflux),'" default="', num2str(self.geothermalflux),'">', ' <section name="basalforcings" />',' <help> geothermal heat flux [W/m^2] </help>','</parameter>');20 21 end % }}}22 15 function self = linearbasalforcings(varargin) % {{{ 23 16 switch nargin … … 49 42 50 43 if ismember(MasstransportAnalysisEnum(),analyses) & ~(solution==TransientSolutionEnum() & md.transient.ismasstransport==0), 51 md = checkfield(md,'fieldname','basalforcings.groundedice_melting_rate','NaN',1,' timeseries',1);44 md = checkfield(md,'fieldname','basalforcings.groundedice_melting_rate','NaN',1,'Inf',1,'timeseries',1); 52 45 md = checkfield(md,'fieldname','basalforcings.deepwater_melting_rate','>=',0,'numel',1); 53 46 md = checkfield(md,'fieldname','basalforcings.deepwater_elevation','<','basalforcings.upperwater_elevation','numel',1); … … 55 48 end 56 49 if ismember(BalancethicknessAnalysisEnum(),analyses), 57 md = checkfield(md,'fieldname','basalforcings.groundedice_melting_rate','NaN',1,' size',[md.mesh.numberofvertices 1]);50 md = checkfield(md,'fieldname','basalforcings.groundedice_melting_rate','NaN',1,'Inf',1,'size',[md.mesh.numberofvertices 1]); 58 51 md = checkfield(md,'fieldname','basalforcings.deepwater_melting_rate','>=',0,'numel',1); 59 52 md = checkfield(md,'fieldname','basalforcings.deepwater_elevation','<','basalforcings.upperwater_elevation','numel',1); … … 61 54 end 62 55 if ismember(ThermalAnalysisEnum(),analyses) & ~(solution==TransientSolutionEnum() & md.transient.isthermal==0), 63 md = checkfield(md,'fieldname','basalforcings.groundedice_melting_rate','NaN',1,' timeseries',1);56 md = checkfield(md,'fieldname','basalforcings.groundedice_melting_rate','NaN',1,'Inf',1,'timeseries',1); 64 57 md = checkfield(md,'fieldname','basalforcings.deepwater_melting_rate','>=',0,'numel',1); 65 58 md = checkfield(md,'fieldname','basalforcings.deepwater_elevation','<','basalforcings.upperwater_elevation','numel',1); 66 59 md = checkfield(md,'fieldname','basalforcings.upperwater_elevation','<',0,'numel',1); 67 md = checkfield(md,'fieldname','basalforcings.geothermalflux','NaN',1,' timeseries',1,'>=',0);60 md = checkfield(md,'fieldname','basalforcings.geothermalflux','NaN',1,'Inf',1,'timeseries',1,'>=',0); 68 61 end 69 62 end % }}}
Note:
See TracChangeset
for help on using the changeset viewer.