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 -------------------------------------------------------------------------------
11 License
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 
40 namespace 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 )
149 {
151 
152  initialPoints_.autoMap(m);
153 }
154 
155 
157 (
158  const pointPatchField<vector>& ptf,
159  const labelList& addr
160 )
161 {
163  refCast<const sixDoFRigidBodyDisplacementPointPatchVectorField>(ptf);
164 
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.calcForcesMoment();
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 = min(max((t.value() - 5)/10, 0), 1);
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);
276 
277  writeEntry("value", os);
278 }
279 
280 
281 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
282 
284 (
287 );
288 
289 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
290 
291 } // End namespace Foam
292 
293 // ************************************************************************* //
volFields.H
Foam::sixDoFRigidBodyMotion::newTime
void newTime()
Store the motion state at the beginning of the time-step.
Definition: sixDoFRigidBodyMotionI.H:279
p
volScalarField & p
Definition: createFieldRefs.H:8
Foam::Time
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition: Time.H:73
Foam::sixDoFRigidBodyMotion::mass
scalar mass() const
Return the mass.
Definition: sixDoFRigidBodyMotionI.H:211
Foam::word
A class for handling words, derived from Foam::string.
Definition: word.H:65
Foam::functionObjects::forces
Calculates the forces and moments by integrating the pressure and skin-friction forces over a given l...
Definition: forces.H:236
Foam::Zero
static constexpr const zero Zero
Global zero (0)
Definition: zero.H:131
Foam::dictionary::found
bool found(const word &keyword, enum keyType::option matchOpt=keyType::REGEX) const
Search for an entry (const access) with the given keyword.
Definition: dictionaryI.H:87
Foam::pointPatchField< vector >::db
const objectRegistry & db() const
Return local objectRegistry.
Definition: pointPatchField.C:110
Foam::pointPatch
Basic pointPatch represents a set of points from the mesh.
Definition: pointPatch.H:58
Foam::sixDoFRigidBodyDisplacementPointPatchVectorField::updateCoeffs
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
Definition: sixDoFRigidBodyDisplacementPointPatchVectorField.C:171
Foam::pointPatchField< vector >
Foam::polyMesh
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:77
Foam::pointPatchField< vector >::patch
const pointPatch & patch() const
Return patch.
Definition: pointPatchField.H:268
Foam::pointPatchFieldMapper
Foam::pointPatchFieldMapper.
Definition: pointPatchFieldMapper.H:48
Foam::TimeState::deltaTValue
scalar deltaTValue() const noexcept
Return time step value.
Definition: TimeStateI.H:43
Foam::vectorField
Field< vector > vectorField
Specialisation of Field<T> for vector.
Definition: primitiveFieldsFwd.H:54
Foam::sixDoFRigidBodyMotion::write
void write(Ostream &) const
Write.
Definition: sixDoFRigidBodyMotionIO.C:53
Foam::wordList
List< word > wordList
A List of words.
Definition: fileName.H:62
Foam::TimeState::deltaT0Value
scalar deltaT0Value() const noexcept
Return old time step value.
Definition: TimeStateI.H:49
Foam::sixDoFRigidBodyDisplacementPointPatchVectorField
Foam::sixDoFRigidBodyDisplacementPointPatchVectorField.
Definition: sixDoFRigidBodyDisplacementPointPatchVectorField.H:51
Foam::sixDoFRigidBodyMotion::update
void update(bool firstIter, const vector &fGlobal, const vector &tauGlobal, scalar deltaT, scalar deltaT0)
Symplectic integration of velocities, orientation and position.
Definition: sixDoFRigidBodyMotion.C:308
Foam::TimeState::timeIndex
label timeIndex() const noexcept
Return current time index.
Definition: TimeStateI.H:37
Foam::sixDoFRigidBodyMotion::centreOfRotation
const point & centreOfRotation() const
Return the current centre of rotation.
Definition: sixDoFRigidBodyMotionI.H:231
Foam::fixedValuePointPatchField< vector >
Foam::UniformDimensionedField< vector >
Foam::sixDoFRigidBodyDisplacementPointPatchVectorField::autoMap
virtual void autoMap(const pointPatchFieldMapper &)
Map (and resize as needed) from self given a mapping object.
Definition: sixDoFRigidBodyDisplacementPointPatchVectorField.C:146
Foam::makePointPatchTypeField
makePointPatchTypeField(pointPatchVectorField, solidBodyMotionDisplacementPointPatchVectorField)
Foam::Field
Generic templated field type.
Definition: Field.H:63
Foam::valuePointPatchField::updateCoeffs
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
Definition: valuePointPatchField.C:135
Foam::pointPatchField< vector >::internalField
const DimensionedField< vector, pointMesh > & internalField() const
Return dimensioned internal field reference.
Definition: pointPatchField.H:275
Foam::pointPatchField::write
virtual void write(Ostream &) const
Write.
Definition: pointPatchField.C:117
Foam::dictionary::readEntry
bool readEntry(const word &keyword, T &val, enum keyType::option matchOpt=keyType::REGEX, bool mandatory=true) const
Definition: dictionaryTemplates.C:302
Foam::objectRegistry::lookupObject
const Type & lookupObject(const word &name, const bool recursive=false) const
Definition: objectRegistryTemplates.C:434
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::FatalError
error FatalError
Foam::dictionary
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:123
os
OBJstream os(runTime.globalPath()/outputName)
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:6
addToRunTimeSelectionTable.H
Macros for easy insertion into run-time selection tables.
fvMesh.H
g
const uniformDimensionedVectorField & g
Definition: createFluidFields.H:26
Foam
Namespace for OpenFOAM.
Definition: atmBoundaryLayer.C:33
Foam::pointPatch::name
virtual const word & name() const =0
Return name.
Foam::valuePointPatchField::autoMap
virtual void autoMap(const pointPatchFieldMapper &)
Map (and resize as needed) from self given a mapping object.
Definition: valuePointPatchField.C:108
Foam::exit
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:130
Foam::pointPatchField< vector >::updated
bool updated() const
Return true if the boundary condition has already been updated.
Definition: pointPatchField.H:311
Foam::Field::writeEntry
void writeEntry(const word &keyword, Ostream &os) const
Write the field as a dictionary entry.
Definition: Field.C:608
Time.H
uniformDimensionedFields.H
FatalErrorInFunction
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:453
forces.H
sixDoFRigidBodyDisplacementPointPatchVectorField.H
Foam::sixDoFRigidBodyMotion::transform
point transform(const point &initialPoints) const
Transform the given initial state point by the current motion.
Definition: sixDoFRigidBodyMotionI.H:301
f
labelList f(nPoints)
Foam::List< label >
Foam::valuePointPatchField::rmap
virtual void rmap(const pointPatchField< Type > &, const labelList &)
Reverse map the given PointPatchField onto.
Definition: valuePointPatchField.C:118
Foam::sixDoFRigidBodyDisplacementPointPatchVectorField::rmap
virtual void rmap(const pointPatchField< vector > &, const labelList &)
Reverse map the given pointPatchField onto this pointPatchField.
Definition: sixDoFRigidBodyDisplacementPointPatchVectorField.C:157
pointPatchFields.H
Foam::sixDoFRigidBodyMotion::momentArm
vector momentArm() const
Return the current momentArm.
Definition: sixDoFRigidBodyMotionI.H:250
Foam::dictionary::add
entry * add(entry *entryPtr, bool mergeEntry=false)
Add a new entry.
Definition: dictionary.C:640
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:56
Foam::dictionary::getOrDefault
T getOrDefault(const word &keyword, const T &deflt, enum keyType::option matchOpt=keyType::REGEX) const
Definition: dictionaryTemplates.C:148
Foam::sixDoFRigidBodyDisplacementPointPatchVectorField::write
virtual void write(Ostream &) const
Write.
Definition: sixDoFRigidBodyDisplacementPointPatchVectorField.C:257
Foam::objectRegistry::time
const Time & time() const noexcept
Return time registry.
Definition: objectRegistry.H:178
Foam::dictionary::readIfPresent
bool readIfPresent(const word &keyword, T &val, enum keyType::option matchOpt=keyType::REGEX) const
Definition: dictionaryTemplates.C:405
Foam::DimensionedField
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Definition: DimensionedField.H:54
Foam::sixDoFRigidBodyDisplacementPointPatchVectorField::sixDoFRigidBodyDisplacementPointPatchVectorField
sixDoFRigidBodyDisplacementPointPatchVectorField(const pointPatch &, const DimensionedField< vector, pointMesh > &)
Construct from patch and internal field.
Definition: sixDoFRigidBodyDisplacementPointPatchVectorField.C:47