-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GeoMechanicsApplication] Remove swapping faces in condition process (#…
…12227) * Removed face swapping for Triangle3D3, and 3D6, Fixed the existing test cases * Removed face swapping for Quadrilateral3D4, and Quadrilateral3D8, Added 2 test cases to thermal * Fix sign of the normal stresses for 3D cases * Added new test to the test_GeoMechanicsApplication.py script --------- Co-authored-by: mnabideltares <[email protected]>
- Loading branch information
Showing
28 changed files
with
5,408 additions
and
172 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
29 changes: 29 additions & 0 deletions
29
applications/GeoMechanicsApplication/tests/hexa_8n_normal_load/MaterialParameters.json
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 @@ | ||
{ | ||
"properties": [{ | ||
"model_part_name": "PorousDomain.Soil", | ||
"properties_id": 1, | ||
"Material": { | ||
"constitutive_law": { | ||
"name" : "LinearElastic3DLaw" | ||
}, | ||
"Variables": { | ||
"IGNORE_UNDRAINED" : true, | ||
"YOUNG_MODULUS" : 3.0e7, | ||
"POISSON_RATIO" : 0, | ||
"DENSITY_SOLID" : 0, | ||
"DENSITY_WATER" : 1.0e3, | ||
"POROSITY" : 0.3, | ||
"BULK_MODULUS_SOLID" : 1.0e16, | ||
"BULK_MODULUS_FLUID" : 2.0e-30, | ||
"PERMEABILITY_XX" : 4.5e-30, | ||
"PERMEABILITY_YY" : 4.5e-30, | ||
"PERMEABILITY_ZZ" : 4.5e-30, | ||
"PERMEABILITY_XY" : 0.0, | ||
"PERMEABILITY_YZ" : 0.0, | ||
"PERMEABILITY_ZX" : 0.0, | ||
"DYNAMIC_VISCOSITY" : 1.0e-3 | ||
}, | ||
"Tables": {} | ||
} | ||
}] | ||
} |
Oops, something went wrong.