Changeset 21945 for issm/trunk-jpl/src/m/classes/model.js
- Timestamp:
- 08/12/17 12:23:09 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/model.js
r21674 r21945 38 38 console.log(sprintf("//19s: //-22s -- //s","calving" ,"[1x1 " + typeof(this.calving) + "]","parameters for calving")); 39 39 console.log(sprintf("//19s: //-22s -- //s","gia" ,"[1x1 " + typeof(this.gia) + "]","parameters for gia solution")); 40 console.log(sprintf("//19s: //-22s -- //s","esa" ,"[1x1 " + typeof(this.esa) + "]","parameters for elastic adjustment solution")); 40 41 console.log(sprintf("//19s: //-22s -- //s","autodiff" ,"[1x1 " + typeof(this.autodiff) + "]","automatic differentiation parameters")); 41 42 console.log(sprintf("//19s: //-22s -- //s","inversion" ,"[1x1 " + typeof(this.inversion) + "]","parameters for inverse methods")); … … 77 78 this.steadystate = new steadystate(); 78 79 this.trans = new trans(); 79 this.levelset 80 this.levelset = new levelset(); 80 81 this.calving = new calving(); 81 82 this.gia = new giaivins(); 83 this.esa = new esa(); 82 84 this.autodiff = new autodiff(); 83 85 this.inversion = new inversion(); 84 86 this.qmu = new qmu(); 85 this.amr 87 this.amr = new amr(); 86 88 this.radaroverlay = new radaroverlay(); 87 89 this.results = {}; … … 610 612 this.calving = 0; 611 613 this.gia = 0; 614 this.esa = 0; 612 615 613 616 this.autodiff = 0; 614 617 this.inversion = 0; 615 618 this.qmu = 0; 616 this.amr 619 this.amr = 0; 617 620 618 621 this.results = 0;
Note:
See TracChangeset
for help on using the changeset viewer.