elements.catalog.total_pressure_inlet

elements.catalog.total_pressure_inlet(
    pt,
    Tt,
    composition=None,
    basis='mole',
    name='pt-inlet',
    perturbation_bc=None,
    marker=0.0,
)

Prescribed total-pressure inlet feeding a stream of the given composition.

marker injects the burnt-marker value (0.0 fresh, default; 1.0 burnt – e.g. recirculated exhaust gas as a feed); see :func:mass_flow_inlet.

Parameters

Name Type Description Default
pt float Prescribed total (stagnation) pressure [Pa]. required
Tt float Total (stagnation) temperature [K] of the feed. required
composition dict or array_like What the inlet feeds; see :func:mass_flow_inlet (species mixture in "auto" mode, declared-stream blend in "declared" mode). None
basis (mole, mass) Units of composition’s amounts (default "mole"). "mole"
name str Element label. 'pt-inlet'
perturbation_bc PerturbationBC Acoustic termination; None inherits the linearized inlet reflection. None
marker float Injected burnt marker (0.0 fresh, default; 1.0 burnt); marker-gated networks only. 0.0

Returns

Name Type Description
ElementSpec
Back to top