Changeset 20807


Ignore:
Timestamp:
06/24/16 15:30:41 (9 years ago)
Author:
ayfeng
Message:

CHG: Implement extrude for flow equation

Location:
issm/trunk-jpl
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/jenkins/javascript/karma/karma.conf.js

    r20806 r20807  
    2828      'lib/bin/SMBforcing.js',
    2929      'lib/bin/initialization.js',
     30      'lib/bin/flowequation.js',
    3031      'lib/bin/project3d.js',
    3132      'lib/bin/model.js',
  • TabularUnified issm/trunk-jpl/src/m/classes/flowequation.js

    r20777 r20807  
    3838
    3939        }// }}}
     40    this.extrude = function(md) {
     41        this.element_equation=project3d(md,'vector',this.element_equation,'type','element');
     42        this.vertex_equation=project3d(md,'vector',this.vertex_equation,'type','node');
     43        this.borderSSA=project3d(md,'vector',this.borderSSA,'type','node');
     44        this.borderHO=project3d(md,'vector',this.borderHO,'type','node');
     45        this.borderFS=project3d(md,'vector',this.borderFS,'type','node');
     46        return this;
     47    }
    4048                this.checkconsistency = function(md,solution,analyses) {//{{{
    4149
Note: See TracChangeset for help on using the changeset viewer.