RocketEngines

Definition

type RocketEngines {
  engine_loss_max: String
  layout: String
  number: Int
  propellant_1: String
  propellant_2: String
  thrust_sea_level: Force
  thrust_to_weight: Float
  thrust_vacuum: Force
  type: String
  version: String
}

Fields

engine_loss_max

layout

number

Int

propellant_1

propellant_2

thrust_sea_level

thrust_to_weight

thrust_vacuum

type

version

Example

RocketEngines.json
{
  "engine_loss_max": "Some string",
  "layout": "Some string",
  "number": 12345,
  "propellant_1": "Some string",
  "propellant_2": "Some string",
  "thrust_sea_level": Force,
  "thrust_to_weight": 123.45,
  "thrust_vacuum": Force,
  "type": "Some string",
  "version": "Some string"
}