예제 #1
0
 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
예제 #2
0
 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
예제 #3
0
 def fwdRateConstants(self):
     """Forward rate constants for all reactions."""
     return _cantera.kin_getarray(self.ckin,34)
예제 #4
0
 def activationEnergies(self):
     """Activation energies in Kelvin for all reactions."""
     return _cantera.kin_getarray(self.ckin,32)
예제 #5
0
 def equilibriumConstants(self):
     """Equilibrium constants in concentration units for all reactions."""
     return _cantera.kin_getarray(self.ckin,40)
예제 #6
0
 def netRatesOfProgress(self):
     """Net rates of progress of the reactions."""
     return _cantera.kin_getarray(self.ckin,30)
예제 #7
0
 def revRatesOfProgress(self):
     """Reverse rates of progress of the reactions."""
     return _cantera.kin_getarray(self.ckin,20)
예제 #8
0
 def fwdRatesOfProgress(self):
     """Forward rates of progress of the reactions."""
     return _cantera.kin_getarray(self.ckin, 10)
예제 #9
0
 def sourceTerms(self):
     return _cantera.kin_getarray(self.ckin,80)
예제 #10
0
 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)
예제 #11
0
 def fwdRateConstants(self):
     """Forward rate constants for all reactions."""
     return _cantera.kin_getarray(self.ckin, 34)
예제 #12
0
 def activationEnergies(self):
     """Activation energies in Kelvin for all reactions."""
     return _cantera.kin_getarray(self.ckin, 32)
예제 #13
0
 def equilibriumConstants(self):
     """Equilibrium constants in concentration units for all reactions."""
     return _cantera.kin_getarray(self.ckin, 40)
예제 #14
0
 def netRatesOfProgress(self):
     """Net rates of progress of the reactions."""
     return _cantera.kin_getarray(self.ckin, 30)
예제 #15
0
 def revRatesOfProgress(self):
     """Reverse rates of progress of the reactions."""
     return _cantera.kin_getarray(self.ckin, 20)
예제 #16
0
 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)
예제 #17
0
 def sourceTerms(self):
     return _cantera.kin_getarray(self.ckin, 80)
예제 #18
0
 def fwdRatesOfProgress(self):
     """Forward rates of progress of the reactions."""
     return _cantera.kin_getarray(self.ckin,10)
예제 #19
0
 def delta_S0(self):
     return _cantera.kin_getarray(self.ckin,95)
예제 #20
0
 def delta_S0(self):
     return _cantera.kin_getarray(self.ckin,95)