OpenFOAM
10
The OpenFOAM Foundation
externalForce.H
Go to the documentation of this file.
1
/*---------------------------------------------------------------------------*\
2
========= |
3
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4
\\ / O peration | Website: https://openfoam.org
5
\\ / A nd | Copyright (C) 2019-2020 OpenFOAM Foundation
6
\\/ M anipulation |
7
-------------------------------------------------------------------------------
8
License
9
This file is part of OpenFOAM.
10
11
OpenFOAM is free software: you can redistribute it and/or modify it
12
under the terms of the GNU General Public License as published by
13
the Free Software Foundation, either version 3 of the License, or
14
(at your option) any later version.
15
16
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19
for more details.
20
21
You should have received a copy of the GNU General Public License
22
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23
24
Class
25
Foam::RBD::restraints::externalForce
26
27
Description
28
Time-dependent external force restraint using Function1.
29
30
Usage
31
Example applying a constant force to the floatingObject:
32
\verbatim
33
restraints
34
{
35
force
36
{
37
type externalForce;
38
body floatingObject;
39
location (0 0 0);
40
force (100 0 0);
41
}
42
}
43
\endverbatim
44
45
SourceFiles
46
externalForce.C
47
48
\*---------------------------------------------------------------------------*/
49
50
#ifndef RBD_restraints_externalForce_H
51
#define RBD_restraints_externalForce_H
52
53
#include "
rigidBodyRestraint.H
"
54
#include "
Function1.H
"
55
56
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
57
58
namespace
Foam
59
{
60
namespace
RBD
61
{
62
namespace
restraints
63
{
64
65
/*---------------------------------------------------------------------------*\
66
Class externalForce Declaration
67
\*---------------------------------------------------------------------------*/
68
69
class
externalForce
70
:
71
public
restraint
72
{
73
// Private data
74
75
//- External force (N)
76
autoPtr<Function1<vector>
> externalForce_;
77
78
//- Point of application of the force
79
vector
location_;
80
81
82
public
:
83
84
//- Runtime type information
85
TypeName
(
"externalForce"
);
86
87
88
// Constructors
89
90
//- Construct from components
91
externalForce
92
(
93
const
word
&
name
,
94
const
dictionary
&
dict
,
95
const
rigidBodyModel
& model
96
);
97
98
//- Construct and return a clone
99
virtual
autoPtr<restraint>
clone
()
const
100
{
101
return
autoPtr<restraint>
102
(
103
new
externalForce
(*
this
)
104
);
105
}
106
107
108
//- Destructor
109
virtual
~externalForce
();
110
111
112
// Member Functions
113
114
//- Accumulate the retraint internal joint forces into the tau field and
115
// external forces into the fx field
116
virtual
void
restrain
117
(
118
scalarField
& tau,
119
Field<spatialVector>
& fx,
120
const
rigidBodyModelState
& state
121
)
const
;
122
123
//- Update properties from given dictionary
124
virtual
bool
read
(
const
dictionary
& dict);
125
126
//- Write
127
virtual
void
write
(
Ostream
&)
const
;
128
};
129
130
131
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132
133
}
// End namespace restraints
134
}
// End namespace RBD
135
}
// End namespace Foam
136
137
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138
139
#endif
140
141
// ************************************************************************* //
dict
dictionary dict
Definition:
searchingEngine.H:14
Foam::RBD::restraints::externalForce::write
virtual void write(Ostream &) const
Write.
Definition:
externalForce.C:116
Foam::RBD::restraints::externalForce::clone
virtual autoPtr< restraint > clone() const
Construct and return a clone.
Definition:
externalForce.H:98
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition:
dictionary.H:156
Foam::RBD::restraint
Base class for defining restraints for rigid-body dynamics.
Definition:
rigidBodyRestraint.H:66
Foam::RBD::restraints::externalForce::restrain
virtual void restrain(scalarField &tau, Field< spatialVector > &fx, const rigidBodyModelState &state) const
Accumulate the retraint internal joint forces into the tau field and.
Definition:
externalForce.C:78
Foam::RBD::rigidBodyModelState
Holds the motion state of rigid-body model.
Definition:
rigidBodyModelState.H:65
Foam::RBD::restraints::externalForce::externalForce
externalForce(const word &name, const dictionary &dict, const rigidBodyModel &model)
Construct from components.
Definition:
externalForce.C:56
Foam::RBD::restraints::externalForce::TypeName
TypeName("externalForce")
Runtime type information.
Foam::Field< scalar >
Foam::RBD::restraint::name
const word & name() const
Return the name.
Definition:
rigidBodyRestraint.H:150
Foam::word
A class for handling words, derived from string.
Definition:
word.H:59
Function1.H
Foam::Vector< scalar >
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition:
Ostream.H:54
Foam::autoPtr
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition:
PtrList.H:52
Foam::RBD::restraints::externalForce::read
virtual bool read(const dictionary &dict)
Update properties from given dictionary.
Definition:
externalForce.C:101
Foam::RBD::rigidBodyModel
Basic rigid-body model representing a system of rigid-bodies connected by 1-6 DoF joints...
Definition:
rigidBodyModel.H:76
Foam::RBD::restraints::externalForce
Time-dependent external force restraint using Function1.
Definition:
externalForce.H:68
Foam::RBD::restraints::externalForce::~externalForce
virtual ~externalForce()
Destructor.
Definition:
externalForce.C:71
rigidBodyRestraint.H
Foam
Namespace for OpenFOAM.
Definition:
atmBoundaryLayer.H:213
src
rigidBodyDynamics
restraints
externalForce
externalForce.H
Generated by
1.8.13