Stage#

class Stage#

A single stage of a vessel. Obtain activation (burn) stages from Vessel.Stages / Vessel.StageAt, and decouple stages from Vessel.DecoupleStages / Vessel.DecoupleStageAt.

Note

Delta-v, thrust, TWR, specific impulse, burn time and mass members are only available on activation stages. On decouple stages those members throw InvalidOperationException because stock delta-v data does not apply. Thrust is reported in newtons and masses in kilograms (stock values are converted from kilonewtons and tonnes).

int32_t number()#

The stage number (activation stage for burn stages, decouple stage otherwise).

std::vector<Part> parts()#

The parts that belong to this stage.

Resources resources(bool cumulative = true)#

Returns a Stage::resources() object for this stage.

Parameters:
  • cumulative – When false, only resources assigned to this stage. When true, resources for this stage and all later activation or decouple stage numbers are included. On activation stages, unstaged resource containers (for example fuel tanks) are grouped with the first higher activation stage before they are detached. Defaults to true so decouple-stage calls match the legacy Vessel.ResourcesInDecoupleStage RPC.

Note

This is an RPC method: call resources() (optional cumulative argument). The default cumulative=true matches the legacy Vessel::resources_in_decouple_stage() RPC. For decouple stages, grouping is the same as that deprecated method. For activation stages, unstaged resource containers (for example fuel tanks) are grouped with the first higher activation stage before they detach, matching the C# Resources() documentation.

float delta_v()#

Delta-v for this stage in the current situation, in m/s.

Note

Delta-v is only defined for activation stages (decouple is false). Calling this on a decouple stage raises an error.

float vacuum_delta_v()#

Vacuum delta-v for this stage, in m/s.

float sea_level_delta_v()#

Sea-level delta-v for this stage, in m/s.

float thrust()#

Thrust in the current situation, in newtons.

float vacuum_thrust()#

Vacuum thrust, in newtons.

float sea_level_thrust()#

Sea-level thrust, in newtons.

float twr()#

Thrust-to-weight ratio in the current situation.

float vacuum_twr()#

Vacuum thrust-to-weight ratio.

float sea_level_twr()#

Sea-level thrust-to-weight ratio.

float specific_impulse()#

Specific impulse in the current situation, in seconds.

float vacuum_specific_impulse()#

Vacuum specific impulse, in seconds.

float sea_level_specific_impulse()#

Sea-level specific impulse, in seconds.

float burn_time()#

Burn time for this stage, in seconds.

float start_mass()#

Start mass for this stage, in kg.

float end_mass()#

End mass for this stage, in kg.

float dry_mass()#

Dry mass for this stage, in kg.

float fuel_mass()#

Fuel mass for this stage, in kg.