|
| 1 | +# MECHANICAL_EFFICIENCY |
| 2 | + |
| 3 | +[MODELS](/about/references/MODELS.md) / |
| 4 | +[MECHANICAL_EFFICIENCY](/about/references/MECHANICAL_EFFICIENCY.md) |
| 5 | + |
| 6 | +## Description |
| 7 | + |
| 8 | +`MECHANICAL_EFFICIENCY` defines the ratio of useful mechanical work output to the total mechanical work input for the compressor drivetrain. It accounts for power losses in bearings, gearboxes, seals, and couplings. |
| 9 | + |
| 10 | +The mechanical efficiency is used to calculate the shaft power required from the driver: |
| 11 | + |
| 12 | +$$ |
| 13 | +P_{shaft} = \frac{P_{gas}}{\eta_{mechanical}} |
| 14 | +$$ |
| 15 | + |
| 16 | +Where: |
| 17 | +- $P_{shaft}$ is the shaft power (input from driver) in MW |
| 18 | +- $P_{gas}$ is the gas power (thermodynamic work on gas) in MW |
| 19 | +- $\eta_{mechanical}$ is the mechanical efficiency (0 < η ≤ 1) |
| 20 | + |
| 21 | +## Format |
| 22 | + |
| 23 | +~~~~yaml |
| 24 | +MODELS: |
| 25 | + - NAME: <compressor train name> |
| 26 | + TYPE: <VARIABLE_SPEED_COMPRESSOR_TRAIN | SINGLE_SPEED_COMPRESSOR_TRAIN | SIMPLIFIED_VARIABLE_SPEED_COMPRESSOR_TRAIN | VARIABLE_SPEED_COMPRESSOR_TRAIN_MULTIPLE_STREAMS_AND_PRESSURES> |
| 27 | + MECHANICAL_EFFICIENCY: <value> # Optional, default 1.0 |
| 28 | + ... |
| 29 | +~~~~ |
| 30 | + |
| 31 | +## Example |
| 32 | + |
| 33 | +~~~~yaml |
| 34 | +MODELS: |
| 35 | + - NAME: export_compressor |
| 36 | + TYPE: VARIABLE_SPEED_COMPRESSOR_TRAIN |
| 37 | + MECHANICAL_EFFICIENCY: 0.95 # 95% efficiency, 5% losses |
| 38 | + FLUID_MODEL: medium_gas |
| 39 | + COMPRESSOR_TRAIN: |
| 40 | + STAGES: |
| 41 | + - INLET_TEMPERATURE: 30 |
| 42 | + COMPRESSOR_CHART: compressor_chart_ref |
| 43 | +~~~~ |
| 44 | + |
| 45 | +## Value Range |
| 46 | + |
| 47 | +| Constraint | Value | Description | |
| 48 | +|------------|-------|-------------| |
| 49 | +| Minimum | > 0 | Must be positive (exclusive) | |
| 50 | +| Maximum | ≤ 1.0 | Cannot exceed 100% efficiency | |
| 51 | +| Default | 1.0 | No mechanical losses (ideal drivetrain) | |
| 52 | + |
| 53 | +### Typical Values |
| 54 | + |
| 55 | +| Drive Configuration | Typical Range | Typical Losses | Notes | |
| 56 | +|---------------------|---------------|----------------|-------| |
| 57 | +| Direct drive | 0.96 - 0.98 | 2-4% | Bearings (1-2%) + seals/couplings (1-2%) | |
| 58 | +| With gearbox | 0.93 - 0.96 | 4-7% | Adds gearbox losses (2-3%) | |
| 59 | + |
| 60 | +:::note |
| 61 | +These are approximate ranges for the **total** mechanical efficiency of the drive train. The actual value depends on equipment design, operating conditions, and manufacturer data. A typical default of ~0.95 (5% losses) covers a common configuration with gearbox. |
| 62 | +::: |
| 63 | + |
| 64 | +## Physical Interpretation |
| 65 | + |
| 66 | +The mechanical efficiency accounts for power losses in the drivetrain between |
| 67 | +the driver (motor/turbine) and the compressor, including: |
| 68 | + |
| 69 | +- **Bearing losses**: Friction in shaft support bearings |
| 70 | +- **Gearbox losses**: Friction and churning in gear systems (if present) |
| 71 | +- **Seal and coupling losses**: Minor friction in auxiliary components |
| 72 | + |
| 73 | +:::note Constant efficiency assumption |
| 74 | +In reality, frictional losses scale approximately with the square of rotational speed. |
| 75 | +However, eCalc assumes a **constant** mechanical efficiency across all operating points. |
| 76 | +Choose a representative value for typical operating conditions, or consult vendor data |
| 77 | +for the expected speed range. |
| 78 | +::: |
| 79 | + |
| 80 | +## See Also |
| 81 | + |
| 82 | +- [EFFICIENCY](/about/references/EFFICIENCY.md) |
| 83 | +- [POLYTROPIC_EFFICIENCY](/about/references/POLYTROPIC_EFFICIENCY.md) |
| 84 | +- [Mechanical Efficiency Migration Guide](/about/migration_guides/mechanical_efficiency.md) |
0 commit comments