Stream#

class ansys.chemkin.core.inlet.Stream(chem, label: str | None = None)#

Bases: ansys.chemkin.core.mixture.Mixture

Generic inlet stream object for Chemkin open reactor models.

Overview#

convert_to_mass_flowrate

Convert different types of flow rate value to mass flow rate.

convert_to_vol_flowrate

Convert different types of flow rate value to volumetric flow rate.

convert_to_sccm

Convert different types of flow rate value to SCCM.

flowarea

Get inlet flow area.

mass_flowrate

Get inlet mass flow rate.

vol_flowrate

Get inlet volumetric flow rate.

sccm

Get inlet SCCM volumetric flow rate.

velocity

Get inlet gas velocity.

velocity_gradient

Get inlet gas axial velocity gradient.

label

Get the label of the Stream.

Import detail#

from ansys.chemkin.core.inlet import Stream

Property detail#

property Stream.flowarea: float#

Get inlet flow area.

property Stream.mass_flowrate: float#

Get inlet mass flow rate.

property Stream.vol_flowrate: float#

Get inlet volumetric flow rate.

property Stream.sccm: float#

Get inlet SCCM volumetric flow rate.

property Stream.velocity: float#

Get inlet gas velocity.

property Stream.velocity_gradient: float#

Get inlet gas axial velocity gradient.

property Stream.label: str#

Get the label of the Stream.

Method detail#

Stream.convert_to_mass_flowrate() float#

Convert different types of flow rate value to mass flow rate.

Stream.convert_to_vol_flowrate() float#

Convert different types of flow rate value to volumetric flow rate.

Stream.convert_to_sccm() float#

Convert different types of flow rate value to SCCM.