https://mooseframework.inl.gov
ReactionForceAux.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 
10 #include "ReactionForceAux.h"
11 
12 registerMooseObject("SolidMechanicsApp", ReactionForceAux);
13 
16 {
18  params.addClassDescription("Extract the value of the residual from an appropriately formed tag "
19  "vector and save those values as reaction forces in an AuxVariable");
20 
21  params.set<bool>("remove_variable_scaling") = true;
22  params.suppressParameter<bool>("remove_variable_scaling");
23  params.suppressParameter<bool>("scaled");
24  return params;
25 }
26 
static InputParameters validParams()
T & set(const std::string &name, bool quiet_mode=false)
registerMooseObject("SolidMechanicsApp", ReactionForceAux)
void suppressParameter(const std::string &name)
ReactionForceAux returns the reaction force corresponding to each DOF.
static InputParameters validParams()
ReactionForceAux(const InputParameters &parameters)
void addClassDescription(const std::string &doc_string)