-
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.
* Initial commit * Debug of lattice issue * FIxed error by mapping boundary attributes * Added yaml file * Working example * Changed default so that solver passes tests * Works * Removed unnecessary comments * Cleaned up the function handling * Removed unnecessary file outputs * Making sure that checks are running * ROM boundary tweak * removed print statement * Removed type_idx and loop * Fixed double indexing * Cleaner version * Changed requested changes
- Loading branch information
Showing
6 changed files
with
212 additions
and
34 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
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,74 @@ | ||
main: | ||
mode: single_run | ||
use_rom: true | ||
solver: linelast | ||
|
||
mesh: | ||
type: component-wise | ||
component-wise: | ||
global_config: "config/linelast.lattice.h5" | ||
components: | ||
- name: "joint2D" | ||
file: "meshes/joint2D.mesh" | ||
- name: "rod2D_H" | ||
file: "meshes/rod2D_H.mesh" | ||
- name: "rod2D_V" | ||
file: "meshes/rod2D_V.mesh" | ||
|
||
domain-decomposition: | ||
type: interior_penalty | ||
|
||
discretization: | ||
order: 1 | ||
full-discrete-galerkin: true | ||
|
||
visualization: | ||
enabled: false | ||
unified_paraview: true | ||
file_path: | ||
prefix: paraview_output | ||
|
||
parameterized_problem: | ||
name: linelast_force_cantilever | ||
|
||
single_run: | ||
linelast_force_cantilever: | ||
rforce_f: 1.0 | ||
|
||
sample_generation: | ||
maximum_number_of_snapshots: 400 | ||
component_sampling: false | ||
file_path: | ||
prefix: "linelast_force_cantilever" | ||
parameters: | ||
- key: single_run/linelast_force/rforce_f | ||
type: double | ||
sample_size: 1 | ||
minimum: 1.0 | ||
maximum: 1.0 | ||
|
||
basis: | ||
prefix: "linelast_force_cantilever" | ||
tags: | ||
- name: "joint2D" | ||
number_of_basis: 12 | ||
- name: "rod2D_H" | ||
number_of_basis: 8 | ||
- name: "rod2D_V" | ||
number_of_basis: 9 | ||
svd: | ||
save_spectrum: true | ||
update_right_sv: false | ||
visualization: | ||
enabled: false | ||
|
||
model_reduction: | ||
rom_handler_type: mfem | ||
subdomain_training: universal | ||
linear_solver_type: direct | ||
save_operator: | ||
level: component | ||
prefix: "linelast.rom_elem" | ||
compare_solution: | ||
enabled: true | ||
|
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
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