mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
68 lines
2.0 KiB
C++
68 lines
2.0 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev.FMGlobal |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "system/wallFilmRegion";
|
|
object fvSchemes;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
ddtSchemes
|
|
{
|
|
default none;
|
|
ddt(deltaf*rhof) Euler;
|
|
ddt(rhof,deltaf) Euler;
|
|
ddt(deltaf*rhof,Uf) Euler;
|
|
ddt(deltaf*rhof,hsf) Euler;
|
|
}
|
|
|
|
divSchemes
|
|
{
|
|
default none;
|
|
div(phi,Uf) Gauss upwind;
|
|
div(phid,deltaf) Gauss upwind;
|
|
div(phi,hsf) Gauss upwind;
|
|
}
|
|
|
|
gradSchemes
|
|
{
|
|
default none;
|
|
grad(pL) Gauss linear;
|
|
snGradCorr(deltaf) Gauss linear;
|
|
snGradCorr(pp) Gauss linear;
|
|
snGradCorr(pu) Gauss linear;
|
|
}
|
|
|
|
laplacianSchemes
|
|
{
|
|
default none;
|
|
laplacian(sigmaf,deltaf) Gauss linear uncorrected;
|
|
// laplacian((interpolate(((deltaf*rhof)*(1|A(Uf))))*interpolate(pp)),deltaf) Gauss linear uncorrected;
|
|
// laplacian((interpolate((deltaf*rhof*(1|A(Uf))))*interpolate(pp)),deltaf) Gauss linear uncorrected;
|
|
// laplacian(((interpolate(deltaf)*interpolate((deltaf*rhof*(1|A(Uf)))))*interpolate(pp)),deltaf) Gauss linear uncorrected;
|
|
laplacian((((interpolate(deltaf)*interpolate((deltaf*(1|A(Uf)))))*interpolate(rhof))*interpolate(pp)),deltaf) Gauss linear uncorrected;
|
|
}
|
|
|
|
snGradSchemes
|
|
{
|
|
snGrad(p) uncorrected;
|
|
snGrad(deltaf) uncorrected;
|
|
}
|
|
|
|
fluxRequired
|
|
{
|
|
default no;
|
|
deltaf;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|