Changeset 20500 for issm/trunk/src/m/classes/thermal.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/thermal.m
r19105 r20500 18 18 end 19 19 methods 20 function createxml(self,fid) % {{{21 fprintf(fid, '<!-- thermal -->\n');22 23 % thermal solution parameters24 fprintf(fid,'%s\n%s\n%s\n','<frame key="1" label="Thermal solution parameters">','<section name="thermal" />');25 fprintf(fid,'%s%s%s%s%s\n%s\n%s\n%s\n',' <parameter key ="spctemperature" type="',class(self.spctemperature),'" default="',convert2str(self.spctemperature),'">',' <section name="thermal" />',' <help> temperature constraints (NaN means no constraint) [K] </help>',' </parameter>');26 27 % penalty_threshold drop-down (0, 1, or 2)28 fprintf(fid,'%s\n%s\n%s\n%s\n',' <parameter key ="penalty_threshold" type="alternative" optional="false">',' <section name="thermal" />',' <help> 0: no, 1: artificial_diffusivity, 2: SUPG </help>');29 fprintf(fid,'%s\n',' <option value="0" type="string" default="true"> </option>');30 fprintf(fid,'%s\n',' <option value="1" type="string" default="false"> </option>');31 fprintf(fid,'%s\n%s\n',' <option value="2" type="string" default="false"> </option>','</parameter>');32 33 fprintf(fid,'%s%s%s%s%s\n%s\n%s\n%s\n',' <parameter key ="stabilization" type="',class(self.stabilization),'" default="',convert2str(self.stabilization),'">',' <section name="thermal" />',' <help> maximum number of non linear iterations </help>',' </parameter>');34 fprintf(fid,'%s%s%s%s%s\n%s\n%s\n%s\n',' <parameter key ="reltol" type="',class(self.reltol),'" default="',convert2str(self.reltol),'">',' <section name="steadystate" />',' <help> relative tolerance criterion [K] </help>',' </parameter>');35 fprintf(fid,'%s%s%s%s%s\n%s\n%s\n%s\n',' <parameter key ="maxiter" type="',class(self.maxiter),'" default="',convert2str(self.maxiter),'">',' <section name="thermal" />',' <help> stabilize unstable thermal constraints that keep zigzagging after n iteration (default is 0, no stabilization) </help>',' </parameter>');36 fprintf(fid,'%s%s%s%s%s\n%s\n%s\n%s\n',' <parameter key ="penalty_lock" type="',class(self.penalty_lock),'" default="',convert2str(self.penalty_lock),'">',' <section name="thermal" />',' <help> threshold to declare convergence of thermal solution (default is 0) </help>',' </parameter>');37 fprintf(fid,'%s%s%s%s%s\n%s\n%s\n%s\n',' <parameter key ="penalty_factor" type="',class(self.penalty_factor),'" default="',convert2str(self.penalty_factor),'">',' <section name="thermal" />',' <help> scaling exponent (default is 3) </help>',' </parameter>');38 fprintf(fid,'%s%s%s%s%s\n%s\n%s\n%s\n',' <parameter key ="isenthalpy" type="',class(self.isenthalpy),'" default="',convert2str(self.isenthalpy),'">',' <section name="thermal" />',' <help> use an enthalpy formulation to include temperate ice (default is 0) </help>',' </parameter>');39 fprintf(fid,'%s%s%s%s%s\n%s\n%s\n%s\n',' <parameter key ="isdynamicbasalspc" type="',class(self.isdynamicbasalspc),'" default="',convert2str(self.isdynamicbasalspc),'">',' <section name="thermal" />',' <help> enable dynamic setting of basal forcing. recommended for enthalpy formulation (default is 0) </help>',' </parameter>');40 fprintf(fid,'%s%s%s%s%s\n%s\n%s\n%s\n',' <parameter key ="requested_outputs" type="',class(self.requested_outputs),'" default="',convert2str(self.requested_outputs),'">',' <section name="thermal" />',' <help> additional outputs requested </help>',' </parameter>');41 fprintf(fid,'%s\n%s\n','</frame>');42 43 end % }}}44 20 function self = extrude(self,md) % {{{ 45 21 self.spctemperature=project3d(md,'vector',self.spctemperature,'type','node','layer',md.mesh.numberoflayers,'padding',NaN); … … 99 75 100 76 md = checkfield(md,'fieldname','thermal.stabilization','numel',[1],'values',[0 1 2]); 101 md = checkfield(md,'fieldname','thermal.spctemperature',' timeseries',1);77 md = checkfield(md,'fieldname','thermal.spctemperature','Inf',1,'timeseries',1,'>=',0); 102 78 if (ismember(EnthalpyAnalysisEnum(),analyses) & md.thermal.isenthalpy & dimension(md.mesh)==3), 103 pos=find(md.thermal.spctemperature(1:md.mesh.numberofvertices,:)~=NaN); 79 80 %Make sure the spc are less than melting point 81 TEMP=md.thermal.spctemperature(1:md.mesh.numberofvertices,:); 104 82 replicate=repmat(md.geometry.surface-md.mesh.z,1,size(md.thermal.spctemperature,2)); 105 md = checkfield(md,'fieldname','thermal.spctemperature(find(md.thermal.spctemperature(1:md.mesh.numberofvertices,:)~=NaN))','<=',md.materials.meltingpoint-md.materials.beta*md.materials.rho_ice*md.constants.g*replicate(pos)+10^-5,'message','spctemperature should be less or equal than the adjusted melting point'); 83 pos=find(~isnan(TEMP)); 84 md = checkfield(md,'fieldname','thermal.spctemperature','field',TEMP(pos)',... 85 '<=',md.materials.meltingpoint-md.materials.beta*md.materials.rho_ice*md.constants.g*replicate(pos)+10^-5,... 86 'message','spctemperature should be less or equal than the adjusted melting point'); 87 106 88 md = checkfield(md,'fieldname','thermal.isenthalpy','numel',[1],'values',[0 1]); 107 89 md = checkfield(md,'fieldname','thermal.isdynamicbasalspc','numel', [1],'values',[0 1]); … … 151 133 WriteData(fid,'data',outputs,'enum',ThermalRequestedOutputsEnum(),'format','StringArray'); 152 134 end % }}} 135 function savemodeljs(self,fid,modelname) % {{{ 136 137 writejs1Darray(fid,[modelname '.thermal.spctemperature'],self.spctemperature); 138 writejsdouble(fid,[modelname '.thermal.penalty_threshold'],self.penalty_threshold); 139 writejsdouble(fid,[modelname '.thermal.stabilization'],self.stabilization); 140 writejsdouble(fid,[modelname '.thermal.reltol'],self.reltol); 141 writejsdouble(fid,[modelname '.thermal.maxiter'],self.maxiter); 142 writejsdouble(fid,[modelname '.thermal.penalty_lock'],self.penalty_lock); 143 writejsdouble(fid,[modelname '.thermal.penalty_factor'],self.penalty_factor); 144 writejsdouble(fid,[modelname '.thermal.isenthalpy'],self.isenthalpy); 145 writejsdouble(fid,[modelname '.thermal.isdynamicbasalspc'],self.isdynamicbasalspc); 146 writejscellstring(fid,[modelname '.thermal.requested_outputs'],self.requested_outputs); 147 148 end % }}} 153 149 end 154 150 end
Note:
See TracChangeset
for help on using the changeset viewer.