/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2018-2019 OpenFOAM Foundation ------------------------------------------------------------------------------- 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 "phaseForces.H" #include "addToRunTimeSelectionTable.H" #include "BlendedInterfacialModel.H" #include "dragModel.H" #include "virtualMassModel.H" #include "liftModel.H" #include "wallLubricationModel.H" #include "turbulentDispersionModel.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // namespace Foam { namespace functionObjects { defineTypeNameAndDebug(phaseForces, 0); addToRunTimeSelectionTable(functionObject, phaseForces, dictionary); } } // * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * * // template Foam::tmp Foam::functionObjects::phaseForces::nonDragForce(const phasePair& pair) const { const BlendedInterfacialModel& model = fluid_.lookupBlendedSubModel(pair); if (&pair.phase1() == &phase_) { return model.template F(); } else { return -model.template F(); } } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::functionObjects::phaseForces::phaseForces ( const word& name, const Time& runTime, const dictionary& dict ) : fvMeshFunctionObject(name, runTime, dict), phase_ ( mesh_.lookupObject ( IOobject::groupName("alpha", dict.get("phase")) ) ), fluid_(mesh_.lookupObject("phaseProperties")) { read(dict); forAllConstIter ( phaseSystem::phasePairTable, fluid_.phasePairs(), iter ) { const phasePair& pair = iter(); if (pair.contains(phase_) && !pair.ordered()) { if (fluid_.foundBlendedSubModel(pair)) { forceFields_.set ( dragModel::typeName, new volVectorField ( IOobject ( IOobject::groupName("dragForce", phase_.name()), mesh_.time().timeName(), mesh_ ), mesh_, dimensionedVector(dimForce/dimVolume) ) ); } if (fluid_.foundBlendedSubModel(pair)) { forceFields_.set ( virtualMassModel::typeName, new volVectorField ( IOobject ( IOobject::groupName ( "virtualMassForce", phase_.name() ), mesh_.time().timeName(), mesh_ ), mesh_, dimensionedVector(dimForce/dimVolume) ) ); } if (fluid_.foundBlendedSubModel(pair)) { forceFields_.set ( liftModel::typeName, new volVectorField ( IOobject ( IOobject::groupName("liftForce", phase_.name()), mesh_.time().timeName(), mesh_ ), mesh_, dimensionedVector(dimForce/dimVolume) ) ); } if (fluid_.foundBlendedSubModel(pair)) { forceFields_.set ( wallLubricationModel::typeName, new volVectorField ( IOobject ( IOobject::groupName ( "wallLubricationForce", phase_.name() ), mesh_.time().timeName(), mesh_ ), mesh_, dimensionedVector(dimForce/dimVolume) ) ); } if (fluid_.foundBlendedSubModel(pair)) { forceFields_.set ( turbulentDispersionModel::typeName, new volVectorField ( IOobject ( IOobject::groupName ( "turbulentDispersionForce", phase_.name() ), mesh_.time().timeName(), mesh_ ), mesh_, dimensionedVector(dimForce/dimVolume) ) ); } } } } // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // Foam::functionObjects::phaseForces::~phaseForces() {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // bool Foam::functionObjects::phaseForces::read(const dictionary& dict) { fvMeshFunctionObject::read(dict); return true; } bool Foam::functionObjects::phaseForces::execute() { forAllIter ( HashPtrTable, forceFields_, iter ) { const word& type = iter.key(); volVectorField& force = *iter(); force *= 0.0; forAllConstIter ( phaseSystem::phasePairTable, fluid_.phasePairs(), iter2 ) { const phasePair& pair = iter2(); if (pair.contains(phase_) && !pair.ordered()) { if (type == "dragModel") { force += fluid_.lookupBlendedSubModel(pair).K() *(pair.otherPhase(phase_).U() - phase_.U()); } if (type == "virtualMassModel") { force += fluid_.lookupBlendedSubModel(pair).K() *( pair.otherPhase(phase_).DUDt() - phase_.DUDt() ); } if (type == "liftModel") { force = nonDragForce(pair); } if (type == "wallLubricationModel") { force = nonDragForce(pair); } if (type == "turbulentDispersionModel") { force = nonDragForce(pair); } } } } return true; } bool Foam::functionObjects::phaseForces::write() { forAllIter ( HashPtrTable, forceFields_, iter ) { writeObject(iter()->name()); } return true; } // ************************************************************************* //