source: issm/trunk-jpl/src/m/classes/clusters/local.js

Last change on this file was 19793, checked in by Eric.Larour, 9 years ago

CHG: finished first prototype of running stressbalance in javascript. Need to now process the output buffers
through loadresultsfromcluster.

File size: 460 bytes
Line 
1//LOCAL cluster class definition
2//
3// Usage:
4// local=new local();
5
6function local (){
7 //methods
8 this.setdefaultparameters = function(){// {{{
9 }// }}}
10 this.disp= function(){// {{{
11 console.log(sprintf(' local cluster class echo: []'));
12 }// }}}
13 this.classname= function(){// {{{
14 return "local";
15 }// }}}
16 this.checkconsistency = function (md,solution,analyses) { //{{{
17 } //}}}
18 //properties
19 // {{{
20 this.setdefaultparameters();
21 //}}}
22}
Note: See TracBrowser for help on using the repository browser.