These changes make it unnecessary to copy header files around during the build process, which tends to confuse IDEs and debuggers. The headers which comprise Cantera's external C++ interface are now in the 'include' directory. All of the samples and demos are now in the 'samples' subdirectory.
14 lines
410 B
Python
Executable file
14 lines
410 B
Python
Executable file
"""This module defines classes and functions used to model gas mixtures."""
|
|
|
|
from solution import Solution
|
|
|
|
def Solid(src="",
|
|
kmodel=1, transport=None):
|
|
return Solution(import_file=import_file,
|
|
thermo_db="",
|
|
eos=0,
|
|
id=id,
|
|
kmodel=kmodel,
|
|
trmodel=transport,
|
|
validate=0)
|
|
|