mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
141 lines
3.9 KiB
C
141 lines
3.9 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd.
|
|
\\/ 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 <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "oscillatingDisplacementPointPatchVectorField.H"
|
|
#include "pointPatchFields.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
#include "Time.H"
|
|
#include "polyMesh.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
oscillatingDisplacementPointPatchVectorField::
|
|
oscillatingDisplacementPointPatchVectorField
|
|
(
|
|
const pointPatch& p,
|
|
const DimensionedField<vector, pointMesh>& iF
|
|
)
|
|
:
|
|
fixedValuePointPatchField<vector>(p, iF),
|
|
amplitude_(vector::zero),
|
|
omega_(0.0)
|
|
{}
|
|
|
|
|
|
oscillatingDisplacementPointPatchVectorField::
|
|
oscillatingDisplacementPointPatchVectorField
|
|
(
|
|
const pointPatch& p,
|
|
const DimensionedField<vector, pointMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fixedValuePointPatchField<vector>(p, iF, dict),
|
|
amplitude_(dict.lookup("amplitude")),
|
|
omega_(readScalar(dict.lookup("omega")))
|
|
{
|
|
if (!dict.found("value"))
|
|
{
|
|
updateCoeffs();
|
|
}
|
|
}
|
|
|
|
|
|
oscillatingDisplacementPointPatchVectorField::
|
|
oscillatingDisplacementPointPatchVectorField
|
|
(
|
|
const oscillatingDisplacementPointPatchVectorField& ptf,
|
|
const pointPatch& p,
|
|
const DimensionedField<vector, pointMesh>& iF,
|
|
const pointPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
fixedValuePointPatchField<vector>(ptf, p, iF, mapper),
|
|
amplitude_(ptf.amplitude_),
|
|
omega_(ptf.omega_)
|
|
{}
|
|
|
|
|
|
oscillatingDisplacementPointPatchVectorField::
|
|
oscillatingDisplacementPointPatchVectorField
|
|
(
|
|
const oscillatingDisplacementPointPatchVectorField& ptf,
|
|
const DimensionedField<vector, pointMesh>& iF
|
|
)
|
|
:
|
|
fixedValuePointPatchField<vector>(ptf, iF),
|
|
amplitude_(ptf.amplitude_),
|
|
omega_(ptf.omega_)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void oscillatingDisplacementPointPatchVectorField::updateCoeffs()
|
|
{
|
|
if (this->updated())
|
|
{
|
|
return;
|
|
}
|
|
|
|
const polyMesh& mesh = this->dimensionedInternalField().mesh()();
|
|
const Time& t = mesh.time();
|
|
|
|
Field<vector>::operator=(amplitude_*sin(omega_*t.value()));
|
|
|
|
fixedValuePointPatchField<vector>::updateCoeffs();
|
|
}
|
|
|
|
|
|
void oscillatingDisplacementPointPatchVectorField::write(Ostream& os) const
|
|
{
|
|
pointPatchField<vector>::write(os);
|
|
os.writeKeyword("amplitude")
|
|
<< amplitude_ << token::END_STATEMENT << nl;
|
|
os.writeKeyword("omega")
|
|
<< omega_ << token::END_STATEMENT << nl;
|
|
writeEntry("value", os);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
makePointPatchTypeField
|
|
(
|
|
pointPatchVectorField,
|
|
oscillatingDisplacementPointPatchVectorField
|
|
);
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// ************************************************************************* //
|