cantera/Cantera/python/Cantera/solids.py
2003-04-14 17:57:48 +00:00

14 lines
424 B
Python
Executable file

"""This module defines classes and functions used to model gas mixtures."""
from solution import Solution
def Solid(import_file="", id="",
kmodel=1, transport=None):
return Solution(import_file=import_file,
thermo_db="",
eos=0,
id=id,
kmodel=kmodel,
trmodel=transport,
validate=0)