-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Example input/mesh files for the tutorial (#5)
* main driver example. * component mesh poisson example. * paraview load macro. * moved TrainMode train_mode to MultiBlockSolver from ROMHandler. * GetBasisTag functions now does not belong to classes. GenerateSamples does not require to initiate ROMHandler. * poisson base sampling example. * 2d sampling example. * random sampling example. * TrainROM example. * poisson build rom example. * BuildROM: global operator is assembled only for ROMBuildingLevel::GLOBAL. * poisson full workflow example.
- Loading branch information
1 parent
4f484cd
commit b142c2d
Showing
37 changed files
with
9,511 additions
and
119 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,11 @@ | ||
examples/poisson/meshes/test.2x2.mesh filter=lfs diff=lfs merge=lfs -text | ||
examples/poisson/meshes/square-circle.mesh filter=lfs diff=lfs merge=lfs -text | ||
examples/poisson/meshes/square-square.mesh filter=lfs diff=lfs merge=lfs -text | ||
examples/poisson/meshes/square-star.mesh filter=lfs diff=lfs merge=lfs -text | ||
examples/poisson/meshes/square-triangle.mesh filter=lfs diff=lfs merge=lfs -text | ||
examples/poisson/meshes/square.mesh filter=lfs diff=lfs merge=lfs -text | ||
examples/poisson/config/2x2_config.h5 filter=lfs diff=lfs merge=lfs -text | ||
examples/poisson/config/sample.config-02.h5 filter=lfs diff=lfs merge=lfs -text | ||
examples/poisson/config/sample.config-03.h5 filter=lfs diff=lfs merge=lfs -text | ||
examples/poisson/config/sample.config-04.h5 filter=lfs diff=lfs merge=lfs -text | ||
examples/poisson/config/sample.config-01.h5 filter=lfs diff=lfs merge=lfs -text |
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
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,5 @@ | ||
# Copyright 2023 Lawrence Livermore National Security, LLC. See the top-level LICENSE file for details. | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
add_subdirectory(poisson) |
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,29 @@ | ||
# Copyright 2023 Lawrence Livermore National Security, LLC. See the top-level LICENSE file for details. | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
file(COPY poisson.yml DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson) | ||
file(COPY meshes/test.2x2.mesh DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson/meshes) | ||
|
||
file(COPY poisson.component.yml DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson) | ||
file(COPY config/2x2_config.h5 DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson/config) | ||
file(COPY meshes/square.mesh DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson/meshes) | ||
file(COPY meshes/square-circle.mesh DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson/meshes) | ||
file(COPY meshes/square-triangle.mesh DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson/meshes) | ||
file(COPY meshes/square-star.mesh DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson/meshes) | ||
file(COPY meshes/square-square.mesh DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson/meshes) | ||
|
||
file(COPY poisson.sample.yml DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson) | ||
file(COPY poisson.sample.2d.yml DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson) | ||
file(COPY poisson.sample.random.yml DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson) | ||
file(COPY config/sample.config-01.h5 DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson/config) | ||
file(COPY config/sample.config-02.h5 DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson/config) | ||
file(COPY config/sample.config-03.h5 DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson/config) | ||
file(COPY config/sample.config-04.h5 DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson/config) | ||
|
||
file(COPY poisson.train.yml DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson) | ||
file(COPY poisson.train.dom.yml DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson) | ||
|
||
file(COPY poisson.build.yml DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson) | ||
|
||
file(COPY poisson.full.yml DESTINATION ${CMAKE_BINARY_DIR}/examples/poisson) |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.