https://mooseframework.inl.gov
Loading...
Searching...
No Matches
ComputeSmallStrainConstantHorizonMaterialBPD.C
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
11
13
16{
18 params.addClassDescription("Class for computing peridynamic micro elastic modulus for bond-based "
19 "model using regular uniform mesh");
20
21 return params;
22}
23
29
30void
32{
33 _Cij = 0.5 * (6.0 * _dim * _bulk_modulus / (M_PI * std::pow(_horizon_radius[0], _dim + 1)) +
34 6.0 * _dim * _bulk_modulus / (M_PI * std::pow(_horizon_radius[1], _dim + 1)));
35}
registerMooseObject("PeridynamicsApp", ComputeSmallStrainConstantHorizonMaterialBPD)
Material class for bond based peridynamic solid mechanics model based on regular spatial discretizati...
virtual void computePeridynamicsParams() override
Function to compute the micro-moduli for bond-based and ordinary state-based models.
Base material class for bond based peridynamic solid mechanics models.
void addClassDescription(const std::string &doc_string)