pointConstraintI.H
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-2013 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 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
27 
29 :
31 {}
32 
33 
35 :
36  Tuple2<label, vector>(pc)
37 {}
38 
39 
41 :
42  Tuple2<label, vector>(is)
43 {}
44 
45 
46 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
47 
49 {
50  if (first() == 0)
51  {
52  first() = 1;
53  second() = cd;
54  }
55  else if (first() == 1)
56  {
57  vector planeNormal = cd ^ second();
58  scalar magPlaneNormal = mag(planeNormal);
59 
60  if (magPlaneNormal > 1e-3)
61  {
62  first() = 2;
63  second() = planeNormal/magPlaneNormal;
64  }
65  }
66  else if (first() == 2)
67  {
68  if (mag(cd & second()) > 1e-3)
69  {
70  first() = 3;
71  second() = vector::zero;
72  }
73  }
74 }
75 
76 
78 {
79  if (first() == 0)
80  {
81  operator=(pc);
82  }
83  else if (first() == 1)
84  {
85  // Save single normal
86  vector n = second();
87  // Apply to supplied point constaint
88  operator=(pc);
89  applyConstraint(n);
90  }
91  else if (first() == 2)
92  {
93  if (pc.first() == 0)
94  {}
95  else if (pc.first() == 1)
96  {
97  applyConstraint(pc.second());
98  }
99  else if (pc.first() == 2)
100  {
101  // Both constrained to line. Same (+-)direction?
102  if (mag(second() & pc.second()) <= (1.0-1e-3))
103  {
104  // Different directions
105  first() = 3;
106  second() = vector::zero;
107  }
108  }
109  else
110  {
111  first() = 3;
112  second() = vector::zero;
113  }
114  }
115 }
116 
117 
119 {
120  if (first() == 0)
121  {
122  return I;
123  }
124  else if (first() == 1)
125  {
126  return I - sqr(second());
127  }
128  else if (first() == 2)
129  {
130  return sqr(second());
131  }
132  else
133  {
134  return tensor::zero;
135  }
136 }
137 
138 
140 const
141 {
142  n = 3-first();
143 
145 
146  if (first() == 0)
147  {
148  vecs[0] = vector(1, 0, 0);
149  vecs[1] = vector(0, 1, 0);
150  vecs[2] = vector(0, 0, 1);
151  }
152  else if (first() == 1)
153  {
154  const vector& planeDir = second();
155 
156  vecs[0] = vector(1, 0, 0) - planeDir.x()*planeDir;
157 
158  if (mag(vecs[0].x()) < 1e-3)
159  {
160  vecs[0] = vector(0, 1, 0) - planeDir.y()*planeDir;
161  }
162 
163  vecs[0] /= mag(vecs[0]);
164  vecs[1] = vecs[0] ^ planeDir;
165  vecs[1] /= mag(vecs[1]);
166  }
167  else if (first() == 2)
168  {
169  vecs[0] = second();
170  }
171 
172  // Knock out remaining vectors
173  for (direction dir = n; dir < vecs.size(); dir++)
174  {
175  vecs[dir] = vector::zero;
176  }
177 
178  tt = tensor(vecs[0], vecs[1], vecs[2]);
179 }
180 
181 
182 void Foam::combineConstraintsEqOp::operator()
183 (
185  const pointConstraint& y
186 ) const
187 {
188  x.combine(y);
189 }
190 
191 
193 (
194  const tensor& tt,
195  const pointConstraint& v
196 )
197 {
198  return pointConstraint
199  (
201  );
202 }
203 
204 
205 // ************************************************************************* //
Foam::Tensor
Templated 3D tensor derived from VectorSpace adding construction from 9 components,...
Definition: complexI.H:224
Foam::Vector< scalar >::zero
static const Vector zero
Definition: Vector.H:80
Foam::Tuple2::second
const Type2 & second() const
Return second.
Definition: Tuple2.H:106
Foam::tensor
Tensor< scalar > tensor
Tensor of scalars.
Definition: tensor.H:51
Foam::Tuple2::first
const Type1 & first() const
Return first.
Definition: Tuple2.H:94
Foam::pointConstraint::pointConstraint
pointConstraint()
Construct null.
Definition: pointConstraintI.H:28
Foam::pointConstraint
Accumulates point constraints through successive applications of the applyConstraint function.
Definition: pointConstraint.H:56
Foam::mag
dimensioned< scalar > mag(const dimensioned< Type > &)
Foam::transform
dimensionSet transform(const dimensionSet &)
Definition: dimensionSet.C:465
n
label n
Definition: TABSMDCalcMethod2.H:31
Foam::pointConstraint::unconstrainedDirections
void unconstrainedDirections(label &n, tensor &vecs) const
Return the accumulated unconstrained directions. Directions.
Definition: pointConstraintI.H:139
Foam::label
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
Foam::Istream
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition: Istream.H:57
Foam::I
static const sphericalTensor I(1)
Foam::Vector::x
const Cmpt & x() const
Definition: VectorI.H:65
Foam::pointConstraint::combine
void combine(const pointConstraint &)
Combine constraints.
Definition: pointConstraintI.H:77
Foam::Tensor::zero
static const Tensor zero
Definition: Tensor.H:80
Foam::e
const double e
Elementary charge.
Definition: doubleFloat.H:94
Foam::vector
Vector< scalar > vector
A scalar version of the templated Vector.
Definition: vector.H:49
Foam::pointConstraint::applyConstraint
void applyConstraint(const vector &cd)
Apply and accumulate the effect of the given constraint direction.
Definition: pointConstraintI.H:48
Foam::sqr
dimensionedSymmTensor sqr(const dimensionedVector &dv)
Definition: dimensionedSymmTensor.C:49
Foam::Vector< scalar >
Foam::FixedList::size
label size() const
Return the number of elements in the FixedList.
Definition: FixedListI.H:408
Foam::FixedList
A 1D vector of objects of type <T> with a fixed size <Size>.
Definition: FixedList.H:53
x
x
Definition: LISASMDCalcMethod2.H:52
Foam::direction
unsigned char direction
Definition: direction.H:43
Foam::pointConstraint::constraintTransformation
tensor constraintTransformation() const
Return the accumulated constraint transformation tensor.
Definition: pointConstraintI.H:118
Foam::Vector::y
const Cmpt & y() const
Definition: VectorI.H:71
Foam::Tuple2
A 2-tuple for storing two objects of different types.
Definition: Tuple2.H:47
y
scalar y
Definition: LISASMDCalcMethod1.H:14
Foam::zero
A class representing the concept of 0 used to avoid unnecessary manipulations for objects that are kn...
Definition: zero.H:47