-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into adding-plane-strain-Timoshenko-beams
- Loading branch information
Showing
130 changed files
with
1,863 additions
and
1,128 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
316 changes: 121 additions & 195 deletions
316
...orthotropy/generic_anisotropic_3d_law.cpp → ...py_orthotropy/generic_anisotropic_law.cpp
Large diffs are not rendered by default.
Oops, something went wrong.
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
48 changes: 48 additions & 0 deletions
48
...stitutive/small_strains/anisotropy_orthotropy/generic_anisotropic_plane_stress_2d_law.cpp
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,48 @@ | ||
// KRATOS ___ _ _ _ _ _ __ _ | ||
// / __\___ _ __ ___| |_(_) |_ _ _| |_(_)_ _____ / / __ ___ _____ /_\ _ __ _ __ | ||
// / / / _ \| '_ \/ __| __| | __| | | | __| \ \ / / _ \/ / / _` \ \ /\ / / __| //_\\| '_ \| '_ | | ||
// / /__| (_) | | | \__ \ |_| | |_| |_| | |_| |\ V / __/ /__| (_| |\ V V /\__ \/ _ \ |_) | |_) | | ||
// \____/\___/|_| |_|___/\__|_|\__|\__,_|\__|_| \_/ \___\____/\__,_| \_/\_/ |___/\_/ \_/ .__/| .__/ | ||
// |_| |_| | ||
// | ||
// License: BSD License | ||
// license: structural_mechanics_application/license.txt | ||
// | ||
// Main authors: Alejandro Cornejo | ||
// | ||
// | ||
|
||
// System includes | ||
|
||
// External includes | ||
|
||
// Project includes | ||
|
||
#include "generic_anisotropic_plane_stress_2d_law.h" | ||
#include "custom_utilities/advanced_constitutive_law_utilities.h" | ||
|
||
namespace Kratos | ||
{ | ||
|
||
/***********************************************************************************/ | ||
/***********************************************************************************/ | ||
|
||
ConstitutiveLaw::Pointer GenericAnisotropicPlaneStress2DLaw::Create(Kratos::Parameters NewParameters) const | ||
{ | ||
return Kratos::make_shared<GenericAnisotropicPlaneStress2DLaw>(); | ||
} | ||
|
||
/***********************************************************************************/ | ||
/***********************************************************************************/ | ||
|
||
void GenericAnisotropicPlaneStress2DLaw::CalculateOrthotropicElasticMatrix( | ||
BoundedMatrixVoigtType& rElasticityTensor, | ||
const Properties& rMaterialProperties) | ||
{ | ||
AdvancedConstitutiveLawUtilities<VoigtSize>::CalculateOrthotropicElasticMatrixPlaneStress(rElasticityTensor, rMaterialProperties); | ||
} | ||
|
||
/***********************************************************************************/ | ||
/***********************************************************************************/ | ||
|
||
} // namespace Kratos |
Oops, something went wrong.