forked from chaos-polymtl/lethe
-
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.
Rename Lethe applications (chaos-polymtl#882)
Description of the problem The name of the applications in Lethe did not follow any standard format. Description of the solution All the applications were renamed according to what was discussed in the group. All the solvers related to fluids start now with lethe-fluid, the DEM solver was renamed as lethe-particles, the coupling of CFD and DEM lethe-fluid-particles, and all rpt applications start now with lethe-rpt. How Has This Been Tested? All tests pass since only the name of the folder and the executable was updated. Documentation All the examples were updated since the solver used is always mentioned in the ''Features" section. Also, all the commands to run the examples in the "Running the Simulation" section were updated accordingly. A new file was added to the documentation: doc/source/applications.rst. It adds a table with all the available applications and a brief description of each of them. @blaisb will complete/modify the description of the applications in this PR. Comments This PR only changes the name of executable and it does not change the name of any class, .cc or .h file. Co-authored-by: Bruno Blais <[email protected]>
- Loading branch information
1 parent
0fbad8d
commit 337c93d
Showing
744 changed files
with
393 additions
and
353 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,32 @@ | ||
# Change Log | ||
All notable changes to the Lethe project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/). | ||
|
||
## [Master] - 2023-09-19 | ||
|
||
### Changed | ||
|
||
- MAJOR All the applications were renamed [#882](https://github.com/lethe-cfd/lethe/pull/882): `gls_navier_stokes` is now `lethe-fluid`, `gd_navier_stokes` is now `lethe-fluid-block`, `nitsche_navier_stokes` is now `lethe-fluid-nitsche`, `gls_sharp_navier_stokes` is now `lethe-fluid-sharp`, `gls_vans` is now `lethe-fluid-vans`, `mf_navier_stokes` is now `lethe-fluid-matrix-free`, `dem` is now `lethe-particles`, `cfd_dem_coupling` is now `lethe-fluid-particles`, `rpt3d` is now `lethe-rpt-3d`, `rpt_cell_reconstruction_3d` is now `lethe-rpt-cell-reconstruction-3d`, `rpt_fem_reconstruction_3d` is now `lethe-rpt-fem-reconstruction-3d`, and `rpt_l2_projection_3d` is now `lethe-rpt-l2-projection-3d`. | ||
|
||
## [Sample] - YYYY/MM/DD | ||
|
||
### Added | ||
|
||
- MAJOR/MINOR/PATCH Description (#PR). | ||
|
||
### Changed | ||
|
||
- MAJOR/MINOR/PATCH Description (#PR). | ||
|
||
### Deprecated | ||
|
||
- MAJOR/MINOR/PATCH Description (#PR). | ||
|
||
### Removed | ||
|
||
- MAJOR/MINOR/PATCH Description (#PR). | ||
|
||
### Fixed | ||
|
||
- MAJOR/MINOR/PATCH Description (#PR). |
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,19 +1,19 @@ | ||
foreach(_target IN ITEMS | ||
cfd_dem_coupling | ||
dem | ||
lethe-fluid-particles | ||
lethe-particles | ||
dem_parameter_template | ||
gd_navier_stokes | ||
gls_navier_stokes | ||
nitsche_navier_stokes | ||
gls_sharp_navier_stokes | ||
gls_vans | ||
mf_navier_stokes | ||
lethe-fluid-block | ||
lethe-fluid | ||
lethe-fluid-nitsche | ||
lethe-fluid-sharp | ||
lethe-fluid-vans | ||
lethe-fluid-matrix-free | ||
initial_conditions | ||
navier_stokes_parameter_template | ||
rpt_3d | ||
rpt_cell_reconstruction_3d | ||
rpt_fem_reconstruction_3d | ||
rpt_l2_projection_3d) | ||
lethe-rpt-3d | ||
lethe-rpt-cell-reconstruction-3d | ||
lethe-rpt-fem-reconstruction-3d | ||
lethe-rpt-l2-projection-3d) | ||
add_subdirectory(${_target}) | ||
install(TARGETS ${_target}) | ||
endforeach() |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
add_executable(lethe-fluid-block gd_navier_stokes.cc) | ||
deal_ii_setup_target(lethe-fluid-block) | ||
target_link_libraries(lethe-fluid-block lethe-solvers) |
File renamed without changes.
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,3 @@ | ||
add_executable(lethe-fluid-matrix-free mf_navier_stokes.cc) | ||
deal_ii_setup_target(lethe-fluid-matrix-free) | ||
target_link_libraries(lethe-fluid-matrix-free lethe-solvers) |
File renamed without changes.
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,3 @@ | ||
add_executable(lethe-fluid-nitsche nitsche_navier_stokes.cc) | ||
deal_ii_setup_target(lethe-fluid-nitsche) | ||
target_link_libraries(lethe-fluid-nitsche lethe-solvers) |
File renamed without changes.
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,3 @@ | ||
add_executable(lethe-fluid-particles cfd_dem_coupling.cc) | ||
deal_ii_setup_target(lethe-fluid-particles) | ||
target_link_libraries(lethe-fluid-particles lethe-fem-dem) |
File renamed without changes.
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,3 @@ | ||
add_executable(lethe-fluid-sharp gls_sharp_navier_stokes.cc) | ||
deal_ii_setup_target(lethe-fluid-sharp) | ||
target_link_libraries(lethe-fluid-sharp lethe-fem-dem) |
File renamed without changes.
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,3 @@ | ||
add_executable(lethe-fluid-vans gls_vans.cc) | ||
deal_ii_setup_target(lethe-fluid-vans) | ||
target_link_libraries(lethe-fluid-vans lethe-fem-dem) |
File renamed without changes.
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,3 @@ | ||
add_executable(lethe-fluid gls_navier_stokes.cc) | ||
deal_ii_setup_target(lethe-fluid) | ||
target_link_libraries(lethe-fluid lethe-solvers) |
File renamed without changes.
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,3 @@ | ||
add_executable(lethe-particles dem.cc) | ||
deal_ii_setup_target(lethe-particles) | ||
target_link_libraries(lethe-particles lethe-core lethe-dem) |
File renamed without changes.
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,3 @@ | ||
add_executable(lethe-rpt-3d rpt_3d.cc) | ||
deal_ii_setup_target(lethe-rpt-3d) | ||
target_link_libraries(lethe-rpt-3d lethe-rpt) |
File renamed without changes.
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,3 @@ | ||
add_executable(lethe-rpt-cell-reconstruction-3d rpt_cell_reconstruction_3d.cc) | ||
deal_ii_setup_target(lethe-rpt-cell-reconstruction-3d) | ||
target_link_libraries(lethe-rpt-cell-reconstruction-3d lethe-rpt) |
File renamed without changes.
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,3 @@ | ||
add_executable(lethe-rpt-fem-reconstruction-3d rpt_fem_reconstruction_3d.cc) | ||
deal_ii_setup_target(lethe-rpt-fem-reconstruction-3d) | ||
target_link_libraries(lethe-rpt-fem-reconstruction-3d lethe-rpt) |
File renamed without changes.
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,3 @@ | ||
add_executable(lethe-rpt-l2-projection-3d rpt_l2_projection_3d.cc) | ||
deal_ii_setup_target(lethe-rpt-l2-projection-3d) | ||
target_link_libraries(lethe-rpt-l2-projection-3d lethe-rpt) |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,12 +1,12 @@ | ||
add_subdirectory(cfd_dem_coupling) | ||
add_subdirectory(dem) | ||
add_subdirectory(gd_navier_stokes) | ||
add_subdirectory(gls_navier_stokes) | ||
add_subdirectory(gls_sharp_navier_stokes) | ||
add_subdirectory(gls_vans) | ||
add_subdirectory(lethe-fluid-particles) | ||
add_subdirectory(lethe-particles) | ||
add_subdirectory(lethe-fluid-block) | ||
add_subdirectory(lethe-fluid) | ||
add_subdirectory(lethe-fluid-sharp) | ||
add_subdirectory(lethe-fluid-vans) | ||
add_subdirectory(initial_conditions) | ||
add_subdirectory(mf_navier_stokes) | ||
add_subdirectory(nitsche_navier_stokes) | ||
add_subdirectory(rpt_cell_reconstruction_3d) | ||
add_subdirectory(rpt_fem_reconstruction_3d) | ||
add_subdirectory(rpt_l2_projection_3d) | ||
add_subdirectory(lethe-fluid-matrix-free) | ||
add_subdirectory(lethe-fluid-nitsche) | ||
add_subdirectory(lethe-rpt-cell-reconstruction-3d) | ||
add_subdirectory(lethe-rpt-fem-reconstruction-3d) | ||
add_subdirectory(lethe-rpt-l2-projection-3d) |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ons_tests/mf_navier_stokes/CMakeLists.txt → ...ts/lethe-fluid-matrix-free/CMakeLists.txt
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
..._navier_stokes/opencascade/CMakeLists.txt → ...he-fluid-sharp/opencascade/CMakeLists.txt
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.