Ignore:
Timestamp:
03/23/17 15:47:16 (8 years ago)
Author:
youngmc3
Message:

CHG: added calving stress thresholds and calving max parameters

File:
1 edited

Legend:

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

    r21049 r21626  
    66classdef calvingdev
    77        properties (SetAccess=public)
    8                 coeff         = NaN;
     8                stress_threshold_groundedice = 0.;
     9                stress_threshold_floatingice = 0.;
    910                meltingrate   = NaN;
    1011        end
     
    2930                end % }}}
    3031                function self = extrude(self,md) % {{{
    31                         self.coeff=project3d(md,'vector',self.coeff,'type','node');
    3232                        self.meltingrate=project3d(md,'vector',self.meltingrate,'type','node');
    3333                end % }}}
     
    3535
    3636                        %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;
    3842                end % }}}
    3943                function md = checkconsistency(self,md,solution,analyses) % {{{
     
    4145                        if (~strcmp(solution,'TransientSolution') | md.transient.ismovingfront==0), return; end
    4246
    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);
    4449                        md = checkfield(md,'fieldname','calving.meltingrate','NaN',1,'Inf',1,'timeseries',1,'>=',0);
    4550                end % }}}
    4651                function disp(self) % {{{
    4752                        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]');
    4955                        fielddisplay(self,'meltingrate','melting rate at given location [m/a]');
    5056
     
    5359                        yts=md.constants.yts;
    5460                        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);
    5764                end % }}}
    5865        end
Note: See TracChangeset for help on using the changeset viewer.