cantera/interfaces/cython/cantera/_cantera.pyx
Ray Speth 606a18e951 [Cython/Thermo] Add mass/mole_fraction_dict methods
This complements the ability to set the composition using a dict when working
with phases with different sets of species.
2014-09-18 22:59:02 +00:00

25 lines
475 B
Cython

#cython: embedsignature=True
#distutils: language = c++
import numpy as np
cimport numpy as np
import math
from cython.operator cimport dereference as deref, preincrement as inc
from _cantera cimport *
include "utils.pyx"
include "constants.pyx"
include "func1.pyx"
include "base.pyx"
include "thermo.pyx"
include "kinetics.pyx"
include "transport.pyx"
include "composite.pyx"
include "mixture.pyx"
include "reactor.pyx"
include "onedim.pyx"
include "reactionpath.pyx"