Exemplo n.º 1
0
 def __init__(self, kaq=1, z=[1, 0], c=[], npor=0.3, top='conf', hstar=None):
     self.storeinput(inspect.currentframe())
     kaq, Haq, c, npor, ltype, aqnumber = param_maq(kaq, z, c, npor, top)
     ModelBase.__init__(self, kaq, Haq, c, z, npor, ltype, aqnumber)
     self.name = 'ModelMaq'
     if self.aq.ltype[0] == 'l':
         ConstantStar(self, hstar, aq=self.aq)
Exemplo n.º 2
0
 def __init__(self,
              kaq=1,
              z=[1, 0],
              c=[],
              npor=0.3,
              top='conf',
              hstar=None):
     self.storeinput(inspect.currentframe())
     kaq, Haq, c, npor, ltype = param_maq(kaq, z, c, npor, top)
     ModelBase.__init__(self, kaq, Haq, c, z, npor, ltype)
     self.name = 'ModelMaq'
     if self.aq.ltype[0] == 'l':
         ConstantStar(self, hstar, aq=self.aq)
Exemplo n.º 3
0
 def __init__(self,
              model,
              xy,
              kaq=1,
              z=[1, 0],
              c=[],
              npor=0.3,
              top='conf',
              hstar=None,
              order=3,
              ndeg=3):
     self.storeinput(inspect.currentframe())
     kaq, Haq, c, npor, ltype = param_maq(kaq, z, c, npor, top)
     PolygonInhom.__init__(self, model, xy, kaq, Haq, c, z, npor, ltype,
                           hstar, order, ndeg)
Exemplo n.º 4
0
 def __init__(self, model, xy, kaq=1, z=[1,0], c=[], npor=0.3, top='conf', hstar=None, order=3, ndeg=3):
     self.storeinput(inspect.currentframe())
     kaq, Haq, c, npor, ltype = param_maq(kaq, z, c, npor, top)
     PolygonInhom.__init__(self, model, xy, kaq, Haq, c, z, npor, ltype, hstar, order, ndeg)