37 lines
1.3 KiB
C++
37 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: plus |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "system";
|
|
object fvOptions;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
iceZone
|
|
{
|
|
type solidificationMeltingSource;
|
|
active on;
|
|
|
|
solidificationMeltingSourceCoeffs
|
|
{
|
|
selectionMode all;
|
|
|
|
Tmelt 273;
|
|
L 334000; // enthalpy of fusion for water [J/kg]
|
|
thermoMode thermo; // retrieve thermo properties from themo model
|
|
beta 50e-6; // thermal expansion coeff [1/K]
|
|
|
|
rhoRef 1000;
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|