cantera/interfaces/python/Cantera/solids.py
Ray Speth 6cb4bd93ce Cleaned up whitespace in all Python files using reindent.py
4 spaces per indentation level, no tabs, no trailing whitespace,
and a single newline at end of each file.
2012-02-27 18:13:05 +00:00

13 lines
408 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)