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/model.js

    r21674 r21945  
    3838                        console.log(sprintf("//19s: //-22s -- //s","calving"         ,"[1x1 " + typeof(this.calving) + "]","parameters for calving"));
    3939                        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"));
    4041                        console.log(sprintf("//19s: //-22s -- //s","autodiff"        ,"[1x1 " + typeof(this.autodiff) + "]","automatic differentiation parameters"));
    4142                        console.log(sprintf("//19s: //-22s -- //s","inversion"       ,"[1x1 " + typeof(this.inversion) + "]","parameters for inverse methods"));
     
    7778                        this.steadystate      = new steadystate();
    7879                        this.trans            = new trans();
    79                         this.levelset             = new levelset();
     80                        this.levelset         = new levelset();
    8081                        this.calving          = new calving();
    8182                        this.gia              = new giaivins();
     83                        this.esa              = new esa();
    8284                        this.autodiff         = new autodiff();
    8385                        this.inversion        = new inversion();
    8486                        this.qmu              = new qmu();
    85                         this.amr                                        = new amr();
     87                        this.amr              = new amr();
    8688                        this.radaroverlay     = new radaroverlay();
    8789                        this.results          = {};
     
    610612                this.calving          = 0;
    611613                this.gia              = 0;
     614                this.esa              = 0;
    612615
    613616                this.autodiff         = 0;
    614617                this.inversion        = 0;
    615618                this.qmu              = 0;
    616                 this.amr                                        = 0;
     619                this.amr              = 0;
    617620
    618621                this.results          = 0;
Note: See TracChangeset for help on using the changeset viewer.