Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Orthotropy in MFront solid material models #2774

Merged
merged 10 commits into from
Feb 1, 2020
Prev Previous commit
Next Next commit
[MatL] MFront; Orthotropic elasticity.
  • Loading branch information
endJunction committed Feb 1, 2020
commit 840f319768842882b9b2fcb7f003224c1549d2be
3 changes: 2 additions & 1 deletion MaterialLib/SolidModels/MFront/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ mfront_behaviours_check_library(OgsMFrontBehaviour
Elasticity
MohrCoulombAbboSloan
MohrCoulombAbboSloanOrtho
StandardElasticityBrick)
StandardElasticityBrick
StandardElasticityBrickOrtho)

target_include_directories(MaterialLib_SolidModels_MFront
PUBLIC ThirdParty/MGIS/include)
Expand Down
28 changes: 28 additions & 0 deletions MaterialLib/SolidModels/MFront/StandardElasticityBrickOrtho.mfront
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/**
* \file
* \copyright
* Copyright (c) 2012-2020, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*/

@DSL Implicit;
@Behaviour StandardElasticityBrickOrtho;
@Author Thomas Nagel;
@Date 17/01/2020;

@Algorithm NewtonRaphson;

@OrthotropicBehaviour<Pipe>;
@Brick StandardElasticity;

@Theta 1.0; // time integration scheme
@Epsilon 1e-14; // tolerance of local stress integration algorithm
@ModellingHypotheses{".+"};

@RequireStiffnessTensor<UnAltered>;

@Integrator
{
}