forked from WISDEM/WEIS
-
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.
- Loading branch information
Showing
4 changed files
with
38 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# History | ||
|
||
--------------------- | ||
## 2.0.0 - (2020-03-04) | ||
Admittedly poor versioning since the last release. Lots of updates... | ||
|
||
### API Changes | ||
* Re-org of some functionalities | ||
- turbine.load_from_text is now turbine.utilities | ||
- utilities.write_param_file is now utilities.write_DISCON | ||
* Include flap controller tuning methods and related inputs to DISCON.IN | ||
* Remove unnecessary control inputs in DISCON.IN (`z_pitch_*`) | ||
|
||
### Other changes | ||
* Updates to floating filtering methods | ||
* Updates to floating controller tuning methods to be more mathematically sound | ||
* Generic flap tuning - employ reading of AeroDyn15 files with multiple distributed aerodynamic control inputs | ||
* Test case updates and bug fixes | ||
* Example updates to showcase all functionalities | ||
* Updates to OpenFAST output processing and plotting scripts | ||
* All related improvements and updates ROSCO controller itself | ||
--------------------- | ||
## 1.0.1 - (2020-01-29) | ||
* Major bug fixes in second order low-pass filters | ||
* Minor bug fixes for pitch saturation and filter mode settings | ||
* Minor updates in tuning scripts | ||
--------------------- | ||
## 1.0.0 - (2020-01-22) | ||
* Version 1.0 release - initial transition from DRC-Fortran with major updates and API changes | ||
|
||
|
This file was deleted.
Oops, something went wrong.
Submodule ROSCO
updated
13 files
+1 −1 | CMakeLists.txt | |
+1 −1 | README.md | |
+33 −31 | parameter_files/DTU10MW/DISCON.IN | |
+165 −0 | parameter_files/IEA15MW/Cp_Ct_Cq.IEA15MW.txt | |
+43 −43 | parameter_files/IEA15MW/DISCON.IN | |
+148 −76 | parameter_files/NREL5MW/Cp_Ct_Cq.NREL5MW.txt | |
+48 −46 | parameter_files/NREL5MW/DISCON.IN | |
+8 −5 | src/ControllerBlocks.f90 | |
+13 −6 | src/Controllers.f90 | |
+1 −7 | src/Filters.f90 | |
+1 −1 | src/Functions.f90 | |
+2 −2 | src/ROSCO_Types.f90 | |
+3 −2 | src/ReadSetParameters.f90 |
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 |
---|---|---|
|
@@ -31,16 +31,16 @@ | |
EMAIL = '[email protected]' | ||
AUTHOR = 'NREL National Wind Technology Center' | ||
REQUIRES_PYTHON = '>=3.3.0' | ||
VERSION = '2.0.0' | ||
VERSION = '2.0.1' | ||
|
||
# These packages are required for all of the code to be executed. | ||
# - Maybe you can get away with older versions... | ||
REQUIRED = [ | ||
'matplotlib>=3', | ||
'numpy>=1.16', | ||
'pytest>=4', | ||
'scipy>=1.1', | ||
'pyYAML>=5.3' | ||
'matplotlib', | ||
'numpy', | ||
'pytest', | ||
'scipy', | ||
'pyYAML', | ||
] | ||
|
||
# Read the docs, one day, so we'll throw it in here! | ||
|