/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Copyright (C) 2022-2024 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . \*---------------------------------------------------------------------------*/ #include "isothermalFluid.H" #include "fvCorrectPhi.H" #include "fvcMeshPhi.H" // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // void Foam::solvers::isothermalFluid::moveMesh() { if (pimple.firstIter() || pimple.moveMeshOuterCorrectors()) { // Move the mesh mesh_.move(); } } void Foam::solvers::isothermalFluid::motionCorrector() { if (pimple.firstIter() || pimple.moveMeshOuterCorrectors()) { // The rhoU field can be cleared following mesh-motion rhoU.clear(); if (mesh.changing()) { if (buoyancy.valid()) { buoyancy->moveMesh(); } MRF.update(); if (correctPhi || mesh.topoChanged()) { // Calculate absolute flux // from the mapped surface velocity phi_ = mesh.Sf() & rhoUf(); correctUphiBCs(rho, U_, phi_, true); fv::correctPhi ( phi_, buoyancy.valid() ? p_rgh : p, thermo.psi(), autoPtr(), divrhoU(), pimple ); // Make the fluxes relative to the mesh-motion MRF.makeRelative(phi_); fvc::makeRelative(phi_, rho, U); } meshCourantNo(); } } } // ************************************************************************* //