www.mooseframework.org
CylindricalRankTwoAux.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 "AuxKernel.h"
13 #include "RankTwoTensor.h"
14 
22 
23 template <>
24 InputParameters validParams<CylindricalRankTwoAux>();
25 
26 class CylindricalRankTwoAux : public AuxKernel
27 {
28 public:
29  static InputParameters validParams();
30 
31  CylindricalRankTwoAux(const InputParameters & parameters);
33 
34 protected:
35  virtual Real computeValue();
36  const MaterialProperty<RankTwoTensor> & _tensor;
37  const unsigned int _i;
38  const unsigned int _j;
39  const Point _center_point;
40 };
validParams< CylindricalRankTwoAux >
InputParameters validParams< CylindricalRankTwoAux >()
CylindricalRankTwoAux
Definition: CylindricalRankTwoAux.h:26
CylindricalRankTwoAux::validParams
static InputParameters validParams()
Definition: CylindricalRankTwoAux.C:17
CylindricalRankTwoAux::_tensor
const MaterialProperty< RankTwoTensor > & _tensor
Definition: CylindricalRankTwoAux.h:36
CylindricalRankTwoAux::computeValue
virtual Real computeValue()
Definition: CylindricalRankTwoAux.C:47
CylindricalRankTwoAux::_j
const unsigned int _j
Definition: CylindricalRankTwoAux.h:38
CylindricalRankTwoAux::_i
const unsigned int _i
Definition: CylindricalRankTwoAux.h:37
CylindricalRankTwoAux::CylindricalRankTwoAux
CylindricalRankTwoAux(const InputParameters &parameters)
Definition: CylindricalRankTwoAux.C:37
CylindricalRankTwoAux::_center_point
const Point _center_point
Definition: CylindricalRankTwoAux.h:39
CylindricalRankTwoAux::~CylindricalRankTwoAux
virtual ~CylindricalRankTwoAux()
Definition: CylindricalRankTwoAux.h:32