Skip to content

Commit

Permalink
Update to new MOOSE module name, refs idaholab/moose#25584
Browse files Browse the repository at this point in the history
  • Loading branch information
GiudGiud committed Feb 28, 2024
1 parent 2642a06 commit e400ced
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ PHASE_FIELD := no
RDG := no
RICHARDS := no
STOCHASTIC_TOOLS := yes
TENSOR_MECHANICS := yes
SOLID_MECHANICS := yes
WATER_STEAM_EOS := no
XFEM := yes
POROUS_FLOW := no
Expand Down
6 changes: 3 additions & 3 deletions doc/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Content:
root_dir: ${MOOSE_DIR}/modules/heat_transfer/doc/content
misc:
root_dir: ${MOOSE_DIR}/modules/misc/doc/content
tensor_mechanics:
root_dir: ${MOOSE_DIR}/modules/tensor_mechanics/doc/content
solid_mechanics:
root_dir: ${MOOSE_DIR}/modules/solid_mechanics/doc/content
xfem:
root_dir: ${MOOSE_DIR}/modules/xfem/doc/content
stochastic_tools:
Expand Down Expand Up @@ -76,7 +76,7 @@ Extensions:
moose: https://github.com/idaholab/moose
categories:
framework: !include ${MOOSE_DIR}/framework/doc/sqa_framework.yml
tensor_mechanics: !include ${MOOSE_DIR}/modules/tensor_mechanics/doc/sqa_tensor_mechanics.yml
solid_mechanics: !include ${MOOSE_DIR}/modules/solid_mechanics/doc/sqa_solid_mechanics.yml
stochastic_tools: !include ${MOOSE_DIR}/modules/stochastic_tools/doc/sqa_stochastic_tools.yml
contact: !include ${MOOSE_DIR}/modules/contact/doc/sqa_contact.yml
heat_transfer: !include ${MOOSE_DIR}/modules/heat_transfer/doc/sqa_heat_transfer.yml
Expand Down
4 changes: 2 additions & 2 deletions doc/content/source/materials/ConcreteLogarithmicCreepModel.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This material represents a logarithmic viscoelastic behavior for concrete and ot

The strain is decomposed into three components: an elastic strain $\epsilon_e$, a recoverable viscoelastic strain $\epsilon_r$ and an irrecoverable creep strain $\epsilon_c$. This corresponds to a Burgers type of material with an elastic spring, a Kelvin-Voigt module, and a dashpot placed in series.

The implementation uses the linear viscoelasticity framework defined in MOOSE tensor_mechanics module.
The implementation uses the linear viscoelasticity framework defined in the MOOSE solid mechanics module.

## Elastic Strain

Expand All @@ -27,7 +27,7 @@ $C_e$ is the same elasticity tensor used for the calculation of the elastic stra

$\eta_c$ is defined using the `long_term_viscosity` parameter, and controls the slope of the creep curve in the logarithmic space.

$\tau_c$ is defined using the `long_term_characteristic_time` parameter (default value of 1 day) and controls when the logarithmic behavior starts.
$\tau_c$ is defined using the `long_term_characteristic_time` parameter (default value of 1 day) and controls when the logarithmic behavior starts.


## Recoverable Creep Strain
Expand Down
2 changes: 1 addition & 1 deletion doc/content/sqa/blackbear_sdd.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ builds on.
!template! item key=system-structure
{{app}} relies on the MOOSE framework to provide the core functionality of
solving multiphysics problems using the finite element method. It also relies
on the MOOSE modules such as [Tensor Mechanics](tensor_mechanics/index.md) and
on the MOOSE modules such as [Solid Mechanics](solid_mechanics/index.md) and
[Heat Transfer](heat_transfer/index.md) for much of its core functionality.
The structure of {{app}} is based on defining C++ classes that derive from
classes in the MOOSE framework or modules that provide functionality that is
Expand Down
2 changes: 1 addition & 1 deletion moose
Submodule moose updated 4921 files
4 changes: 2 additions & 2 deletions src/main.C
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@

#include "BlackBearTestApp.h"
#include "MooseMain.h"
#include "TensorMechanicsActionBase.h"
#include "QuasiStaticSolidMechanicsPhysicsBase.h"

// Begin the main program.
int
main(int argc, char * argv[])
{
// register inelastic strain
TensorMechanicsActionBase::addCartesianComponentOutput("inelastic_strain");
QuasiStaticSolidMechanicsPhysicsBase::addCartesianComponentOutput("inelastic_strain");

Moose::main<BlackBearTestApp>(argc, argv);

Expand Down
2 changes: 1 addition & 1 deletion unit/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ PHASE_FIELD := no
RDG := no
RICHARDS := no
STOCHASTIC_TOOLS := yes
TENSOR_MECHANICS := yes
SOLID_MECHANICS := yes
WATER_STEAM_EOS := no
XFEM := yes
POROUS_FLOW := no
Expand Down

0 comments on commit e400ced

Please sign in to comment.