mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
205 lines
5.3 KiB
C
205 lines
5.3 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "oscillatingFixedValueFvPatchField.H"
|
|
#include "mathematicalConstants.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
scalar oscillatingFixedValueFvPatchField<Type>::currentScale() const
|
|
{
|
|
return
|
|
1.0
|
|
+ amplitude_*
|
|
sin(2*mathematicalConstant::pi*frequency_*this->db().time().value());
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
oscillatingFixedValueFvPatchField<Type>::oscillatingFixedValueFvPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF
|
|
)
|
|
:
|
|
fixedValueFvPatchField<Type>(p, iF),
|
|
refValue_(p.size()),
|
|
amplitude_(0.0),
|
|
frequency_(0.0),
|
|
curTimeIndex_(-1)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
oscillatingFixedValueFvPatchField<Type>::oscillatingFixedValueFvPatchField
|
|
(
|
|
const oscillatingFixedValueFvPatchField<Type>& ptf,
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF,
|
|
const fvPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
fixedValueFvPatchField<Type>(ptf, p, iF, mapper),
|
|
refValue_(ptf.refValue_, mapper),
|
|
amplitude_(ptf.amplitude_),
|
|
frequency_(ptf.frequency_),
|
|
curTimeIndex_(-1)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
oscillatingFixedValueFvPatchField<Type>::oscillatingFixedValueFvPatchField
|
|
(
|
|
const fvPatch& p,
|
|
const DimensionedField<Type, volMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fixedValueFvPatchField<Type>(p, iF),
|
|
refValue_("refValue", dict, p.size()),
|
|
amplitude_(readScalar(dict.lookup("amplitude"))),
|
|
frequency_(readScalar(dict.lookup("frequency"))),
|
|
curTimeIndex_(-1)
|
|
{
|
|
if (dict.found("value"))
|
|
{
|
|
fixedValueFvPatchField<Type>::operator==
|
|
(
|
|
Field<Type>("value", dict, p.size())
|
|
);
|
|
}
|
|
else
|
|
{
|
|
fixedValueFvPatchField<Type>::operator==(refValue_*currentScale());
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
oscillatingFixedValueFvPatchField<Type>::oscillatingFixedValueFvPatchField
|
|
(
|
|
const oscillatingFixedValueFvPatchField<Type>& ptf
|
|
)
|
|
:
|
|
fixedValueFvPatchField<Type>(ptf),
|
|
refValue_(ptf.refValue_),
|
|
amplitude_(ptf.amplitude_),
|
|
frequency_(ptf.frequency_),
|
|
curTimeIndex_(-1)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
oscillatingFixedValueFvPatchField<Type>::oscillatingFixedValueFvPatchField
|
|
(
|
|
const oscillatingFixedValueFvPatchField<Type>& ptf,
|
|
const DimensionedField<Type, volMesh>& iF
|
|
)
|
|
:
|
|
fixedValueFvPatchField<Type>(ptf, iF),
|
|
refValue_(ptf.refValue_),
|
|
amplitude_(ptf.amplitude_),
|
|
frequency_(ptf.frequency_),
|
|
curTimeIndex_(-1)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void oscillatingFixedValueFvPatchField<Type>::autoMap
|
|
(
|
|
const fvPatchFieldMapper& m
|
|
)
|
|
{
|
|
fixedValueFvPatchField<Type>::autoMap(m);
|
|
refValue_.autoMap(m);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void oscillatingFixedValueFvPatchField<Type>::rmap
|
|
(
|
|
const fvPatchField<Type>& ptf,
|
|
const labelList& addr
|
|
)
|
|
{
|
|
fixedValueFvPatchField<Type>::rmap(ptf, addr);
|
|
|
|
const oscillatingFixedValueFvPatchField<Type>& tiptf =
|
|
refCast<const oscillatingFixedValueFvPatchField<Type> >(ptf);
|
|
|
|
refValue_.rmap(tiptf.refValue_, addr);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void oscillatingFixedValueFvPatchField<Type>::updateCoeffs()
|
|
{
|
|
if (this->updated())
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (curTimeIndex_ != this->db().time().timeIndex())
|
|
{
|
|
Field<Type>& patchField = *this;
|
|
|
|
patchField = refValue_*currentScale();
|
|
|
|
curTimeIndex_ = this->db().time().timeIndex();
|
|
}
|
|
|
|
fixedValueFvPatchField<Type>::updateCoeffs();
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void oscillatingFixedValueFvPatchField<Type>::write(Ostream& os) const
|
|
{
|
|
fixedValueFvPatchField<Type>::write(os);
|
|
refValue_.writeEntry("refValue", os);
|
|
os.writeKeyword("amplitude")
|
|
<< amplitude_ << token::END_STATEMENT << nl;
|
|
os.writeKeyword("frequency")
|
|
<< frequency_ << token::END_STATEMENT << nl;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// ************************************************************************* //
|