www.mooseframework.org
SpecificHeatConductionTimeDerivative.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 // MOOSE includes
13 #include "TimeDerivative.h"
14 #include "JvarMapInterface.h"
16 
17 // Forward Declarations
18 
28  : public DerivativeMaterialInterface<JvarMapKernelInterface<TimeDerivative>>
29 {
30 public:
32 
34 
35 protected:
36  virtual Real computeQpResidual() override;
37  virtual Real computeQpJacobian() override;
38  virtual Real computeQpOffDiagJacobian(unsigned int jvar) override;
39 
43  std::vector<const MaterialProperty<Real> *> _d_specific_heat_dargs;
45 
49  std::vector<const MaterialProperty<Real> *> _d_density_dargs;
51 };
std::vector< const MaterialProperty< Real > * > _d_density_dargs
const MaterialProperty< Real > & _density
Density and its derivatives with respect to temperature and other coupled variables.
virtual Real computeQpOffDiagJacobian(unsigned int jvar) override
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
std::vector< const MaterialProperty< Real > * > _d_specific_heat_dargs
const MaterialProperty< Real > & _specific_heat
Specific heat and its derivatives with respect to temperature and other coupled variables.
SpecificHeatConductionTimeDerivative(const InputParameters &parameters)
A class for defining the time derivative of the heat equation.