Changeset 21626 for issm/trunk-jpl/src/m/classes/calvingdev.m
- Timestamp:
- 03/23/17 15:47:16 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/calvingdev.m
r21049 r21626 6 6 classdef calvingdev 7 7 properties (SetAccess=public) 8 coeff = NaN; 8 stress_threshold_groundedice = 0.; 9 stress_threshold_floatingice = 0.; 9 10 meltingrate = NaN; 10 11 end … … 29 30 end % }}} 30 31 function self = extrude(self,md) % {{{ 31 self.coeff=project3d(md,'vector',self.coeff,'type','node');32 32 self.meltingrate=project3d(md,'vector',self.meltingrate,'type','node'); 33 33 end % }}} … … 35 35 36 36 %Proportionality coefficient in Pi model 37 self.coeff=2e13; 37 %self.coeff=2e13; 38 39 %Default sigma max 40 self.stress_threshold_groundedice = 1e6; 41 self.stress_threshold_floatingice = 150e3; 38 42 end % }}} 39 43 function md = checkconsistency(self,md,solution,analyses) % {{{ … … 41 45 if (~strcmp(solution,'TransientSolution') | md.transient.ismovingfront==0), return; end 42 46 43 md = checkfield(md,'fieldname','calving.coeff','>',0,'size',[md.mesh.numberofvertices 1]); 47 md = checkfield(md,'fieldname','calving.stress_threshold_groundedice','>',0,'numel',1,'nan',1,'Inf',1); 48 md = checkfield(md,'fieldname','calving.stress_threshold_floatingice','>',0,'numel',1,'nan',1,'Inf',1); 44 49 md = checkfield(md,'fieldname','calving.meltingrate','NaN',1,'Inf',1,'timeseries',1,'>=',0); 45 50 end % }}} 46 51 function disp(self) % {{{ 47 52 disp(sprintf(' Calving Pi parameters:')); 48 fielddisplay(self,'coeff','proportionality coefficient in Pi model'); 53 fielddisplay(self,'stress_threshold_groundedice','sigma_max applied to grounded ice only [Pa]'); 54 fielddisplay(self,'stress_threshold_floatingice','sigma_max applied to floating ice only [Pa]'); 49 55 fielddisplay(self,'meltingrate','melting rate at given location [m/a]'); 50 56 … … 53 59 yts=md.constants.yts; 54 60 WriteData(fid,prefix,'name','md.calving.law','data',2,'format','Integer'); 55 WriteData(fid,prefix,'object',self,'fieldname','coeff','format','DoubleMat','mattype',1); 56 WriteData(fid,prefix,'object',self,'fieldname','meltingrate','format','DoubleMat','mattype',1,'forcinglength',md.mesh.numberofvertices+1,'scale',1./yts); 61 WriteData(fid,prefix,'object',self,'fieldname','stress_threshold_groundedice','format','DoubleMat','mattype',1); 62 WriteData(fid,prefix,'object',self,'fieldname','stress_threshold_floatingice','format','DoubleMat','mattype',1); 63 WriteData(fid,prefix,'object',self,'fieldname','meltingrate','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'scale',1./yts); 57 64 end % }}} 58 65 end
Note:
See TracChangeset
for help on using the changeset viewer.