Skip to content
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

F/gch update #158

Merged
merged 14 commits into from
Sep 25, 2020
Merged

F/gch update #158

merged 14 commits into from
Sep 25, 2020

Conversation

bayc
Copy link
Collaborator

@bayc bayc commented Sep 24, 2020

Complete this sentence
THIS PULL REQUEST IS READY TO MERGE

Feature or improvement description
Includes updates and improvements to the GCH wake model.

Related issue, if one exists
None.

Impacted areas of the software
Various examples, Gaussian wake model codes, turbine.py, and flow_field.py.

Additional supporting information
These improvements include a change of how TI is handled for the GCH model, utilizing Turbulence Kinetic Energy (TKE).

Test results, if applicable
None.

+ xoffset * sind(-1 * self.wind_map.turbine_wind_direction[i])
+ coord.x2
)
x_grid[i], y_grid[i] = self._update_grid(
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I left this here for review, as I liked Rob's change of making a separate function for update_grid, so if you agree @rafmudaf , feel free to remove the commented code.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is fine by me but can we add a docstring to the new function?

@bayc bayc requested a review from rafmudaf September 25, 2020 16:29
@@ -80,36 +90,46 @@ def _discretize_turbine_domain(self):

for i, (coord, turbine) in enumerate(self.turbine_map.items):

x2, x3 = coord.x2, coord.x3
x1, x2, x3 = coord.x1, coord.x2, coord.x3
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is x1 used? If not, lets remove it.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nvm

@rafmudaf rafmudaf merged commit 6f19d4b into NREL:develop Sep 25, 2020
RHammond2 added a commit to RHammond2/floris that referenced this pull request Oct 16, 2020
* Add logging class hierarchy to simulation classes

* Add logging class hierarchy to tools

* Create logging infrastructure module

* Replace ellipsis character with periods

* Rename logging module

Avoids a Python package namespace conflict

* Inherit LoggerBase where used and update API

Bug fix

* Add documentation

* Explicitly import the logging_manager with FLORIS

Its still imported when `import floris` since modules in `simulation` and `tools` use it. This also initializes it on import.

* improvements/fixes to energy ratio (NREL#121)

Better handling of empty bins
-- This was only an issue for small data sets but good to fix
Passes through the bootstrap size (was forcing default)
Correct bin weighting to be uniform in non-overlapped bins and gaussian when overlapped

* Make h5pyd an optional dependency

This is only used to access the Wind Tool Kit, so only require it there.
Doing this enables installing FLORIS via conda since the h5pyd package is not available on conda.

* Bug fix: incorrect access to an imported class

* Bug fix: typos (NREL#125)

* fixed typo in refs file

* updated error messages in input file converter

* Add more example input files (NREL#124)

* small fix to energy ratio

* small fix energy ratio

* Add jsons for jensen and multizone

* New example to show model comparisons

* Additional comments

* Bug fix: general typos and CCBlade example (NREL#127)

* fixed typo in refs file

* updated error messages in input file converter

* fixed ccblade example to use dict output for rotor.evalutate (ccblade update)

* Preprocessor: Allow input without version flags (NREL#126)

* Use first turbine’s HH when specified wind is “-1”

* Reenable Python 3.6 in GitHub Actions

Clean up some import statements and comments

* Bugfix/get params (NREL#130)

* adding requirements for docs

* Update version number to 2.0.1

* Removing logger prop from get/set_params functions

* Update gauss.py

* Update interface_utilities.py

* Bugfix/turbine ti (NREL#133)

* modifies added TI to be based on max upstream turbine

* add a function to pass out TI

Co-authored-by: Paul <paul.fleming@nrel.gov>

* Changes to get IQ model to work (NREL#134)

* Fix documentation for TI input

* Update: GCH vortex calculation, effective yaw, tuning (NREL#141)

This request has updated the following:
- Updated vortex equations: V and W coordinates were flipped and W was missing a minus sign.
- Updated the yaw added wake recovery.
- Removed "yaw_recovery_alpha" parameter.
- Slightly modified how the effective yaw is computed: take the average of the spanwise velocity across the rotor disk and compute the yaw angle that would have produced that average spanwise velocity across the disk (previously relied on rotation, but now relies on V).
- Updated the TI tuning.
- Change the wake combination method for V and W components to use linear superposition.
- Updated and added examples.

* Add precommit hooks + update format for compliance (NREL#131)

Adds `flake8`, `black`, and `isort` packages. Also configured git-hooks through `pre-commit`.

* Add auto-publish to PyPI (NREL#128)

* Create python-publish.yml

Adds the GitHub Actions configuration for automatic publishing to PyPI

* remove unused auto publish functionality

Co-authored-by: Rob <robert.hammond@nrel.gov>
Co-authored-by: Rafael M Mudafort <rafmudaf@gmail.com>

* Update version number to 2.1.0

* Update Crespo-Hernandez turning parameters (NREL#142)

* Update version to v2.1.1

* Add documentation for syncing local repositories

* Fix documentation for slicing functions (NREL#140)

* Update developer installation instructions (NREL#145)

* update README with developer install instructions (#1)

Co-authored-by: Rob <robert.hammond@nrel.gov>

* Add placeholder for new installation docs

* update the installation instructions

* update the installation instructions in README

* fix typos

* fix typos

* fix typos

* fix typos

* fix typos

* typos

* fixing typo

* embarrassing typos

* rst formatting

* rst formatting

* Add basic and advanced installation instructions

* Align the README with the docs

* Bug fix in README link

* Use  to refer to rtfd branches

* Update installation.rst

Making it slightly more clear what's meant. It's not as obvious on the docs site.

* clarify documentation instructions

* update docs with clarifications to docs installation

* remove docs installation from installation instructions.

Co-authored-by: Rob <robert.hammond@nrel.gov>
Co-authored-by: Rafael M Mudafort <rafmudaf@gmail.com>
Co-authored-by: bayc <christopher.j.bay@gmail.com>

* Update call graph images

* Add legend_kwargs to WindRose.plot_wind_rose()

* Feature/power interpolation (NREL#153)

Moves the interpolation in the power curve from cp, to power itself to avoid issues if wind speed points are spaced out above rated in input JSON

Co-authored-by: ejsimley <eric.simley@nrel.gov>

* correcting balanced energy ratio weights

* Feature/yaw opt normalization (NREL#144)

* Added normalization to yaw_optimization

* Adding normalization to wind rose and parallel opts

* Fixed yaw optimization wind rose parallel super init

* Made calculate initial power optional in yaw wind rose

* Adding uncertainty to initial power calc in YawOptimization class

* Modifying yaw and yaw_wind_rose classes to set and normalize bounds correctly

* Adding calc_init_power boolean for yaw.py

Co-authored-by: ejsimley <eric.simley@nrel.gov>

* Add get_turbine_layout() to FlorisInterface (NREL#138)

* Add get_turbine_layout() to FlorisInterface

* Return np.ndarray from get_turbine_layout

* Add get_turbine_layout() to FlorisInterface

* Add checking to ensure layout array x and y coordinates are same length (NREL#67)

* adds check for layout_array x/y to be same length

* Feature/performance clean (NREL#157)

* reduce the number of calculate_swept_area_velocities call

* vectorize effective yaw

* Moving some for loops to list generators

* Add saved flow field indices option

* Add AEP parallel

* Add wind speed limit

Performance improvements including saved flow field indices, limiting points, vectorization and wind speed limitations, but excluding larger function refactoring and any compiling

NGRID and RLOC default to values consistent with current version

A small subset of examples is included

Co-authored-by: Rafael M Mudafort <rafmudaf@gmail.com>
Co-authored-by: bayc <christopher.j.bay@gmail.com>

* Add TKE and TI mixing to GCH (NREL#158)

* Updates to the gch model: TKE and TI mixing

* Adding example

* Updated tuning

* Updated mask for V and W

* Bug fix

* Update models

* bugfix in energy ratio example

* Update models

* Apparantly no more writeline function

* Changing opt settings for examples

* change default ti to 6%

* Updating default crespo turbulence values

* Minor cleanup

Co-authored-by: King <jennifer.king@nrel.gov>
Co-authored-by: Paul <paul.fleming@nrel.gov>
Co-authored-by: Rafael M Mudafort <rafmudaf@gmail.com>

* Update version to v2.2.0

Co-authored-by: Rafael M Mudafort <rafmudaf@gmail.com>
Co-authored-by: paulf81 <paul.fleming@nrel.gov>
Co-authored-by: nhamilto <32469004+nhamilto@users.noreply.github.com>
Co-authored-by: bayc <christopher.j.bay@gmail.com>
Co-authored-by: Eliot Quon <eliot.quon@nrel.gov>
Co-authored-by: jrannoni <jennifer.annoni@nrel.gov>
Co-authored-by: Rob <robert.hammond@nrel.gov>
Co-authored-by: ejsimley <eric.simley@nrel.gov>
Co-authored-by: ejsimley <40040961+ejsimley@users.noreply.github.com>
Co-authored-by: King <jennifer.king@nrel.gov>
@bayc bayc deleted the f/gch_update branch March 1, 2022 20:52
@bayc bayc restored the f/gch_update branch March 1, 2022 20:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants