Meco Transmission
Meco Transmission
Transmission components handle power transfer between machinery components. They model rotating shafts and gears that connect pumps, turbines, and other rotating equipment in rocket engine systems.
Overview
The Meco Rocket Simulator supports 2 transmission component types:
Component Type | Purpose | Key Parameters | Connections |
---|---|---|---|
Shaft | Primary rotating element | Rotor inertia properties | Machinery, Gears |
Gear | Speed/torque conversion | Teeth count, gear ratios | Other Gears |
Shaft
Overview
- Type:
Shaft
- Purpose: Primary rotating shaft that connects machinery and provides rotational inertia
- Modeling: Rotational dynamics with inertial properties
Parameters
- Basic Parameters:
name
- Component name (string)rotorLength
- Shaft length in meters (double)rotorRadius
- Shaft radius in meters (double)rotorDensity
- Material density in kg/m³ (double)
- Connection Parameters:
gears
- Array of connected gear names (array of strings)
Design Guidelines
Material Properties
- Steel Shafts: 7850 kg/m³ density, high strength
- Titanium Shafts: 4500 kg/m³ density, lighter weight
- Aluminum Shafts: 2700 kg/m³ density, lowest weight but limited strength
Sizing Considerations
- Length: Physical distance between connected components
- Radius: Sized for torque transmission and critical speed avoidance
- Inertia: Affects transient response and system stability
Critical Speed
Avoid operating near shaft critical speeds:
- First Critical: Typically avoid 70% of critical speed
- Flexible Shaft: Consider multiple critical speeds for long shafts
- Rigid Shaft: Operate well below first critical speed
Example JSON
{ "name": "LOX Transmission", "category": 4, "type": "Shaft", "rotorLength": 0.5, "rotorRadius": 0.03, "rotorDensity": 7850, "gears": ["Reduction Gear", "Output Gear"] }
Gear
Overview
- Type:
Gear
- Purpose: Speed and torque conversion between rotating components
- Modeling: Gear ratios, inertial properties, and mechanical connections
Parameters
- Basic Parameters:
name
- Component name (string)teeth
- Number of teeth (integer)rotorLength
- Gear face width in meters (double)module
- Gear module in meters (double)rotorDensity
- Material density in kg/m³ (double)
- Connection Parameters:
gears
- Array of connected gear names (array of strings)
Design Guidelines
Gear Ratios
Gear ratio between two gears = Teeth₂ / Teeth₁
- Speed Increase: Ratio > 1 (more teeth on driven gear)
- Speed Reduction: Ratio < 1 (fewer teeth on driven gear)
- Typical Ratios: 2:1 to 10:1 for single stage
Module Selection
Module defines gear tooth size:
- Fine Pitch: 0.001-0.003 m module for high-speed applications
- Medium Pitch: 0.003-0.008 m module for general applications
- Coarse Pitch: 0.008-0.020 m module for high-torque applications
Gear Sizing
- Pitch Diameter: teeth × module
- Face Width: Affects load capacity and gear life
- Material: Steel for strength, consider weight for aerospace applications
Example JSON
{ "name": "Reduction Gear", "category": 4, "type": "Gear", "teeth": 48, "rotorLength": 0.025, "module": 0.004, "rotorDensity": 7850, "gears": ["Output Gear"] }
Transmission System Design
Single Shaft Systems
Direct connection between pump and turbine:
- Advantages: Simple, reliable, minimal losses
- Disadvantages: Fixed speed ratio, limited optimization
- Applications: Gas generator cycles, simple configurations
Geared Systems
Multiple shafts connected through gears:
- Advantages: Speed optimization, multiple power take-offs
- Disadvantages: Complexity, additional losses, weight
- Applications: Staged combustion cycles, auxiliary drives
Speed Optimization
- Pump Speed: Optimize for flow and head requirements
- Turbine Speed: Optimize for gas flow and efficiency
- Gear Ratio: Match pump and turbine optimal speeds
Inertial Effects
- System Inertia: Sum of all rotating component inertias
- Transient Response: Higher inertia slows acceleration/deceleration
- Stability: Affects control system design and governor response
Connection Hierarchy
Shaft Connections
Shafts connect to:
- Machinery components (pumps, turbines)
- Gears for speed/torque conversion
- Other transmission components
Gear Connections
Gears connect to:
- Other Gears for multi-stage reduction/multiplication
- Must ultimately connect to a Shaft for machinery attachment
Connection Rules
- All machinery must connect to a shaft
- Gears can connect to other gears or shafts
- Connection topology must form valid mechanical system
- Avoid circular dependencies in gear trains
Performance Considerations
Efficiency
- Shaft Bearings: 99-99.5% efficiency per bearing set
- Gear Meshes: 96-99% efficiency per mesh
- System Efficiency: Product of all component efficiencies
Losses
- Bearing Friction: Function of speed and load
- Gear Mesh Losses: Sliding friction and churning
- Windage: Air resistance at high speeds
- Oil Churning: Viscous losses in lubrication system
Reliability
- Fatigue Life: Consider stress cycles and material limits
- Lubrication: Essential for bearing and gear life
- Contamination: Protect from propellant and combustion products
- Thermal Effects: Account for temperature variations
Common Configurations
Direct Drive
Turbine → Shaft → Pump
- Simple, reliable configuration
- Fixed speed ratio
- Used in gas generator cycles
Single Reduction
Turbine → Shaft → Gear → Gear → Shaft → Pump
- Allows speed optimization
- Single gear reduction stage
- Common in rocket applications
Multiple Shaft
Turbine₁ → Shaft₁ → Gear₁ ↘ → Main Gear → Main Shaft → Main Pump Turbine₂ → Shaft₂ → Gear₂ ↗
- Multiple power sources
- Complex but flexible
- Used in staged combustion cycles
Design Process
- Power Requirements: Determine pump power needs
- Speed Requirements: Optimize pump and turbine speeds
- Gear Ratios: Calculate required speed ratios
- Shaft Sizing: Size for torque and critical speeds
- Gear Sizing: Size for torque capacity and life
- Integration: Verify mechanical packaging and connections
See Also
- Main Components Overview
- Machinery Components
- Control Parameters
- Mechanical Design Reference
- Gear Design Guidelines
- Shaft Critical Speed Analysis