def __init__(self, src="", id="", loglevel=0, debug=0): self.ckin = 0 self._owner = 0 self.verbose = 1 fname = os.path.basename(src) ff = os.path.splitext(fname) if src: root = XML.XML_Node(name="doc", src=src, preprocess=1, debug=debug) if id: s = root.child(id=id) else: s = root.child(name="phase") self._name = s["id"] # initialize the equation of state ThermoPhase.__init__(self, xml_phase=s) # initialize the kinetics model ph = [self] Kinetics.__init__(self, xml_phase=s, phases=ph) # initialize the transport model Transport.__init__(self, xml_phase=s, phase=self, model="", loglevel=loglevel)
def __init__(self, src="", id="", loglevel=0, debug=0): self.ckin = 0 self._owner = 0 self.verbose = 1 fname = os.path.basename(src) ff = os.path.splitext(fname) if src: root = XML.XML_Node(name='doc', src=src, preprocess=1, debug=debug) if id: s = root.child(id=id) else: s = root.child(name="phase") self._name = s['id'] # initialize the equation of state ThermoPhase.__init__(self, xml_phase=s) # initialize the kinetics model ph = [self] Kinetics.__init__(self, xml_phase=s, phases=ph) # initialize the transport model Transport.__init__(self, xml_phase=s, phase=self, model='', loglevel=loglevel)
def __init__(self, src="", root=None): self.ckin = 0 self._owner = 0 self.verbose = 1 # get the 'phase' element s = XML.find_XML(src=src, root=root, name="phase") # get the equation of state model ThermoPhase.__init__(self, xml_phase=s) # get the kinetics model Kinetics.__init__(self, xml_phase=s, phases=[self]) SolidTransport.__init__(self, phase=self)
def __init__(self, src="", id=""): self.ckin = 0 self._owner = 0 self.verbose = 1 fname = os.path.basename(src) ff = os.path.splitext(fname) if src: root = XML.XML_Node(name = 'doc', src = src, preprocess = 1) if id: s = root.child(id = id) else: s = root.child(name = "phase") self._name = s['id'] # initialize the equation of state ThermoPhase.__init__(self, xml_phase=s)
def __init__(self, src="", id=""): self.ckin = 0 self._owner = 0 self.verbose = 1 fname = os.path.basename(src) ff = os.path.splitext(fname) if src: root = XML.XML_Node(name='doc', src=src, preprocess=1) if id: s = root.child(id=id) else: s = root.child(name="phase") self._name = s['id'] # initialize the equation of state ThermoPhase.__init__(self, xml_phase=s)
def __init__(self, xml_phase=None, index=-1): ThermoPhase.__init__(self, xml_phase=xml_phase, index=index)