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