-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docstrings and make them available in documenter.jl build
- Loading branch information
Joseph McKinsey
committed
Nov 18, 2024
1 parent
03c2134
commit 1a81391
Showing
20 changed files
with
386 additions
and
95 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,6 +1,6 @@ | ||
# Internal API | ||
|
||
```@autodocs | ||
Modules = [PRASInterface] | ||
Modules = [PRASInterface, PRAS] | ||
Public = false | ||
``` |
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,6 +1,20 @@ | ||
# Public API Reference | ||
|
||
```@autodocs | ||
Modules = [PRASInterface] | ||
Public = true | ||
``` | ||
```@docs | ||
PRASInterface | ||
generate_pras_system | ||
PRAS | ||
SystemModel | ||
assess | ||
SequentialMonteCarlo | ||
Shortfall | ||
LOLE | ||
EUE | ||
val | ||
stderror | ||
generate_outage_profile | ||
generate_csv_outage_profile | ||
add_csv_time_series! | ||
add_csv_time_series_single_stage! | ||
make_generator_outage_draws! | ||
``` |
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
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
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,9 +1,19 @@ | ||
# DEFAULT outage data which is used when outage_flag is set to FALSE | ||
# Based on ERCOT historical data | ||
# TODO: OUTAGE_INFO FILE: this should probably be an artifact | ||
""" | ||
DEFAULT outage data which is used when outage_flag is set to FALSE | ||
Based on ERCOT historical data | ||
""" | ||
const OUTAGE_INFO_FILE = | ||
joinpath(@__DIR__, "descriptors", "outage-rates-ERCOT-modified.csv") | ||
|
||
# ACBranch Types | ||
""" | ||
Supported DC branch Types | ||
""" | ||
const HVDCLineTypes = Union{PSY.TwoTerminalHVDCLine, PSY.TwoTerminalVSCDCLine} | ||
|
||
""" | ||
Supported Transformer Types | ||
""" | ||
const TransformerTypes = | ||
[PSY.TapTransformer, PSY.Transformer2W, PSY.PhaseShiftingTransformer] |
Oops, something went wrong.