Changeset 20460 for issm/trunk-jpl/src/m/classes/model.js
- Timestamp:
- 04/07/16 13:21:07 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/model.js
r20181 r20460 35 35 console.log(sprintf("%19s: %-22s -- %s","steadystate" ,"[1x1 " + typeof(this.steadystate) + "]","parameters for steadystate solution")); 36 36 console.log(sprintf("%19s: %-22s -- %s","trans" ,"[1x1 " + typeof(this.trans) + "]","parameters for trans solution")); 37 console.log(sprintf("%19s: %-22s -- %s","levelset" ,"[1x1 " + typeof(this.levelset) + "]","parameters for moving boundaries (level-set method)")); 37 38 console.log(sprintf("%19s: %-22s -- %s","calving" ,"[1x1 " + typeof(this.calving) + "]","parameters for calving")); 38 39 console.log(sprintf("%19s: %-22s -- %s","gia" ,"[1x1 " + typeof(this.gia) + "]","parameters for gia solution")); … … 76 77 this.steadystate = new steadystate(); 77 78 this.trans = new trans(); 79 this.levelset = new levelset(); 78 80 this.calving = new calving(); 79 81 this.gia = new gia(); … … 142 144 this.steadystate = 0; 143 145 this.trans = 0; 146 this.levelset= 0; 144 147 this.calving = 0; 145 148 this.gia = 0;
Note:
See TracChangeset
for help on using the changeset viewer.