-
Notifications
You must be signed in to change notification settings - Fork 11
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 #17 from WISDEM/develop
New features and updated documentation
- Loading branch information
Showing
82 changed files
with
6,835 additions
and
3,753 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Documentation | |
|
||
on: | ||
push: | ||
branches: [main, master] | ||
branches: [main] | ||
|
||
jobs: | ||
make-pages: | ||
|
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,5 +1,6 @@ | ||
[mypy] | ||
|
||
exclude=/docs/,./build/ | ||
ignore_missing_imports=True | ||
no_implicit_optional=True | ||
check_untyped_defs=True | ||
|
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,3 +1,30 @@ | ||
# 0.3.1 (2021-March-2) | ||
## 0.3.5 (2021-December-9) | ||
|
||
- Updated the the `simulation/` folder to be a single-level `core/` directory. | ||
- Downtime-based and requests-based unscheduled maintenance models have been added to | ||
servicing equipment. | ||
- `Windfarm.current_availability` is able to account for multiple substations and is now | ||
an accurate calculation of the operating level across the windfarm. | ||
- `Simulation.from_inputs()` is replaced by `Simulation.from_config()` to be more | ||
straightfoward for users. | ||
- `ServiceCrew` has been added for expansion to multiple crews. | ||
- Servicing equipment now have separate `travel` and `crew_transfer`, `weather_delay`, | ||
and `repair` functions to more realistically simulate the separate processes involved. | ||
- The windfarm now has a distance matrix to calculate the distance between any two | ||
systems oniste, for instance, substation to cable, cable to turbine, etc. | ||
- Bug fix in the task completion rate metric. | ||
- `WombatEnvironment.log_action()` enforces the use of keyword arguments with only 3 | ||
required inputs. | ||
- `WombatEnvironment.weather_forecast()` outputs now include the datetime index. | ||
- If no PySAM settings are provided, the `financial_model` will be set to `None` with a | ||
`NotImplementedError` being raised for any attempted usage of the PySAM-powered | ||
functionality. | ||
- Fix bugs in `Maintenance` and `Failure` initializations. | ||
- Fix bugs in operating level accounting from recent updates. | ||
- Update the unicode typing in all docstrings. | ||
- Update the documentation to account for all the recent changes, including adding a new | ||
demonstration notebook for the 3 new strategies. | ||
|
||
## 0.3.1 (2021-March-2) | ||
|
||
- Updated the the `simulation/` folder to be a single-level `core/` directory. | ||
- Updates the order of the keyword arguments for WombatEnvironment.log_action(), and makes all arguments keyword-only arguments. |
Oops, something went wrong.