-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #510 from PyPSA/develop
v0.5.0
- Loading branch information
Showing
78 changed files
with
9,255 additions
and
4,617 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
(spatial)= | ||
# Spatial Configuration | ||
|
||
## Configuring Spatial Scope | ||
|
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Configuration Option,Configuration Value ,Description,Constraint ,Applied to | ||
``import.min``,0,No import requirement,Σ(p) >= 0,S2 S1 gas trade | ||
,0.5,Import at least half of historical year value ,Σ(p) >= 5000,S2 S1 gas trade | ||
,1,Import at least half of historical year value ,Σ(p) >= 10000,S2 S1 gas trade | ||
,2,Import at least double the historical year value ,Σ(p) >= 20000,S2 S1 gas trade | ||
``import.max``,0,No imports allowed,Σ(p) <= 0,S2 S1 gas trade | ||
,0.5,Import up to half of historical year value ,Σ(p) <= 5000,S2 S1 gas trade | ||
,1,Import up to the full historical year value ,Σ(p) <= 10000,S2 S1 gas trade | ||
,2,Import up to double the historical year value ,Σ(p) <= 20000,S2 S1 gas trade | ||
,inf,Unlimited Imports ,No constraint added,S2 S1 gas trade | ||
``export.min``,0,No exports requirement,Σ(p) >= 0,S1 S2 gas trade | ||
,0.5,Export at least half of historical year value ,Σ(p) >= 5000,S1 S2 gas trade | ||
,1,Export at least half of historical year value ,Σ(p) >= 10000,S1 S2 gas trade | ||
,2,Export at least double the historical year value ,Σ(p) >= 20000,S1 S2 gas trade | ||
``export.max``,0,No exports allowed,Σ(p) <= 0,S1 S2 gas trade | ||
,0.5,Export up to half of historical year value ,Σ(p) <= 5000,S1 S2 gas trade | ||
,1,Exportup to the historical year value ,Σ(p) <= 10000,S1 S2 gas trade | ||
,2,Export up to double the historical year value ,Σ(p) <= 20000,S1 S2 gas trade | ||
,inf,Unlimited Export ,No constraint added,S1 S2 gas trade |
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
Oops, something went wrong.