Skip to content

Commit 37467cc

Browse files
Update documentation toc to include new documentation files
1 parent a54f793 commit 37467cc

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

docs/_toc.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ parts:
3131
- file: electrolyzer
3232
- file: thermal_component_base
3333
- file: open_cycle_gas_turbine
34+
- file: hard_coal_steam_turbine
35+
- file: thermal_plant
3436
- caption: Inputs
3537
chapters:
3638
- file: hercules_input
@@ -49,4 +51,5 @@ parts:
4951
- file: examples/04_wind_and_storage
5052
- file: examples/05_wind_and_storage_with_lmp
5153
- file: examples/06_wind_and_hydrogen
52-
- file: examples/07_open_cycle_gas_turbine
54+
- file: examples/07_open_cycle_gas_turbine
55+
- file: examples/09_multiunit_thermal_plant

docs/component_types.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ Every `ComponentBase` subclass **must** define `component_category`; a `TypeErro
5555
| `BatteryLithiumIon` | `storage` | [Battery](battery.md) |
5656
| `ElectrolyzerPlant` | `load` | [Electrolyzer](electrolyzer.md) |
5757
| `OpenCycleGasTurbine` | `generator` | [Open Cycle Gas Turbine](open_cycle_gas_turbine.md) |
58+
| `HardCoalSteamTurbine` | `generator` | [Hard Coal Steam Turbine](hard_coal_steam_turbine.md) |
59+
| `ThermalPlant` | `generator` | [Thermal Plant](thermal_plant.md) |
5860

5961
Components with `component_category == "generator"` contribute to `h_dict["plant"]["locally_generated_power"]`.
6062

docs/hybrid_plant.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ See [Component Names, Types, and Categories](component_types.md) for a full expl
1919
| `BatteryLithiumIon` | `storage` | No | [Battery](battery.md) |
2020
| `ElectrolyzerPlant` | `load` | No | [Electrolyzer](electrolyzer.md) |
2121
| `OpenCycleGasTurbine` | `generator` | Yes | [Open Cycle Gas Turbine](open_cycle_gas_turbine.md) |
22+
| `HardCoalSteamTurbine` | `generator` | [Hard Coal Steam Turbine](hard_coal_steam_turbine.md) |
23+
| `ThermalPlant` | `generator` | [Thermal Plant](thermal_plant.md) |
2224

2325
The YAML key for each section is a user-chosen `component_name` and is not required to match the category name. For example, a `BatterySimple` component could be named `battery`, `battery_unit_1`, or anything else.
2426

0 commit comments

Comments
 (0)