www.mooseframework.org
TestMatTimeDerivative.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 "TimeDerivative.h"
13 
14 // Forward Declaration
16 
17 template<>
18 InputParameters validParams<TestMatTimeDerivative>();
19 
20 class TestMatTimeDerivative : public TimeDerivative
21 {
22 public:
23  TestMatTimeDerivative(const InputParameters & parameters);
24 
25 protected:
26  virtual Real computeQpResidual() override;
27  virtual Real computeQpJacobian() override;
28  const MaterialProperty<Real> & _mat_prop_value;
29 
30 };
31 
TestMatTimeDerivative::TestMatTimeDerivative
TestMatTimeDerivative(const InputParameters &parameters)
Definition: TestMatTimeDerivative.C:25
TestMatTimeDerivative::_mat_prop_value
const MaterialProperty< Real > & _mat_prop_value
Definition: TestMatTimeDerivative.h:28
TestMatTimeDerivative::computeQpResidual
virtual Real computeQpResidual() override
Definition: TestMatTimeDerivative.C:30
TestMatTimeDerivative
Definition: TestMatTimeDerivative.h:20
validParams< TestMatTimeDerivative >
InputParameters validParams< TestMatTimeDerivative >()
Definition: TestMatTimeDerivative.C:16
TestMatTimeDerivative::computeQpJacobian
virtual Real computeQpJacobian() override
Definition: TestMatTimeDerivative.C:35