https://mooseframework.inl.gov
TestNewmarkTI.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 "AuxKernel.h"
13 
14 class TestNewmarkTI : public AuxKernel
15 {
16 public:
18 
24 
25  virtual ~TestNewmarkTI() {}
26 
27 protected:
28  virtual Real computeValue();
29 
31  const bool _first;
32 
35 };
virtual ~TestNewmarkTI()
Definition: TestNewmarkTI.h:25
const bool _first
Parameter that decides whether first or second derivative should be stored.
Definition: TestNewmarkTI.h:31
static InputParameters validParams()
Definition: TestNewmarkTI.C:15
TestNewmarkTI(const InputParameters &parameters)
Stores the velocity/acceleration computed using the time integrator into the provided auxvariable...
Definition: TestNewmarkTI.C:30
OutputTools< Real >::VariableValue VariableValue
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
virtual Real computeValue()
Definition: TestNewmarkTI.C:38
const InputParameters & parameters() const
const VariableValue & _value
Value of the first/second time derivative of dispalcement.
Definition: TestNewmarkTI.h:34