38 lines
859 B
C++
38 lines
859 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
format ascii;
|
|
class dictionary;
|
|
object physicalProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType constSolidThermo;
|
|
|
|
rho
|
|
{
|
|
type uniform;
|
|
value 2000;
|
|
}
|
|
|
|
Cv
|
|
{
|
|
type uniform;
|
|
value 100;
|
|
}
|
|
|
|
kappa
|
|
{
|
|
type uniform;
|
|
value 1;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|