-
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.
added engineering constants feature for anisotropic material #216
- Loading branch information
Showing
16 changed files
with
422 additions
and
33 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
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
test/fullscale_tests/test_aniso/Reference/aniso_eng.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 <[email protected]>, Jan-Timo Hesse <[email protected]> | ||
|
||
SPDX-License-Identifier: BSD-3-Clause |
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
test/fullscale_tests/test_aniso/Reference/aniso_hooke.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 <[email protected]>, Jan-Timo Hesse <[email protected]> | ||
|
||
SPDX-License-Identifier: BSD-3-Clause |
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,80 @@ | ||
# SPDX-FileCopyrightText: 2023 Christian Willberg <[email protected]>, Jan-Timo Hesse <[email protected]> | ||
# | ||
# 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 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | ||
Type: "Text File" | ||
Input Mesh File: "test_mesh.txt" | ||
Models: | ||
Material Models: | ||
Mat_1: | ||
Material Model: "Correspondence Elastic" | ||
Symmetry: Anisotropic | ||
Young's Modulus X: 2.5e3 | ||
Young's Modulus Y: 2.5e3 | ||
Young's Modulus Z: 2.5e3 | ||
Poisson's Ratio XY: 0.3 | ||
Poisson's Ratio YZ: 0.3 | ||
Poisson's Ratio ZX: 0.3 | ||
Shear Modulus XY: 2.15e3 | ||
Shear Modulus YZ: 2.15e3 | ||
Shear Modulus ZX: 2.15e3 | ||
Zero Energy Control: "Global" | ||
Mat_2: | ||
Material Model: "Correspondence Elastic" | ||
Symmetry: Anisotropic | ||
Young's Modulus X: 2.5e3 | ||
Young's Modulus Y: 2.5e3 | ||
Young's Modulus Z: 2.5e3 | ||
Poisson's Ratio XY: 0.3 | ||
Poisson's Ratio YZ: 0.3 | ||
Poisson's Ratio ZX: 0.3 | ||
Shear Modulus XY: 2.15e3 | ||
Shear Modulus YZ: 2.15e3 | ||
Shear Modulus ZX: 2.15e3 | ||
Zero Energy Control: "Global" | ||
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*x" | ||
Type: Dirichlet | ||
BC_2: | ||
Variable: "Displacements" | ||
Node Set: "Node Set 1" | ||
Coordinate: "y" | ||
Value: "0.0" | ||
Type: Dirichlet | ||
BC_3: | ||
Variable: "Displacements" | ||
Node Set: "Node Set 1" | ||
Coordinate: "z" | ||
Value: "0.0" | ||
Type: Dirichlet | ||
Solver: | ||
Initial Time: 0.0 | ||
Final Time: 5.0e-6 | ||
Verlet: | ||
Safety Factor: 1.0 | ||
Outputs: | ||
Output1: | ||
Output Filename: "aniso_eng" | ||
Output File Type: Exodus | ||
Output Frequency: 1 | ||
Output Variables: | ||
Displacements: True | ||
Forces: True | ||
Volume: True |
Oops, something went wrong.