Turbine (Isentropic)

This is a steam power generation turbine model for the basic isentropic turbine calculations. It is the basis of the TurbineInletStage, TurbineOutletStage <reference_guides/model_libraries/power_generation/unit_models/turbine_inlet:Turbine (Outlet Stage)>, and, TurbineOutletStage <reference_guides/model_libraries/power_generation/unit_models/turbine_inlet:Turbine (Stage)> models.

Variables

Variable

Symbol

Index Sets

Doc

efficiency_isentropic

\(\eta_{isen}\)

time

Isentropic efficiency

deltaP

\(\Delta P\)

time

Pressure change (\(P_{out} - P_{in}\)) [Pa]

ratioP

\(P_{ratio}\)

time

Ratio of discharge pressure to inlet pressure \(\left(\frac{P_{out}}{P_{in}}\right)\)

Expressions

This model provides two expressions that are not available in the pressure changer model.

Expression

Symbol

Index Sets

Doc

h_is

\(h_{is}\)

time

Isentropic outlet molar enthalpy [J/mol]

delta_enth_isentropic

\(\Delta h_{is}\)

time

Isentropic enthalpy change (\(h_{is} - h_{in}\)) [J/mol]

work_isentropic

\(w_{is}\)

time

Isentropic work (W)

Constraints

In addition to the mass and energy balances provided by the control volume the following equation is used to calculate the outlet enthalpy, so work comes from the control volume energy balance.

\[h_{out} = h_{in} - \eta_{is}\left(h_{in} - h_{is}\right)\]

Initialization

To initialize the turbine model, a reasonable guess for the inlet condition and deltaP and efficiency should be set by setting the appropriate variables.

TurbineStage Class

class idaes.power_generation.unit_models.helm.turbine.HelmIsentropicTurbine(*args, **kwds)
Parameters
  • rule (function) – A rule function or None. Default rule calls build().

  • concrete (bool) – If True, make this a toplevel model. Default - False.

  • ctype (class) – Pyomo ctype of the block. Default - pyomo.environ.Block

  • default (dict) –

    Default ProcessBlockData config

    Keys
    dynamic

    Indicates whether this model will be dynamic or not, default = useDefault. Valid values: { useDefault - get flag from parent (default = False), True - set as a dynamic model, False - set as a steady-state model.}

    has_holdup

    Indicates whether holdup terms should be constructed or not. Must be True if dynamic = True, default - False. Valid values: { useDefault - get flag from parent (default = False), True - construct holdup terms, False - do not construct holdup terms}

    material_balance_type

    Indicates what type of mass balance should be constructed, default - MaterialBalanceType.useDefault. Valid values: { MaterialBalanceType.useDefault - refer to property package for default balance type **MaterialBalanceType.none - exclude material balances, MaterialBalanceType.componentPhase - use phase component balances, MaterialBalanceType.componentTotal - use total component balances, MaterialBalanceType.elementTotal - use total element balances, MaterialBalanceType.total - use total material balance.}

    energy_balance_type

    Indicates what type of energy balance should be constructed, default - EnergyBalanceType.useDefault. Valid values: { EnergyBalanceType.useDefault - refer to property package for default balance type **EnergyBalanceType.none - exclude energy balances, EnergyBalanceType.enthalpyTotal - single enthalpy balance for material, EnergyBalanceType.enthalpyPhase - enthalpy balances for each phase, EnergyBalanceType.energyTotal - single energy balance for material, EnergyBalanceType.energyPhase - energy balances for each phase.}

    momentum_balance_type

    Indicates what type of momentum balance should be constructed, default - MomentumBalanceType.pressureTotal. Valid values: { MomentumBalanceType.none - exclude momentum balances, MomentumBalanceType.pressureTotal - single pressure balance for material, MomentumBalanceType.pressurePhase - pressure balances for each phase, MomentumBalanceType.momentumTotal - single momentum balance for material, MomentumBalanceType.momentumPhase - momentum balances for each phase.}

    has_phase_equilibrium

    Indicates whether terms for phase equilibrium should be constructed, default = False. Valid values: { True - include phase equilibrium terms False - exclude phase equilibrium terms.}

    has_pressure_change

    Indicates whether terms for pressure change should be constructed, default - False. Valid values: { True - include pressure change terms, False - exclude pressure change terms.}

    property_package

    Property parameter object used to define property calculations, default - useDefault. Valid values: { useDefault - use default package from parent model or flowsheet, PropertyParameterObject - a PropertyParameterBlock object.}

    property_package_args

    A ConfigBlock with arguments to be passed to a property block(s) and used when constructing these, default - None. Valid values: { see property package for documentation.}

    has_work_transfer

    True if model a has work transfer term.

    has_heat_transfer

    True if model has a heat transfer term.

  • initialize (dict) – ProcessBlockData config for individual elements. Keys are BlockData indexes and values are dictionaries described under the “default” argument above.

  • idx_map (function) – Function to take the index of a BlockData element and return the index in the initialize dict from which to read arguments. This can be provided to overide the default behavior of matching the BlockData index exactly to the index in initialize.

Returns

(HelmIsentropicTurbine) New instance

TurbineStageData Class

class idaes.power_generation.unit_models.helm.turbine.HelmIsentropicTurbineData(component)[source]

Basic isentropic 0D turbine model. This inherits the heater block to get a lot of unit model boilerplate and the mass balance, enegy balance and pressure equations. This model is intended to be used only with Helmholtz EOS property pacakges in mixed or single phase mode with P-H state vars.

Since this inherits BalanceBlockData, and only operates in steady-state or pseudo-steady-state (for dynamic models) the following mass, energy and pressure equations are implicitly writen.

  1. Mass Balance:

    0 = flow_mol_in[t] - flow_mol_out[t]

  2. Energy Balance:

    0 = (flow_mol[t]*h_mol[t])_in - (flow_mol[t]*h_mol[t])_out + Q_in + W_in

  3. Pressure:

    0 = P_in[t] + deltaP[t] - P_out[t]

build()[source]

Add model equations to the unit model. This is called by a default block construnction rule when the unit model is created.

initialize(outlvl=0, solver=None, optarg=None)[source]

For simplicity this initialization requires you to set values for the efficency, inlet, and one of pressure ratio, pressure change or outlet pressure.