Ignore:
Timestamp:
03/25/12 11:12:41 (13 years ago)
Author:
Eric.Larour
Message:

New classes in python

Location:
issm/trunk-jpl/src/py/classes
Files:
9 added
1 edited

Legend:

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

    r11792 r11794  
    1919from balancethickness import balancethickness
    2020from diagnostic import diagnostic
     21from groundingline import groundingline
     22from hydrology import hydrology
     23from prognostic import prognostic
     24from thermal import thermal
     25from steadystate import steadystate
     26from transient import transient
     27from autodiff import autodiff
     28from flaim import flaim
     29from inversion import inversion
    2130#}}}
    2231class model:
     
    4554                self.balancethickness = balancethickness()
    4655                self.diagnostic       = diagnostic()
    47                 self.groundingline    = [];
    48                 self.hydrology        = [];
    49                 self.prognostic       = [];
    50                 self.thermal          = [];
    51                 self.steadystate      = [];
    52                 self.transient        = [];
     56                self.groundingline    = groundingline()
     57                self.hydrology        = hydrology()
     58                self.prognostic       = prognostic()
     59                self.thermal          = thermal()
     60                self.steadystate      = steadystate()
     61                self.transient        = transient()
    5362
    54                 self.autodiff         = [];
    55                 self.flaim            = [];
    56                 self.inversion        = [];
     63                self.autodiff         = autodiff()
     64                self.flaim            = flaim()
     65                self.inversion        = inversion()
    5766                self.qmu              = [];
    5867
Note: See TracChangeset for help on using the changeset viewer.