Skip to content

Added terrain refinement option in tagging #1633

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

Open
wants to merge 34 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
27f85d7
Added terrain refiner
ews-ffarella Jun 2, 2025
42d53ea
Added possibility to specify a polygon as input
ews-ffarella Jun 2, 2025
8e479b5
Inner rings
ews-ffarella Jun 2, 2025
70b09e4
Added checks for inner rings
ews-ffarella Jun 2, 2025
c863448
Real example
ews-ffarella Jun 2, 2025
8013e4b
fmt
ews-ffarella Jun 2, 2025
00331b5
Documentation
ews-ffarella Jun 2, 2025
05de011
Really?
ews-ffarella Jun 2, 2025
87c95ba
Big refractor, added unit test and integration test. Made Polygon reu…
ews-ffarella Jun 3, 2025
a3298c6
Merge pull request #3 from Exawind/main
ews-ffarella Jun 3, 2025
bcd0030
clang
ews-ffarella Jun 3, 2025
e29f820
Relase mode
ews-ffarella Jun 3, 2025
1f120d4
clang tidy
ews-ffarella Jun 3, 2025
3aaad45
clang-tidy
ews-ffarella Jun 3, 2025
b7a1d49
More advanced tests and edge fix
ews-ffarella Jun 3, 2025
dc0fcae
Restore terrain_box_amr
ews-ffarella Jun 3, 2025
d51529a
Do not print out the polygons
ews-ffarella Jun 3, 2025
4aaeda5
Update test/CMakeLists.txt: remove missing reg test
mbkuhn Jun 3, 2025
11cda56
add to documentation
mbkuhn Jun 3, 2025
10927be
Merge branch 'main' into 1-terrain-based-refinement
ews-ffarella Jun 3, 2025
b5a40e2
[ci skip] Max level actually apply to the current grid level.
ews-ffarella Jun 4, 2025
01913ce
Merge branch '1-terrain-based-refinement' of github.com:ews-ffarella/…
ews-ffarella Jun 4, 2025
9ff4b82
Added more static methods to polygon
ews-ffarella Jun 4, 2025
169b12e
Optimize tagging
ews-ffarella Jun 4, 2025
94e3eef
Update docs
ews-ffarella Jun 4, 2025
d445abb
Fmt
ews-ffarella Jun 4, 2025
0829baf
tidy
ews-ffarella Jun 4, 2025
0310ba6
Merge branch 'main' into 1-terrain-based-refinement
ews-ffarella Jun 5, 2025
671375e
Merge branch '1-terrain-based-refinement' of github.com:ews-ffarella/…
ews-ffarella Jun 5, 2025
4da98d0
Added optimization
ews-ffarella Jun 5, 2025
e77ebdb
Remove bad macros for GPU
ews-ffarella Jun 12, 2025
6cae8df
Always initialize terrain drag
ews-ffarella Jun 13, 2025
75f9b45
Refactor TerrainRefinement: per-level buffer ratios and verbosity, im…
ews-ffarella Jun 14, 2025
f02a28a
Merge branch 'main' into 1-terrain-based-refinement
ews-ffarella Jun 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions amr-wind/utilities/tagging/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ target_sources(${amr_wind_lib_name} PRIVATE
VorticityMagRefinement.cpp
OversetRefinement.cpp
GeometryRefinement.cpp
TerrainRefinement.cpp
TerrainElevation.cpp

# Geometry based refinement options
BoxRefiner.cpp
Expand Down
Loading