def netProductionRates(self, phase = None): w = _cantera.kin_getarray(self.ckin,70) if phase: kp = phase.thermophase() if self._phnum.has_key(kp): n = self._phnum[kp] return w[self._end[n]:self._end[n+1]] else: raise CanteraError('unknown phase') else: return w
def netProductionRates(self, phase=None): w = _cantera.kin_getarray(self.ckin, 70) if phase: kp = phase.thermophase() if self._phnum.has_key(kp): n = self._phnum[kp] return w[self._end[n]:self._end[n + 1]] else: raise CanteraError('unknown phase') else: return w
def fwdRateConstants(self): """Forward rate constants for all reactions.""" return _cantera.kin_getarray(self.ckin,34)
def activationEnergies(self): """Activation energies in Kelvin for all reactions.""" return _cantera.kin_getarray(self.ckin,32)
def equilibriumConstants(self): """Equilibrium constants in concentration units for all reactions.""" return _cantera.kin_getarray(self.ckin,40)
def netRatesOfProgress(self): """Net rates of progress of the reactions.""" return _cantera.kin_getarray(self.ckin,30)
def revRatesOfProgress(self): """Reverse rates of progress of the reactions.""" return _cantera.kin_getarray(self.ckin,20)
def fwdRatesOfProgress(self): """Forward rates of progress of the reactions.""" return _cantera.kin_getarray(self.ckin, 10)
def sourceTerms(self): return _cantera.kin_getarray(self.ckin,80)
def revRateConstants(self, doIrreversible=0): """Reverse rate constants for all reactions.""" if doIrreversible: return _cantera.kin_getarray(self.ckin, 35) else: return _cantera.kin_getarray(self.ckin, 36)
def fwdRateConstants(self): """Forward rate constants for all reactions.""" return _cantera.kin_getarray(self.ckin, 34)
def activationEnergies(self): """Activation energies in Kelvin for all reactions.""" return _cantera.kin_getarray(self.ckin, 32)
def equilibriumConstants(self): """Equilibrium constants in concentration units for all reactions.""" return _cantera.kin_getarray(self.ckin, 40)
def netRatesOfProgress(self): """Net rates of progress of the reactions.""" return _cantera.kin_getarray(self.ckin, 30)
def revRatesOfProgress(self): """Reverse rates of progress of the reactions.""" return _cantera.kin_getarray(self.ckin, 20)
def revRateConstants(self, doIrreversible = 0): """Reverse rate constants for all reactions.""" if doIrreversible: return _cantera.kin_getarray(self.ckin,35) else: return _cantera.kin_getarray(self.ckin,36)
def sourceTerms(self): return _cantera.kin_getarray(self.ckin, 80)
def fwdRatesOfProgress(self): """Forward rates of progress of the reactions.""" return _cantera.kin_getarray(self.ckin,10)
def delta_S0(self): return _cantera.kin_getarray(self.ckin,95)