https://mooseframework.inl.gov
CriticalTimeStep.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 "ElementPostprocessor.h"
13 #include "GuaranteeConsumer.h"
14 #include "ComputeStressBase.h"
15 
21 // Forward Declarations
22 
24 {
25 public:
27 
29 
30  virtual void initialize() override;
31  virtual void execute() override;
32  virtual void initialSetup() override;
33 
34  virtual void finalize() override;
35  virtual Real getValue() const override;
36  virtual void threadJoin(const UserObject & y) override;
37 
38 protected:
41 
44 
47 
49  const Real & _factor;
50 
53 };
Compute the critical time step for an explicit integration scheme by inferring an effective_stiffness...
const MaterialProperty< Real > & _effective_stiffness
Effective stiffness of element: function of material properties and element size. ...
const MaterialProperty< Real > * _density_scaling
Added density due to mass scaling (zero if no scaling is selected or applied)
const MaterialProperty< Real > & _material_density
Density of the material.
const std::vector< double > y
virtual void initialize() override
CriticalTimeStep(const InputParameters &parameters)
virtual Real getValue() const override
virtual void initialSetup() override
virtual void finalize() override
virtual void execute() override
static InputParameters validParams()
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const Real & _factor
User defined factor to be multiplied to the critical time step.
virtual void threadJoin(const UserObject &y) override
const InputParameters & parameters() const
Add-on class that provides the functionality to check if guarantees for material properties are provi...
Real _critical_time
Critical time step for explicit solver.