https://mooseframework.inl.gov
WaveSpeed.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 "Material.h"
13 
20 class WaveSpeed : public Material
21 {
22 public:
24 
26 
27 protected:
28  virtual void computeQpProperties();
29 
30 private:
33 
36 
39 };
static InputParameters validParams()
Definition: WaveSpeed.C:21
const MaterialProperty< Real > & _effective_stiffness
Effective stiffness of element: function of material properties and element size. ...
Definition: WaveSpeed.h:38
This material computes the wave speed for dynamic simulations using the Young&#39;s modulus (or equivalen...
Definition: WaveSpeed.h:20
const MaterialProperty< Real > & _material_density
Density of the material.
Definition: WaveSpeed.h:35
WaveSpeed(const InputParameters &parameters)
Definition: WaveSpeed.C:34
const InputParameters & parameters() const
MaterialProperty< Real > & _wave_speed
The wave speed material generated here.
Definition: WaveSpeed.h:32
virtual void computeQpProperties()
Definition: WaveSpeed.C:43