Changeset 19759
- Timestamp:
- 11/18/15 22:31:02 (9 years ago)
- Location:
- issm/trunk-jpl/src/m
- Files:
-
- 17 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/SMBforcing.js
r19753 r19759 13 13 fielddisplay(this,'requested_outputs','additional outputs requested'); 14 14 } // }}} 15 this.initialize = function(md) {// {{{ 16 17 if (self.mass_balance === NaN){ 18 self.mass_balance=NewArrayFill(md.mesh.numberofvertices,0); 19 console.log(' no smb.mass_balance specified: values set as zero'); 20 } 21 22 } // }}} 15 23 //properties 16 24 this.mass_balance = NaN; -
issm/trunk-jpl/src/m/classes/basalforcings.js
r19753 r19759 17 17 18 18 } // }}} 19 this.initialize = function (md){ // {{{ 20 21 if (this.groundedice_melting_rate === NaN){ 22 this.groundedice_melting_rate=NewArrayFill(md.mesh.numberofvertices,0); 23 console.log(' no basalforcings.groundedice_melting_rate specified: values set as zero'); 24 } 25 26 if (this.floatingice_melting_rate === NaN){ 27 this.floatingice_melting_rate=NewArrayFill(md.mesh.numberofvertices,0); 28 console.log(' no basalforcings.floatingice_melting_rate specified: values set as zero'); 29 } 30 31 } // }}} 19 32 //properties 20 33 //{{{ -
issm/trunk-jpl/src/m/classes/model.js
r19753 r19759 66 66 this.settings = new settings(); 67 67 this.toolkits = new toolkits(); 68 this.toolkits.disp();69 68 this.cluster = new generic(); 70 69 this.balancethickness = new balancethickness(); -
issm/trunk-jpl/src/m/classes/stressbalance.js
r19753 r19759 93 93 this.loadingforce = NaN; 94 94 this.requested_outputs = [''] 95 95 96 this.setdefaultparameters(); 96 97 //}}} -
issm/trunk-jpl/src/m/plot/processdata.js
r19741 r19759 15 15 16 16 //check format 17 if ( data.length ==0 | data === [] | typeof data === 'number' | ArrayAnyNaN(data)){17 if ( data.length ==0 | data === [] | typeof data === 'number' | data === NaN ){ 18 18 throw Error('plotmodel error message: data provided is empty'); 19 19 }
Note:
See TracChangeset
for help on using the changeset viewer.