www.mooseframework.org
JouleHeatingHeatGeneratedAux.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 
15 
16 template <>
18 
22 class JouleHeatingHeatGeneratedAux : public AuxKernel
23 {
24 public:
25  static InputParameters validParams();
26 
27  JouleHeatingHeatGeneratedAux(const InputParameters & parameters);
28 
29 protected:
30  virtual Real computeValue();
31 
32  const VariableGradient & _grad_elec;
33  const MaterialProperty<Real> & _elec_cond;
34 };
35 
JouleHeatingHeatGeneratedAux::_grad_elec
const VariableGradient & _grad_elec
Definition: JouleHeatingHeatGeneratedAux.h:32
validParams< JouleHeatingHeatGeneratedAux >
InputParameters validParams< JouleHeatingHeatGeneratedAux >()
JouleHeatingHeatGeneratedAux::_elec_cond
const MaterialProperty< Real > & _elec_cond
Definition: JouleHeatingHeatGeneratedAux.h:33
JouleHeatingHeatGeneratedAux::JouleHeatingHeatGeneratedAux
JouleHeatingHeatGeneratedAux(const InputParameters &parameters)
Definition: JouleHeatingHeatGeneratedAux.C:30
JouleHeatingHeatGeneratedAux::validParams
static InputParameters validParams()
Definition: JouleHeatingHeatGeneratedAux.C:17
JouleHeatingHeatGeneratedAux::computeValue
virtual Real computeValue()
Definition: JouleHeatingHeatGeneratedAux.C:38
JouleHeatingHeatGeneratedAux
Auxiliary kernel for computing the heat generated from Joule heating.
Definition: JouleHeatingHeatGeneratedAux.h:22