www.mooseframework.org
NodalRankTwoComponentPD.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 
15 
16 template <>
17 InputParameters validParams<NodalRankTwoComponentPD>();
18 
23 {
24 public:
25  NodalRankTwoComponentPD(const InputParameters & parameters);
26 
27  virtual void gatherWeightedValue(unsigned int id, dof_id_type dof, Real dg_vol_frac) override;
28 
29 protected:
31  const unsigned int _i;
32  const unsigned int _j;
34 };
NodalRankTwoComponentPD::gatherWeightedValue
virtual void gatherWeightedValue(unsigned int id, dof_id_type dof, Real dg_vol_frac) override
Function to gather bond-associated quantities to each material point.
Definition: NodalRankTwoComponentPD.C:45
NodalRankTwoComponentPD::NodalRankTwoComponentPD
NodalRankTwoComponentPD(const InputParameters &parameters)
Definition: NodalRankTwoComponentPD.C:37
NodalRankTwoUserObjectBasePD
Base userobject class for rank two tensor at individual material point.
Definition: NodalRankTwoUserObjectBasePD.h:22
validParams< NodalRankTwoComponentPD >
InputParameters validParams< NodalRankTwoComponentPD >()
Definition: NodalRankTwoComponentPD.C:17
NodalRankTwoUserObjectBasePD.h
NodalRankTwoComponentPD
Userobject class to compute the component values for rank two tensor at individual material point.
Definition: NodalRankTwoComponentPD.h:22
NodalRankTwoComponentPD::_j
const unsigned int _j
Definition: NodalRankTwoComponentPD.h:32
NodalRankTwoComponentPD::_i
const unsigned int _i
Component indices.
Definition: NodalRankTwoComponentPD.h:31