CHP Production Factor Input #555
Draft
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request adds support for specifying a custom time-series of production factors for CHP systems, allowing users to override the default calculation based on unavailability. The main changes include updates to the
CHPstruct, the production factor calculation logic, and the addition of a comprehensive test to ensure correct behavior.Custom Production Factor Series Support:
production_factor_seriesfield to theCHPstruct and its constructor, allowing users to supply a custom vector of production factors. [1] [2]Production Factor Calculation Logic:
get_production_factorfunction inproduction_factor.jlto return the user-providedproduction_factor_seriesif it exists, instead of generating the production factor from unavailability data.Testing:
test/test_chp_prodfactor.jlto verify that a customproduction_factor_seriesis correctly assigned, used in optimization, and produces expected results in the output.