/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2007-2023 PCOpt/NTUA
Copyright (C) 2013-2023 FOSS GP
Copyright (C) 2019-2020 OpenCFD Ltd.
-------------------------------------------------------------------------------
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 "objectivePartialVolume.H"
#include "createZeroField.H"
#include "IOmanip.H"
#include "addToRunTimeSelectionTable.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
namespace objectives
{
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
defineTypeNameAndDebug(objectivePartialVolume, 1);
addToRunTimeSelectionTable
(
objectiveGeometric,
objectivePartialVolume,
dictionary
);
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
objectivePartialVolume::objectivePartialVolume
(
const fvMesh& mesh,
const dictionary& dict,
const word& adjointSolverName,
const word& primalSolverName
)
:
objectiveGeometric(mesh, dict, adjointSolverName, primalSolverName),
initVol_(Zero),
objectivePatches_
(
mesh_.boundaryMesh().patchSet
(
dict.get("patches")
).sortedToc()
)
{
// Read target volume if present. Else use the current one as a target
if
(
!objective::readIfPresent("initialVolume", initVol_)
&& !dict.readIfPresent("initialVolume", initVol_)
)
{
const scalar oneThird(1.0/3.0);
for (const label patchi : objectivePatches_)
{
const fvPatch& patch = mesh_.boundary()[patchi];
initVol_ -= oneThird*gSum(patch.Sf() & patch.Cf());
}
}
// Allocate boundary field pointers
bdxdbDirectMultPtr_.reset(createZeroBoundaryPtr(mesh_));
bdSdbMultPtr_.reset(createZeroBoundaryPtr(mesh_));
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
scalar objectivePartialVolume::J()
{
J_ = Zero;
const scalar oneThird(1.0/3.0);
for (const label patchi : objectivePatches_)
{
const fvPatch& patch = mesh_.boundary()[patchi];
J_ -= oneThird*gSum(patch.Sf() & patch.Cf());
}
J_ -= initVol_;
J_ /= initVol_;
return J_;
}
void objectivePartialVolume::update_dxdbDirectMultiplier()
{
const scalar oneThird(1.0/3.0);
for (const label patchi : objectivePatches_)
{
const fvPatch& patch = mesh_.boundary()[patchi];
tmp tnf = patch.nf();
const vectorField& nf = tnf();
bdxdbDirectMultPtr_()[patchi] = -oneThird*nf/initVol_;
}
}
void objectivePartialVolume::update_dSdbMultiplier()
{
const scalar oneThird(1.0/3.0);
for (const label patchi : objectivePatches_)
{
const fvPatch& patch = mesh_.boundary()[patchi];
bdSdbMultPtr_()[patchi] = -oneThird*patch.Cf()/initVol_;
}
}
bool objectivePartialVolume::writeData(Ostream& os) const
{
os.writeEntry("initialVolume", initVol_);
return objective::writeData(os);
}
void objectivePartialVolume::addHeaderInfo() const
{
objFunctionFilePtr_()
<< setw(4) << "#" << " "
<< setw(width_) << "VInit" << " "
<< setw(width_) << initVol_ << endl;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace objectives
} // End namespace Foam
// ************************************************************************* //