From 39fc7cc957b174de5d3bb5528a361f456ef9aeeb Mon Sep 17 00:00:00 2001 From: Mark Olesen Date: Fri, 23 Sep 2022 12:34:04 +0200 Subject: [PATCH] GIT: missing tutorial files --- .../splashPanelFilm/system/faSchemes | 57 +++++++++++++++++++ .../splashPanelFilm/system/faSolution | 52 +++++++++++++++++ 2 files changed, 109 insertions(+) create mode 100644 tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/faSchemes create mode 100644 tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/faSolution diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/faSchemes b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/faSchemes new file mode 100644 index 0000000000..c7edf50c97 --- /dev/null +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/faSchemes @@ -0,0 +1,57 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2206 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object faSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default Euler; +} + +gradSchemes +{ + default Gauss linear; +} + +divSchemes +{ + default none; + div(phif_film,hf_film) Gauss upwind; + div(phi2s_film,Uf_film) Gauss upwind; + div(faceAreaNormals) Gauss linear; +} + +laplacianSchemes +{ + default none; + laplacian(hf_film) Gauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +lnGradSchemes +{ + default corrected; +} + +fluxRequired +{ + hf_film true; +} + + +// ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/faSolution b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/faSolution new file mode 100644 index 0000000000..3c9532a76f --- /dev/null +++ b/tutorials/lagrangian/reactingParcelFoam/splashPanelFilm/system/faSolution @@ -0,0 +1,52 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2206 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object faSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + Uf_film + { + solver PBiCGStab; + preconditioner DILU; + tolerance 1e-08; + relTol 0.0; + } + + hf_film + { + solver PBiCGStab; + preconditioner DILU; + tolerance 1e-08; + relTol 0.0; + } +} + +PIMPLE +{ + momentumPredictor true; + nOuterCorr 4; + nCorr 1; + nNonOrthCorr 0; + nFilmCorr 1; +} + +relaxationFactors +{ + hf_Film 1; + Uf_Film 1; +} + + +// ************************************************************************* //