-
Notifications
You must be signed in to change notification settings - Fork 101
Documentation updates: migrate enumerated type docs into scoped enum docstrings #1635
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 38 commits
bcba6ba
828910d
db59c76
6ee4e64
5ae3d74
2e3b27b
cede0fb
386116e
0d81648
f921449
0224c49
499baef
d116d78
ce0fc4d
a65d888
73d451d
9e049ca
d8e579f
08f79af
3d3f9a6
4449319
ecd69fa
6844b0f
4d13017
a344bbe
08c2d07
35e8fbd
b228162
ded0513
d907136
6c2ab2c
cfde49c
ade8efe
0dcd08b
907f72a
286452b
62cae42
6e722c0
a209d03
df51ede
60876fd
0fad077
5b521ae
31b8e66
8e3a718
6bf5838
2ae0447
e9ce9db
be6a930
acdf16a
1a0f623
8d0c3ed
90d96d4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,8 +42,15 @@ pages = OrderedDict( | |
| "Save and read data with a JSON" => "how_to/serialize_data.md", | ||
| ], | ||
| "...add a component using natural units (MW)" => "how_to/add_component_natural_units.md", | ||
| "...read component values in different unit systems" => "how_to/convert_unit_systems.md", | ||
| "...convert transformer impedances between per-unit bases" => "how_to/convert_transformer_impedance.md", | ||
| "...use subsystems" => "how_to/use_subsystems.md", | ||
| "...use context managers for bulk operations" => "how_to/use_context_managers.md", | ||
| "...add additional data to a component" => "how_to/adding_additional_fields.md", | ||
| "...add additional data to a component" => Any[ | ||
| "Add Supplemental Attributes to a System" => "how_to/add_supplemental_attributes.md", | ||
| "Use Supplemental Attributes" => "how_to/use_supplemental_attributes.md", | ||
| "Add additional fields to a component" => "how_to/adding_additional_fields.md", | ||
| ], | ||
| "...add time-series data" => Any[ | ||
| "Parse time series data from .csv files" => "how_to/parse_ts_from_csvs.md", | ||
| "Improve performance with time series data" => "how_to/improve_ts_performance.md", | ||
|
|
@@ -72,10 +79,9 @@ pages = OrderedDict( | |
| "explanation/per_unit.md", | ||
| "explanation/power_concepts.md", | ||
| "explanation/conforming_and_non_conforming_loads.md", | ||
| "explanation/transformer_per_unit_models.md", | ||
| "explanation/time_series.md", | ||
| "explanation/dynamic_data.md", | ||
| "explanation/supplemental_attributes.md", | ||
| "explanation/supplemental_attributes_2.md", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rename the new file back to supplemental_attributes.md |
||
| "explanation/plant_attributes.md", | ||
| ], | ||
| "Model Library" => Any[], | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -92,7 +92,7 @@ EIA Annual Energy Review. `ThermalFuels` has the options: | |||||
| | `BLACK_LIQUOR` | BLQ | Black Liquor | | ||||||
| | `WOOD_WASTE_LIQUIDS` | WDL | Wood Waste Liquids excluding Black Liquor (includes red liquor, sludge wood, spent sulfite liquor, and other wood-based liquids) | | ||||||
| | `LANDFILL_GAS` | LFG | Landfill Gas | | ||||||
| | `OTHEHR_BIOMASS_GAS` | OBG | Other Biomass Gas (includes digester gas, methane, and other biomass gasses) | | ||||||
| | `OTHER_BIOMASS_GAS` | OBG | Other Biomass Gas (includes digester gas, methane, and other biomass gasses) | | ||||||
|
||||||
| | `OTHER_BIOMASS_GAS` | OBG | Other Biomass Gas (includes digester gas, methane, and other biomass gasses) | | |
| | `OTHEHR_BIOMASS_GAS` | OBG | Other Biomass Gas (includes digester gas, methane, and other biomass gasses) | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update src/definitions.jl and any other uses and note the breaking change in PR comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Uh oh!
There was an error while loading. Please reload this page.