Ignore:
Timestamp:
04/07/16 13:21:07 (9 years ago)
Author:
jbondzio
Message:

ADD: adding levelset class to model, in which options for levelset method can be stored. The class 'calving' now contains fields specific to the calving law used.

File:
1 edited

Legend:

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

    r20181 r20460  
    3535                        console.log(sprintf("%19s: %-22s -- %s","steadystate"     ,"[1x1 " + typeof(this.steadystate) + "]","parameters for steadystate solution"));
    3636                        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)"));
    3738                        console.log(sprintf("%19s: %-22s -- %s","calving"         ,"[1x1 " + typeof(this.calving) + "]","parameters for calving"));
    3839                        console.log(sprintf("%19s: %-22s -- %s","gia"             ,"[1x1 " + typeof(this.gia) + "]","parameters for gia solution"));
     
    7677                        this.steadystate      = new steadystate();
    7778                        this.trans            = new trans();
     79                        this.levelset                    = new levelset();
    7880                        this.calving          = new calving();
    7981                        this.gia              = new gia();
     
    142144                this.steadystate      = 0;
    143145                this.trans            = 0;
     146                this.levelset= 0;
    144147                this.calving          = 0;
    145148                this.gia              = 0;
Note: See TracChangeset for help on using the changeset viewer.