www.mooseframework.org
GeneralizedPlaneStrainAction.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 
12 #include "Action.h"
13 
15 
16 template <>
18 
19 class GeneralizedPlaneStrainAction : public Action
20 {
21 public:
22  static InputParameters validParams();
23 
24  GeneralizedPlaneStrainAction(const InputParameters & params);
25 
26  void act() override;
27 
28 protected:
29  std::vector<VariableName> _displacements;
30  unsigned int _ndisp;
31  const unsigned int _out_of_plane_direction;
32 };
GeneralizedPlaneStrainAction::GeneralizedPlaneStrainAction
GeneralizedPlaneStrainAction(const InputParameters &params)
Definition: GeneralizedPlaneStrainAction.C:59
GeneralizedPlaneStrainAction
Definition: GeneralizedPlaneStrainAction.h:19
GeneralizedPlaneStrainAction::_displacements
std::vector< VariableName > _displacements
Definition: GeneralizedPlaneStrainAction.h:29
GeneralizedPlaneStrainAction::validParams
static InputParameters validParams()
Definition: GeneralizedPlaneStrainAction.C:26
GeneralizedPlaneStrainAction::act
void act() override
Definition: GeneralizedPlaneStrainAction.C:68
validParams< GeneralizedPlaneStrainAction >
InputParameters validParams< GeneralizedPlaneStrainAction >()
GeneralizedPlaneStrainAction::_ndisp
unsigned int _ndisp
Definition: GeneralizedPlaneStrainAction.h:30
GeneralizedPlaneStrainAction::_out_of_plane_direction
const unsigned int _out_of_plane_direction
Definition: GeneralizedPlaneStrainAction.h:31