sixDoFRigidBodyMotionIO.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 | Copyright (C) 2011-2014 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 \*---------------------------------------------------------------------------*/
25 
26 #include "sixDoFRigidBodyMotion.H"
27 #include "IOstreams.H"
28 
29 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
30 
32 {
33  dict.lookup("mass") >> mass_;
34  dict.lookup("momentOfInertia") >> momentOfInertia_;
35  aRelax_ = dict.lookupOrDefault<scalar>("accelerationRelaxation", 1.0);
36  aDamp_ = dict.lookupOrDefault<scalar>("accelerationDamping", 1.0);
37  report_ = dict.lookupOrDefault<Switch>("report", false);
38 
39  restraints_.clear();
40  addRestraints(dict);
41 
42  constraints_.clear();
43  addConstraints(dict);
44 
45  return true;
46 }
47 
48 
50 {
51  motionState_.write(os);
52 
53  os.writeKeyword("centreOfMass")
54  << initialCentreOfMass_ << token::END_STATEMENT << nl;
55  os.writeKeyword("initialOrientation")
56  << initialQ_ << token::END_STATEMENT << nl;
57  os.writeKeyword("mass")
58  << mass_ << token::END_STATEMENT << nl;
59  os.writeKeyword("momentOfInertia")
60  << momentOfInertia_ << token::END_STATEMENT << nl;
61  os.writeKeyword("accelerationRelaxation")
62  << aRelax_ << token::END_STATEMENT << nl;
63  os.writeKeyword("accelerationDamping")
64  << aDamp_ << token::END_STATEMENT << nl;
65  os.writeKeyword("report")
66  << report_ << token::END_STATEMENT << nl;
67 
68  if (!restraints_.empty())
69  {
70  os << indent << "restraints" << nl
72 
73  forAll(restraints_, rI)
74  {
75  word restraintType = restraints_[rI].type();
76 
77  os << indent << restraints_[rI].name() << nl
79 
80  os.writeKeyword("sixDoFRigidBodyMotionRestraint")
81  << restraintType << token::END_STATEMENT << nl;
82 
83  restraints_[rI].write(os);
84 
85  os << decrIndent << indent << token::END_BLOCK << endl;
86  }
87 
88  os << decrIndent << indent << token::END_BLOCK << nl;
89  }
90 
91  if (!constraints_.empty())
92  {
93  os << indent << "constraints" << nl
95 
96  forAll(constraints_, rI)
97  {
98  word constraintType = constraints_[rI].type();
99 
100  os << indent << constraints_[rI].name() << nl
102 
103  os.writeKeyword("sixDoFRigidBodyMotionConstraint")
104  << constraintType << token::END_STATEMENT << nl;
105 
106  constraints_[rI].sixDoFRigidBodyMotionConstraint::write(os);
107 
108  constraints_[rI].write(os);
109 
110  os << decrIndent << indent << token::END_BLOCK << endl;
111  }
112 
113  os << decrIndent << indent << token::END_BLOCK << nl;
114  }
115 }
116 
117 
118 // ************************************************************************* //
void addConstraints(const dictionary &dict)
Add restraints to the motion, public to allow external.
bool read(const dictionary &dict)
Read coefficients dictionary and update system parameters,.
dictionary dict
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:428
Ostream & indent(Ostream &os)
Indent stream.
Definition: Ostream.H:223
void write(dictionary &dict) const
Write to dictionary.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
A simple wrapper around bool so that it can be read as a word: true/false, on/off, yes/no, y/n, t/f, or none.
Definition: Switch.H:60
Useful combination of include files which define Sin, Sout and Serr and the use of IO streams general...
A class for handling words, derived from string.
Definition: word.H:59
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
static const char nl
Definition: Ostream.H:262
Ostream & decrIndent(Ostream &os)
Decrement the indent level.
Definition: Ostream.H:237
Ostream & writeKeyword(const keyType &)
Write the keyword followed by an appropriate indentation.
Definition: Ostream.C:54
void write(Ostream &) const
Write.
Ostream & incrIndent(Ostream &os)
Increment the indent level.
Definition: Ostream.H:230
T lookupOrDefault(const word &, const T &, bool recursive=false, bool patternMatch=true) const
Find and return a T,.
void addRestraints(const dictionary &dict)
Add restraints to the motion, public to allow external.
ITstream & lookup(const word &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream.
Definition: dictionary.C:451