cantera — Easy Examples
Chemical kinetics, thermodynamics, and transport processes
Getting started with cantera
Installation and basic usage of cantera.
python
# Install: conda install -c cantera cantera import cantera # Basic cantera usage print(f"Using cantera") # See documentation for detailed examples
Expected Output
# Expected output shown below # (Run locally with: cantera)
cantera is a third-party package. Chemical kinetics, thermodynamics, and transport processes. Install with: conda install -c cantera cantera
Common cantera operations
Frequently used features of cantera.
python
# Install: conda install -c cantera cantera import cantera # Common cantera patterns print(f"cantera version: {cantera.__version__}")
These are the most commonly used features of cantera in everyday development.
Want to try these examples interactively?
Open Easy Playground