WIP solver restucture#2
Open
misi9170 wants to merge 34 commits into
Open
Conversation
* Update isort requirement from <8,>=5 to >=5,<9 Updates the requirements on [isort](https://github.com/PyCQA/isort) to permit the latest version. - [Release notes](https://github.com/PyCQA/isort/releases) - [Changelog](https://github.com/PyCQA/isort/blob/main/CHANGELOG.md) - [Commits](PyCQA/isort@5.0.0...8.0.1) --- updated-dependencies: - dependency-name: isort dependency-version: 8.0.1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> * Change isort hook stage from commit to pre-commit Avoids deprecation warning and works on isort 5 through 8 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: misi9170 <39596329+misi9170@users.noreply.github.com>
NatLabRockies#1192) * fix: correct tilt_interp parameter type in compute_tilt_angles_for_floating_turbines - Change tilt_interp parameter type from dict[str, interp1d] to interp1d|None - This aligns with the function's actual usage where it expects a single interpolation function or None * Match type-hint formatting --------- Co-authored-by: misi9170 <39596329+misi9170@users.noreply.github.com> Co-authored-by: zhb <zhang.hongbing@meteodyn.com> Co-authored-by: misi9170 <michael.sinner@nlr.gov>
* Check allowing pandas v3 * Remove unneeded pandas imports * Use Numpy for multidim csv loading and condition filtering * Add Pandas->Numpy change warning log --------- Co-authored-by: Rafael M Mudafort <rafmudaf@gmail.com>
* Add warning for non-positive z values * Move grid_resolution validation to subclasses * Add tests for TurbineGrid coordinates and grid_resolution * Add tests for FlowFieldPlanarGrid * Deprecation warning * Remove FlowFieldGrid as not actually supported * Fix copy-paste errors Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Add test to check that error raised for flow_field_grid * Formatting * Minor messaging cleanup * Update to patch release * Patch version numnber increment * Remove case for "flow_field_grid" anderror check test --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Clean up grid classes (NatLabRockies#1183) * Add warning for non-positive z values * Move grid_resolution validation to subclasses * Add tests for TurbineGrid coordinates and grid_resolution * Add tests for FlowFieldPlanarGrid * Deprecation warning * Remove FlowFieldGrid as not actually supported * Fix copy-paste errors Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Add test to check that error raised for flow_field_grid * Formatting * Minor messaging cleanup * Update to patch release * Patch version numnber increment * Remove case for "flow_field_grid" anderror check test --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Increment patch number * repo name update missed earlier --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
WIP solver restructure