Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- Changed the output filename for RSV from `reg_dn.csv` to `reserves.csv`.
- Created link in the thermal doc page to fuels page for piecewise linear cost curve documentation

### Fixed
- Fixed capacity reserve margin formulation for asymmetric storage
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "GenX"
uuid = "5d317b1e-30ec-4ed6-a8ce-8d2d88d7cfac"
authors = ["Bonaldo, Luca", "Chakrabarti, Sambuddha", "Cheng, Fangwei", "Ding, Yifu", "Jenkins, Jesse D.", "Luo, Qian", "Macdonald, Ruaridh", "Mallapragada, Dharik", "Manocha, Aneesha", "Mantegna, Gabe ", "Morris, Jack", "Patankar, Neha", "Pecci, Filippo", "Schwartz, Aaron", "Schwartz, Jacob", "Schivley, Greg", "Sepulveda, Nestor", "Xu, Qingyu", "Zhou, Justin"]
version = "0.4.2-dev.3"
version = "0.4.2-dev.4"

[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Expand Down
2 changes: 1 addition & 1 deletion src/model/core/fuel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This function creates expressions to account for total fuel consumption (e.g., coal,
natural gas, hydrogen, etc). It also has the capability to model heat rates that are
a function of load via a piecewise-linear approximation.
a function of load via a piecewise-linear approximation. See also the [`thermal!`](@ref) page.

***** Expressions ******
Users have two options to model the fuel consumption as a function of power generation:
Expand Down
1 change: 1 addition & 0 deletions src/model/resources/thermal/thermal.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
thermal!(EP::Model, inputs::Dict, setup::Dict)
The thermal module creates decision variables, expressions, and constraints related to thermal power plants e.g. coal, oil or natural gas steam plants, natural gas combined cycle and combustion turbine plants, nuclear, hydrogen combustion etc.
This module uses the following 'helper' functions in separate files: ```thermal_commit()``` for thermal resources subject to unit commitment decisions and constraints (if any) and ```thermal_no_commit()``` for thermal resources not subject to unit commitment (if any).
For the piecewise linear cost function for thermal generators, please refer to the documentation in the [`fuel!`](@ref) page
"""
function thermal!(EP::Model, inputs::Dict, setup::Dict)
gen = inputs["RESOURCES"]
Expand Down