https://mooseframework.inl.gov
ChangedVariableTimeDerivative.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
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 #include "JvarMapInterface.h"
15 
20  : public DerivativeMaterialInterface<JvarMapKernelInterface<TimeDerivative>>
21 {
22 public:
24 
26  virtual void initialSetup();
27 
28 protected:
29  virtual Real computeQpResidual();
30  virtual Real computeQpJacobian();
31  virtual Real computeQpOffDiagJacobian(unsigned int jvar);
32 
35 
38 
40  std::vector<const MaterialProperty<Real> *> _d2opdudarg;
41 };
const MaterialProperty< Real > & _d2opdu2
2nd order parameter derivative
ChangedVariableTimeDerivative(const InputParameters &parameters)
const MaterialProperty< Real > & _dopdu
Order parameter derivative.
This calculates the time derivative for a variable multiplied by a generalized susceptibility.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
std::vector< const MaterialProperty< Real > * > _d2opdudarg
2nd order parameter derivative w.r.t. coupled variables
virtual Real computeQpOffDiagJacobian(unsigned int jvar)