www.mooseframework.org
SolidMechImplicitEuler.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 
10 #pragma once
11 
13 #include "Material.h"
14 
15 // Forward Declarations
17 
18 template <>
19 InputParameters validParams<SolidMechImplicitEuler>();
20 
22 {
23 public:
24  SolidMechImplicitEuler(const InputParameters & parameters);
25 
26 protected:
27  virtual Real computeQpResidual();
28 
29  virtual Real computeQpJacobian();
30 
31  virtual Real scaling();
32 
33 private:
34  const MaterialProperty<Real> & _density;
36  const Real _artificial_scaling;
37 };
SolidMechImplicitEuler::scaling
virtual Real scaling()
Definition: SolidMechImplicitEuler.C:52
validParams< SolidMechImplicitEuler >
InputParameters validParams< SolidMechImplicitEuler >()
Definition: SolidMechImplicitEuler.C:17
SolidMechImplicitEuler::computeQpResidual
virtual Real computeQpResidual()
Definition: SolidMechImplicitEuler.C:40
SolidMechImplicitEuler
Definition: SolidMechImplicitEuler.h:21
SolidMechImplicitEuler::_density
const MaterialProperty< Real > & _density
Definition: SolidMechImplicitEuler.h:34
SolidMechImplicitEuler::_artificial_scaling_set
const bool _artificial_scaling_set
Definition: SolidMechImplicitEuler.h:35
SecondDerivativeImplicitEuler.h
SolidMechImplicitEuler::SolidMechImplicitEuler
SolidMechImplicitEuler(const InputParameters &parameters)
Definition: SolidMechImplicitEuler.C:25
SecondDerivativeImplicitEuler
Definition: SecondDerivativeImplicitEuler.h:20
SolidMechImplicitEuler::computeQpJacobian
virtual Real computeQpJacobian()
Definition: SolidMechImplicitEuler.C:46
SolidMechImplicitEuler::_artificial_scaling
const Real _artificial_scaling
Definition: SolidMechImplicitEuler.h:36