KASKADE 7 development version
materialProperties.hh
Go to the documentation of this file.
1/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2/* */
3/* This file is part of the library KASKADE 7 */
4/* https://www.zib.de/research/projects/kaskade7-finite-element-toolbox */
5/* */
6/* Copyright (C) 2023-2023 Zuse Institute Berlin */
7/* */
8/* KASKADE 7 is distributed under the terms of the ZIB Academic License. */
9/* see $KASKADE/academic.txt */
10/* */
11/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
12
13#ifndef MATERIALPROPERTIES_HH
14#define MATERIALPROPERTIES_HH
15
16#include <map>
17#include <string>
18
19 namespace Kaskade
20{
25 //----------------------------------------------------------------------------------------------
26
33 double massDensity(std::string const& name);
34
41 std::map<std::string,double> const& massDensities();
42
43
51 double thermalExpansion(std::string const& name, double pressure=101300);
52
59 double heatConductivity(std::string const& name);
60
67 std::map<std::string,double> const& heatConductivities();
68
75 double specificHeatCapacity(std::string const& name);
76
83 std::map<std::string,double> const& specificHeatCapacities();
84
85 //----------------------------------------------------------------------------------------------
86
93 double dynamicViscosity(std::string const& name);
94
101 std::map<std::string,double> const& dynamicViscosities();
102
103
104
105}
106
107#endif
double heatConductivity(std::string const &name)
Heat conductivity [W/m/K].
double thermalExpansion(std::string const &name, double pressure=101300)
Volumetric thermal expansion coefficient of materials.
std::map< std::string, double > const & dynamicViscosities()
A map from known material names to their dynamic viscosities.
std::map< std::string, double > const & specificHeatCapacities()
A map from known material names to their specific heat capaciities.
std::map< std::string, double > const & massDensities()
A map from known material names to their mass densities.
double dynamicViscosity(std::string const &name)
Dynamic viscosity of several materials in kg/m/s.
double massDensity(std::string const &name)
Mass density of several materials in kg/m^3.
double specificHeatCapacity(std::string const &name)
Specific heat capaciity [J/kg/K].
std::map< std::string, double > const & heatConductivities()
A map from known material names to their heat conductivities.