-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add option to vary parameter (#1244)
* add option to vary parameter * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * remove logger.info * adjust maybe_adjust_costs_and_potentials * update configtables * revert removed cost_factor * reset build_energy_totals to master * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * add release notes * Revert "revert removed cost_factor" This reverts commit b7154f0. --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Fabian Neumann <[email protected]>
- Loading branch information
1 parent
e8e0833
commit 1b97a16
Showing
6 changed files
with
96 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
,Unit,Values,Description | ||
adjustments,,, | ||
-- electricity,bool or dict,,"Parameter adjustments for capital cost, marginal cost, and maximum capacities of carriers. Applied in :mod:`prepare_network.`" | ||
-- -- {attr},,,"Attribute can be ``e_nom_opt``, ``p_nom_opt``, ``marginal_cost`` or ``capital_cost``" | ||
-- -- -- {carrier},float,per-unit,"Any carrier of the network to which parameter adjustment factor should be applied." | ||
-- sector,bool or dict,,"Parameter adjustments for capital cost, marginal cost, and maximum capacities of carriers. Applied in :mod:`prepare_sector_network.`" | ||
-- -- {attr},,,"Attribute can be ``e_nom_opt``, ``p_nom_opt``, ``marginal_cost`` or ``capital_cost``" | ||
-- -- -- {carrier},float,per-unit,"Any carrier of the network to which parameter adjustment factor should be applied." | ||
,Unit,Values,Description | ||
adjustments,,, | ||
-- electricity,bool or dict,,Parameter adjustments applied in :mod:`prepare_network.` | ||
-- -- factor,,,Multiply original value with given factor | ||
-- -- absolute,,,Set attribute to absolute value | ||
-- -- -- {component},,,PyPSA component in :mod:`prepare_network.` | ||
-- -- -- -- {carrier},,,Any carrier of the network to which parameter adjustment factor should be applied. | ||
-- -- -- -- -- {attr},float,per-unit,Attribute to which parameter adjustment factor should be applied. | ||
-- sector,bool or dict,,Parameter adjustments applied in :mod:`prepare_sector_network.` | ||
-- -- factor,,,Multiply original value with given factor | ||
-- -- absolute,,,Set attribute to absolute value | ||
-- -- -- {component},,,PyPSA component in :mod:`prepare_network.` | ||
-- -- -- -- {carrier},,,Any carrier of the network to which parameter adjustment factor should be applied. | ||
-- -- -- -- -- {attr},Float or dict,per-unit,Attribute to which parameter adjustment factor should be applied. Can be also a dictionary with planning horizons as keys. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters