curvedEdge.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-2015 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 "error.H"
27 #include "curvedEdge.H"
28 
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 
31 namespace Foam
32 {
33  defineTypeNameAndDebug(curvedEdge, 0);
34  defineRunTimeSelectionTable(curvedEdge, Istream);
35 }
36 
37 
38 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
39 
41 (
42  const pointField& points,
43  const label start,
44  const label end
45 )
46 :
47  points_(points),
48  start_(start),
49  end_(end)
50 {}
51 
52 
54 :
55  points_(points),
56  start_(readLabel(is)),
57  end_(readLabel(is))
58 {}
59 
60 
62 :
63  points_(c.points_),
64  start_(c.start_),
65  end_(c.end_)
66 {}
67 
68 
70 {
72  return autoPtr<curvedEdge>(NULL);
73 }
74 
75 
77 (
78  const pointField& points,
79  Istream& is
80 )
81 {
82  if (debug)
83  {
84  Info<< "curvedEdge::New(const pointField&, Istream&) : "
85  << "constructing curvedEdge"
86  << endl;
87  }
88 
89  const word edgeType(is);
90 
91  IstreamConstructorTable::iterator cstrIter =
92  IstreamConstructorTablePtr_->find(edgeType);
93 
94  if (cstrIter == IstreamConstructorTablePtr_->end())
95  {
97  << "Unknown curvedEdge type "
98  << edgeType << nl << nl
99  << "Valid curvedEdge types are" << endl
100  << IstreamConstructorTablePtr_->sortedToc()
101  << abort(FatalError);
102  }
103 
104  return autoPtr<curvedEdge>(cstrIter()(points, is));
105 }
106 
107 
108 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
109 
111 (
112  const pointField& points,
113  const label start,
114  const label end,
115  const pointField& otherKnots
116 )
117 {
118  pointField allKnots(otherKnots.size() + 2);
119 
120  // Start/end knots
121  allKnots[0] = points[start];
122  allKnots[otherKnots.size() + 1] = points[end];
123 
124  // Intermediate knots
125  forAll(otherKnots, knotI)
126  {
127  allKnots[knotI+1] = otherKnots[knotI];
128  }
129 
130  return allKnots;
131 }
132 
133 
134 // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
135 
137 {
139 }
140 
141 
143 {
144  os << p.start_ << tab << p.end_ << endl;
145 
146  return os;
147 }
148 
149 
150 // ************************************************************************* //
p
p
Definition: pEqn.H:62
Foam::word
A class for handling words, derived from string.
Definition: word.H:59
forAll
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:406
Foam::curvedEdge::operator=
void operator=(const curvedEdge &)
Definition: curvedEdge.C:136
Foam::defineRunTimeSelectionTable
defineRunTimeSelectionTable(reactionRateFlameArea, dictionary)
Foam::curvedEdge::clone
virtual autoPtr< curvedEdge > clone() const
Clone function.
Definition: curvedEdge.C:69
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
curvedEdge.H
NotImplemented
#define NotImplemented
Issue a FatalErrorIn for a function not currently implemented.
Definition: error.H:365
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::Field
Pre-declare SubField and related Field type.
Definition: Field.H:57
error.H
Foam::Istream
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition: Istream.H:57
Foam::nl
static const char nl
Definition: Ostream.H:260
Foam::Info
messageStream Info
Foam::operator<<
Ostream & operator<<(Ostream &, const edgeMesh &)
Definition: edgeMeshIO.C:130
Foam::FatalError
error FatalError
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::abort
errorManip< error > abort(error &err)
Definition: errorManip.H:131
Foam::curvedEdge::appendEndPoints
static pointField appendEndPoints(const pointField &, const label start, const label end, const pointField &otherKnots)
Return a complete point field by appending the start/end points.
Definition: curvedEdge.C:111
Foam::curvedEdge::New
static autoPtr< curvedEdge > New(const pointField &, Istream &)
New function which constructs and returns pointer to a curvedEdge.
Definition: curvedEdge.C:77
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:117
FatalErrorInFunction
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:318
Foam::tab
static const char tab
Definition: Ostream.H:259
points
const pointField & points
Definition: gmvOutputHeader.H:1
Foam::readLabel
label readLabel(Istream &is)
Definition: label.H:64
Foam::constant::universal::c
const dimensionedScalar c
Speed of light in a vacuum.
Foam::curvedEdge
Define a curved edge that is parameterized for 0<lambda<1 between the start and end point.
Definition: curvedEdge.H:53
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:53
Foam::curvedEdge::curvedEdge
curvedEdge(const pointField &points, const label start, const label end)
Construct from components.
Definition: curvedEdge.C:41
Foam::defineTypeNameAndDebug
defineTypeNameAndDebug(combustionModel, 0)