-
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.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
14 changed files
with
139 additions
and
30 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
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
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
test/fullscale_tests/test_material_field/Reference/material_field.e.license
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 @@ | ||
SPDX-FileCopyrightText: 2023 Christian Willberg <christian.willberg@dlr.de>, Jan-Timo Hesse <jan-timo.hesse@dlr.de> | ||
|
||
SPDX-License-Identifier: BSD-3-Clause |
57 changes: 57 additions & 0 deletions
57
test/fullscale_tests/test_material_field/material_field.yaml
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,57 @@ | ||
# SPDX-FileCopyrightText: 2023 Christian Willberg <christian.willberg@dlr.de>, Jan-Timo Hesse <jan-timo.hesse@dlr.de> | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
PeriLab: | ||
Discretization: | ||
Node Sets: | ||
Node Set 1: 1 2 3 4 5 6 7 8 9 10 11 12 | ||
Type: "Text File" | ||
Input Mesh File: "test_mesh.txt" | ||
Physics: | ||
Material Models: | ||
Mat_1: | ||
Material Model: "PD Solid Elastic" | ||
Bulk Modulus: 2.5e+3 | ||
Shear Modulus: 1.15e3 | ||
Mat_2: | ||
Material Model: "PD Solid Elastic" | ||
Bulk Modulus: 3.5e+3 | ||
Shear Modulus: 2.15e3 | ||
Blocks: | ||
block_1: | ||
Material Model: "Mat_1" | ||
Density: 2.7e-9 | ||
Horizon: 2.1 | ||
block_2: | ||
Material Model: "Mat_2" | ||
Density: 2.7e-9 | ||
Horizon: 2.1 | ||
Boundary Conditions: | ||
BC_1: | ||
Variable: "Displacements" | ||
Node Set: "Node Set 1" | ||
Coordinate: "x" | ||
Value: "0.1*y" | ||
BC_2: | ||
Variable: "Displacements" | ||
Node Set: "Node Set 1" | ||
Coordinate: "y" | ||
Value: "0.1*x" | ||
Solver: | ||
Initial Time: 0.0 | ||
Final Time: 5.0e-6 | ||
Verlet: | ||
Safety Factor: 1.0 | ||
Outputs: | ||
Output1: | ||
Output Filename: "material_field" | ||
Output Frequency: 1 | ||
Output Variables: | ||
Displacements: True | ||
Forces: True | ||
Volume: True | ||
Bulk_Modulus: True | ||
Shear_Modulus: True | ||
Young's_Modulus: True | ||
Poisson's_Ratio: True |
7 changes: 7 additions & 0 deletions
7
test/fullscale_tests/test_material_field/test_material_field.cmd
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,7 @@ | ||
DEFAULT TOLERANCE absolute 1.0E-9 | ||
COORDINATES absolute 1.0E-12 | ||
TIME STEPS absolute 1.0E-14 | ||
NODAL VARIABLES absolute 1.0E-12 | ||
DisplacementsX absolute 1.0E-9 | ||
DisplacementsY absolute 1.0E-9 | ||
DisplacementsZ absolute 1.0E-9 |
3 changes: 3 additions & 0 deletions
3
test/fullscale_tests/test_material_field/test_material_field.cmd.license
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 @@ | ||
SPDX-FileCopyrightText: 2023 Christian Willberg <christian.willberg@dlr.de>, Jan-Timo Hesse <jan-timo.hesse@dlr.de> | ||
|
||
SPDX-License-Identifier: BSD-3-Clause |
9 changes: 9 additions & 0 deletions
9
test/fullscale_tests/test_material_field/test_material_field.jl
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,9 @@ | ||
# SPDX-FileCopyrightText: 2023 Christian Willberg <christian.willberg@dlr.de>, Jan-Timo Hesse <jan-timo.hesse@dlr.de> | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
|
||
folder_name = basename(@__FILE__)[1:end-3] | ||
cd("fullscale_tests/" * folder_name) do | ||
run_perilab("material_field", 1, true, folder_name) | ||
end |
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,17 @@ | ||
# SPDX-FileCopyrightText: 2023 Christian Willberg <christian.willberg@dlr.de>, Jan-Timo Hesse <jan-timo.hesse@dlr.de> | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
header: x y block_id volume Bulk_Modulus | ||
-1.5 0 1 1.e-01 2.5e+3 | ||
-0.5 0 1 1.e-01 2.5e+3 | ||
0.5 0 1 1.e-01 3.5e+3 | ||
1.5 0 1 1.e-01 3.5e+3 | ||
-1.5 1 1 1.e-01 4.5e+3 | ||
-0.5 1 1 1.e-01 4.5e+3 | ||
0.5 1 2 1.e-01 2.5e+3 | ||
1.5 1 2 1.e-01 2.5e+3 | ||
-1.5 2 1 1.e-01 3.5e+3 | ||
-0.5 2 1 1.e-01 3.5e+3 | ||
0.5 2 2 1.e-01 4.5e+3 | ||
1.5 2 2 1.e-01 4.5e+3 |
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