Ignore:
Timestamp:
08/12/17 12:23:09 (8 years ago)
Author:
dlcheng
Message:

CHG: Updating model.js with esa and amr fields. Updating friction.js with coupling and effective_pressure handling.

File:
1 edited

Legend:

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

    r21802 r21945  
    1515                this.isgroundingline   = 0;
    1616                this.isgia             = 0;
     17                this.isesa             = 0;
    1718                this.isdamageevolution = 0;
    1819                this.ismovingfront     = 0;
     
    3637                fielddisplay(this,'isgroundingline','indicates whether a groundingline migration is used in the transient');
    3738                fielddisplay(this,'isgia','indicates whether a postglacial rebound model is used in the transient');
     39                fielddisplay(this,'isesa','indicates whether an elastic adjustment model is used in the transient');
    3840                fielddisplay(this,'isdamageevolution','indicates whether damage evolution is used in the transient');
    3941                fielddisplay(this,'ismovingfront','indicates whether a moving front capability is used in the transient');
     
    6062                        checkfield(md,'fieldname','trans.isgroundingline','numel',[1],'values',[0, 1]);
    6163                        checkfield(md,'fieldname','trans.isgia','numel',[1],'values',[0, 1]);
     64                        checkfield(md,'fieldname','trans.isesa','numel',[1],'values',[0, 1]);
    6265                        checkfield(md,'fieldname','trans.isdamageevolution','numel',[1],'values',[0, 1]);
    6366                        checkfield(md,'fieldname','trans.ismovingfront','numel',[1],'values',[0, 1]);
     
    7780                        WriteData(fid,prefix,'object',this,'fieldname','isgroundingline','format','Boolean');
    7881                        WriteData(fid,prefix,'object',this,'fieldname','isgia','format','Boolean');
     82                        WriteData(fid,prefix,'object',this,'fieldname','isesa','format','Boolean');
    7983                        WriteData(fid,prefix,'object',this,'fieldname','isdamageevolution','format','Boolean');
    8084                        WriteData(fid,prefix,'object',this,'fieldname','ishydrology','format','Boolean');
     
    110114        this.isgroundingline   = 0;
    111115        this.isgia             = 0;
     116        this.isesa             = 0;
    112117        this.isdamageevolution = 0;
    113118        this.ismovingfront     = 0;
Note: See TracChangeset for help on using the changeset viewer.