Loading...
Searching...
No Matches
sixDoFRigidBodyDisplacementPointPatchVectorField.C
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2011-2016 OpenFOAM Foundation
9 Copyright (C) 2020 OpenCFD Ltd.
10-------------------------------------------------------------------------------
11License
12 This file is part of OpenFOAM.
13
14 OpenFOAM is free software: you can redistribute it and/or modify it
15 under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26
27\*---------------------------------------------------------------------------*/
28
30#include "pointPatchFields.H"
32#include "Time.H"
33#include "fvMesh.H"
34#include "volFields.H"
36#include "forces.H"
37
38// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
39
40namespace Foam
41{
42
43// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
44
47(
48 const pointPatch& p,
50)
51:
53 motion_(db().time()),
54 initialPoints_(p.localPoints()),
55 rhoInf_(1.0),
56 rhoName_("rho"),
57 lookupGravity_(-1),
58 g_(Zero),
59 curTimeIndex_(-1)
60{}
61
62
65(
66 const pointPatch& p,
68 const dictionary& dict
69)
70:
72 motion_(dict, dict, db().time()),
73 rhoInf_(1.0),
74 rhoName_(dict.getOrDefault<word>("rho", "rho")),
75 lookupGravity_(-1),
76 g_(Zero),
77 curTimeIndex_(-1)
78{
79 if (rhoName_ == "rhoInf")
80 {
81 dict.readEntry("rhoInf", rhoInf_);
82 }
83
84 if (dict.readIfPresent("g", g_))
85 {
86 lookupGravity_ = -2;
87 }
88
89 if (!dict.found("value"))
90 {
91 updateCoeffs();
92 }
93
94 if (dict.found("initialPoints"))
95 {
96 initialPoints_ = vectorField("initialPoints", dict , p.size());
97 }
98 else
99 {
100 initialPoints_ = p.localPoints();
101 }
102}
103
104
107(
109 const pointPatch& p,
111 const pointPatchFieldMapper& mapper
112)
113:
114 fixedValuePointPatchField<vector>(ptf, p, iF, mapper),
115 motion_(ptf.motion_),
116 initialPoints_(ptf.initialPoints_, mapper),
117 rhoInf_(ptf.rhoInf_),
118 rhoName_(ptf.rhoName_),
119 lookupGravity_(ptf.lookupGravity_),
120 g_(ptf.g_),
121 curTimeIndex_(-1)
122{}
123
124
127(
130)
131:
133 motion_(ptf.motion_),
134 initialPoints_(ptf.initialPoints_),
135 rhoInf_(ptf.rhoInf_),
136 rhoName_(ptf.rhoName_),
137 lookupGravity_(ptf.lookupGravity_),
138 g_(ptf.g_),
139 curTimeIndex_(-1)
140{}
141
142
143// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
144
146(
147 const pointPatchFieldMapper& m
148)
151
152 initialPoints_.autoMap(m);
153}
154
155
157(
158 const pointPatchField<vector>& ptf,
159 const labelList& addr
160)
161{
166
167 initialPoints_.rmap(sDoFptf.initialPoints_, addr);
168}
169
170
172{
173 if (this->updated())
174 {
175 return;
176 }
177
178 if (lookupGravity_ < 0)
179 {
180 if (db().time().foundObject<uniformDimensionedVectorField>("g"))
181 {
182 if (lookupGravity_ == -2)
183 {
185 << "Specifying the value of g in this boundary condition "
186 << "when g is available from the database is considered "
187 << "a fatal error to avoid the possibility of inconsistency"
188 << exit(FatalError);
189 }
190 else
191 {
192 lookupGravity_ = 1;
193 }
194 }
195 else
196 {
197 lookupGravity_ = 0;
198 }
199 }
200
201 const polyMesh& mesh = this->internalField().mesh()();
202 const Time& t = mesh.time();
203 const pointPatch& ptPatch = this->patch();
204
205 // Store the motion state at the beginning of the time-step
206 bool firstIter = false;
207 if (curTimeIndex_ != t.timeIndex())
208 {
209 motion_.newTime();
210 curTimeIndex_ = t.timeIndex();
211 firstIter = true;
212 }
213
214 dictionary forcesDict;
215
216 forcesDict.add("type", functionObjects::forces::typeName);
217 forcesDict.add("patches", wordList(1, ptPatch.name()));
218 forcesDict.add("rhoInf", rhoInf_);
219 forcesDict.add("rho", rhoName_);
220 forcesDict.add("CofR", motion_.centreOfRotation());
221
222 functionObjects::forces f("forces", db(), forcesDict);
223
224 f.calcForcesMoments();
225
226 // Get the forces on the patch faces at the current positions
227
228 if (lookupGravity_ == 1)
229 {
232
233 g_ = g.value();
234 }
235
236 // scalar ramp = clamp((t.value() - 5)/10, zero_one{});
237 scalar ramp = 1.0;
238
239 motion_.update
240 (
241 firstIter,
242 ramp*(f.forceEff() + motion_.mass()*g_),
243 ramp*(f.momentEff() + motion_.mass()*(motion_.momentArm() ^ g_)),
244 t.deltaTValue(),
245 t.deltaT0Value()
246 );
247
249 (
250 motion_.transform(initialPoints_) - initialPoints_
251 );
252
254}
255
256
258{
260
261 os.writeEntry("rho", rhoName_);
262
263 if (rhoName_ == "rhoInf")
264 {
265 os.writeEntry("rhoInf", rhoInf_);
266 }
267
268 if (lookupGravity_ == 0 || lookupGravity_ == -2)
269 {
270 os.writeEntry("g", g_);
271 }
272
273 motion_.write(os);
274
275 initialPoints_.writeEntry("initialPoints", os);
277 this->writeValueEntry(os);
278}
279
280
281// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
282
284(
286 sixDoFRigidBodyDisplacementPointPatchVectorField
287);
288
289// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
290
291} // End namespace Foam
292
293// ************************************************************************* //
Macros for easy insertion into run-time selection tables.
if(patchID !=-1)
const uniformDimensionedVectorField & g
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
const Mesh & mesh() const noexcept
Return const reference to mesh.
Generic templated field type that is much like a Foam::List except that it is expected to hold numeri...
Definition Field.H:172
void autoMap(const FieldMapper &map, const bool applyFlip=true)
Map from self.
Definition Field.C:465
constexpr Field() noexcept
void rmap(const UList< Type > &mapF, const labelUList &mapAddressing)
1 to 1 reverse-map from the given field
Definition Field.C:528
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition Ostream.H:59
label timeIndex() const noexcept
Return the current time index.
Definition TimeStateI.H:43
scalar deltaTValue() const noexcept
Return time step value.
Definition TimeStateI.H:49
scalar deltaT0Value() const noexcept
Return old time step value.
Definition TimeStateI.H:55
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition Time.H:75
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition dictionary.H:133
entry * add(entry *entryPtr, bool mergeEntry=false)
Add a new entry.
Definition dictionary.C:625
const Type & value() const noexcept
Return const reference to value.
A FixedValue boundary condition for pointField.
fixedValuePointPatchField(const pointPatch &, const DimensionedField< vector, pointMesh > &)
Computes forces and moments over a given list of patches by integrating pressure and viscous forces a...
Definition forces.H:321
const Time & time() const noexcept
Return time registry.
const Type & lookupObject(const word &name, const bool recursive=false) const
Lookup and return const reference to the object of the given Type. Fatal if not found or the wrong ty...
const word & name() const noexcept
The patch name.
const Time & time() const
Return Time from polyMesh.
Definition pointMesh.H:209
const pointPatch & patch() const noexcept
Return the patch.
const objectRegistry & db() const
The associated objectRegistry.
bool updated() const noexcept
True if the boundary condition has already been updated.
Foam::pointPatchFieldMapper.
Abstract base class for point-mesh patch fields.
virtual void write(Ostream &os) const
Write.
const DimensionedField< vector, pointMesh > & internalField() const noexcept
Basic pointPatch represents a set of points from the mesh.
Definition pointPatch.H:67
Mesh consisting of general polyhedral cells.
Definition polyMesh.H:79
virtual void autoMap(const pointPatchFieldMapper &)
Map (and resize as needed) from self given a mapping object.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
virtual void rmap(const pointPatchField< vector > &, const labelList &)
Reverse map the given pointPatchField onto this pointPatchField.
sixDoFRigidBodyDisplacementPointPatchVectorField(const pointPatch &, const DimensionedField< vector, pointMesh > &)
Construct from patch and internal field.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
A class for handling words, derived from Foam::string.
Definition word.H:66
volScalarField & p
dynamicFvMesh & mesh
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition error.H:600
OBJstream os(runTime.globalPath()/outputName)
Namespace for OpenFOAM.
Type & refCast(U &obj)
A dynamic_cast (for references) to Type reference.
Definition typeInfo.H:172
List< word > wordList
List of word.
Definition fileName.H:60
List< label > labelList
A List of labels.
Definition List.H:62
UniformDimensionedField< vector > uniformDimensionedVectorField
pointPatchField< vector > pointPatchVectorField
static constexpr const zero Zero
Global zero (0).
Definition zero.H:127
error FatalError
Error stream (stdout output on all processes), with additional 'FOAM FATAL ERROR' header text and sta...
Vector< scalar > vector
Definition vector.H:57
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition errorManip.H:125
#define makePointPatchTypeField(PatchTypeField, typePatchTypeField)
Define a concrete pointPatchField type and add to run-time tables Example, (pointPatchScalarField,...
labelList f(nPoints)
dictionary dict
Various UniformDimensionedField types.