Go to the documentation of this file.
54 initialPoints_(
p.localPoints()),
74 rhoName_(
dict.getOrDefault<
word>(
"rho",
"rho")),
79 if (rhoName_ ==
"rhoInf")
81 dict.readEntry(
"rhoInf", rhoInf_);
84 if (
dict.readIfPresent(
"g", g_))
89 if (!
dict.found(
"value"))
94 if (
dict.found(
"initialPoints"))
100 initialPoints_ =
p.localPoints();
108 const sixDoFRigidBodyDisplacementPointPatchVectorField& ptf,
110 const DimensionedField<vector, pointMesh>& iF,
111 const pointPatchFieldMapper& mapper
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_),
133 motion_(ptf.motion_),
134 initialPoints_(ptf.initialPoints_),
135 rhoInf_(ptf.rhoInf_),
136 rhoName_(ptf.rhoName_),
137 lookupGravity_(ptf.lookupGravity_),
163 refCast<const sixDoFRigidBodyDisplacementPointPatchVectorField>(ptf);
167 initialPoints_.
rmap(sDoFptf.initialPoints_, addr);
178 if (lookupGravity_ < 0)
180 if (
db().time().foundObject<uniformDimensionedVectorField>(
"g"))
182 if (lookupGravity_ == -2)
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"
202 const Time& t =
mesh.time();
203 const pointPatch& ptPatch = this->
patch();
206 bool firstIter =
false;
207 if (curTimeIndex_ != t.timeIndex())
210 curTimeIndex_ = t.timeIndex();
214 dictionary forcesDict;
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_);
222 functionObjects::forces
f(
"forces",
db(), forcesDict);
224 f.calcForcesMoment();
228 if (lookupGravity_ == 1)
242 ramp*(
f.forceEff() + motion_.
mass()*g_),
261 os.writeEntry(
"rho", rhoName_);
263 if (rhoName_ ==
"rhoInf")
265 os.writeEntry(
"rhoInf", rhoInf_);
268 if (lookupGravity_ == 0 || lookupGravity_ == -2)
270 os.writeEntry(
"g", g_);
286 sixDoFRigidBodyDisplacementPointPatchVectorField
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
A class for handling words, derived from Foam::string.
Calculates the forces and moments by integrating the pressure and skin-friction forces over a given l...
void autoMap(const FieldMapper &map, const bool applyFlip=true)
static constexpr const zero Zero
bool found(const word &keyword, enum keyType::option matchOpt=keyType::REGEX) const
friend Ostream & operator(Ostream &, const Field< Type > &)
const objectRegistry & db() const
Basic pointPatch represents a set of points from the mesh.
virtual void updateCoeffs()
Mesh consisting of general polyhedral cells.
const pointPatch & patch() const
Foam::pointPatchFieldMapper.
scalar deltaTValue() const noexcept
Field< vector > vectorField
Specialisation of Field<T> for vector.
void write(Ostream &) const
List< word > wordList
A List of words.
scalar deltaT0Value() const noexcept
Foam::sixDoFRigidBodyDisplacementPointPatchVectorField.
void update(bool firstIter, const vector &fGlobal, const vector &tauGlobal, scalar deltaT, scalar deltaT0)
label timeIndex() const noexcept
virtual void autoMap(const pointPatchFieldMapper &)
makePointPatchTypeField(pointPatchVectorField, solidBodyMotionDisplacementPointPatchVectorField)
Generic templated field type.
virtual void updateCoeffs()
const DimensionedField< Type, pointMesh > & internalField() const
virtual void write(Ostream &) const
UniformDimensionedField< vector > uniformDimensionedVectorField
bool readEntry(const word &keyword, T &val, enum keyType::option matchOpt=keyType::REGEX, bool mandatory=true) const
const Type & lookupObject(const word &name, const bool recursive=false) const
void rmap(const UList< Type > &mapF, const labelUList &mapAddressing)
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
OBJstream os(runTime.globalPath()/outputName)
Macros for easy insertion into run-time selection tables.
const uniformDimensionedVectorField & g
virtual const word & name() const =0
virtual void autoMap(const pointPatchFieldMapper &)
Vector< scalar > vector
A scalar version of the templated Vector.
errorManipArg< error, int > exit(error &err, const int errNo=1)
void writeEntry(const word &keyword, Ostream &os) const
#define FatalErrorInFunction
point transform(const point &initialPoints) const
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bound...
virtual void rmap(const pointPatchField< Type > &, const labelList &)
virtual void rmap(const pointPatchField< vector > &, const labelList &)
pointPatchField< vector > pointPatchVectorField
entry * add(entry *entryPtr, bool mergeEntry=false)
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
const point & centreOfRotation() const
T getOrDefault(const word &keyword, const T &deflt, enum keyType::option matchOpt=keyType::REGEX) const
virtual void write(Ostream &) const
const Time & time() const noexcept
bool readIfPresent(const word &keyword, T &val, enum keyType::option matchOpt=keyType::REGEX) const
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
sixDoFRigidBodyDisplacementPointPatchVectorField(const pointPatch &, const DimensionedField< vector, pointMesh > &)