www.mooseframework.org
TimeNodalKernel.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 "NodalKernel.h"
13 
14 // Forward Declarations
15 class TimeNodalKernel;
16 class Function;
17 
18 template <>
20 
25 {
26 public:
31 
33 
34 protected:
35  virtual void computeResidual() override;
36 
39 
42 };
43 
TimeNodalKernel::_u_dot
const VariableValue & _u_dot
Time derivative of u.
Definition: TimeNodalKernel.h:38
TimeNodalKernel
Represents a simple ODE of du/dt - rate = 0.
Definition: TimeNodalKernel.h:24
MooseObject::parameters
const InputParameters & parameters() const
Get the parameters of the object.
Definition: MooseObject.h:76
validParams< TimeNodalKernel >
InputParameters validParams< TimeNodalKernel >()
InputParameters
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
Definition: InputParameters.h:53
NodalKernel
Base class for creating new types of boundary conditions.
Definition: NodalKernel.h:48
TimeNodalKernel::validParams
static InputParameters validParams()
Constructor initializes the rate.
Definition: TimeNodalKernel.C:20
TimeNodalKernel::_du_dot_du
const VariableValue & _du_dot_du
Derivative of u_dot with respect to u.
Definition: TimeNodalKernel.h:41
MooseArray
forward declarations
Definition: MooseArray.h:16
TimeNodalKernel::computeResidual
virtual void computeResidual() override
Compute the residual at the current node.
Definition: TimeNodalKernel.C:36
Function
Base class for function objects.
Definition: Function.h:40
NodalKernel.h
TimeNodalKernel::TimeNodalKernel
TimeNodalKernel(const InputParameters &parameters)
Definition: TimeNodalKernel.C:30