]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/math/FGColumnVector3.cpp
Improve timing statistics
[flightgear.git] / src / FDM / JSBSim / math / FGColumnVector3.cpp
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Module: FGColumnVector3.cpp
4 Author: Originally by Tony Peden [formatted here by JSB]
5 Date started: 1998
6 Purpose: FGColumnVector3 class
7 Called by: Various
8
9  ------------- Copyright (C) 1998 Tony Peden and Jon S. Berndt (jon@jsbsim.org) -
10
11  This program is free software; you can redistribute it and/or modify it under
12  the terms of the GNU Lesser General Public License as published by the Free Software
13  Foundation; either version 2 of the License, or (at your option) any later
14  version.
15
16  This program is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
19  details.
20
21  You should have received a copy of the GNU Lesser General Public License along with
22  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
23  Place - Suite 330, Boston, MA  02111-1307, USA.
24
25  Further information about the GNU Lesser General Public License can also be found on
26  the world wide web at http://www.gnu.org.
27
28 FUNCTIONAL DESCRIPTION
29 --------------------------------------------------------------------------------
30
31 HISTORY
32 --------------------------------------------------------------------------------
33 ??/??/??   TP   Created
34 03/16/2000 JSB  Added exception throwing
35
36 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37 INCLUDES
38 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39
40 #include "FGColumnVector3.h"
41 #include <iostream>
42 #include <sstream>
43 #include <iomanip>
44 #include <cmath>
45
46 using namespace std;
47
48 namespace JSBSim {
49
50 static const char *IdSrc = "$Id: FGColumnVector3.cpp,v 1.14 2010/12/07 12:57:14 jberndt Exp $";
51 static const char *IdHdr = ID_COLUMNVECTOR3;
52
53 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
54 CLASS IMPLEMENTATION
55 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
56
57 FGColumnVector3::FGColumnVector3(void)
58 {
59   data[0] = data[1] = data[2] = 0.0;
60   // Debug(0);
61 }
62
63 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
64
65 string FGColumnVector3::Dump(const string& delimiter) const
66 {
67   ostringstream buffer;
68   buffer << std::setw(18) << std::setprecision(16) << data[0] << delimiter;
69   buffer << std::setw(18) << std::setprecision(16) << data[1] << delimiter;
70   buffer << std::setw(18) << std::setprecision(16) << data[2];
71   return buffer.str();
72 }
73
74 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
75
76 ostream& operator<<(ostream& os, const FGColumnVector3& col)
77 {
78   os << col(1) << " , " << col(2) << " , " << col(3);
79   return os;
80 }
81
82 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
83
84 FGColumnVector3 FGColumnVector3::operator/(const double scalar) const
85 {
86   if (scalar != 0.0)
87     return operator*( 1.0/scalar );
88
89   cerr << "Attempt to divide by zero in method \
90     FGColumnVector3::operator/(const double scalar), \
91     object " << data[0] << " , " << data[1] << " , " << data[2] << endl;
92   return FGColumnVector3();
93 }
94
95 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
96
97 FGColumnVector3& FGColumnVector3::operator/=(const double scalar)
98 {
99   if (scalar != 0.0)
100     operator*=( 1.0/scalar );
101   else
102     cerr << "Attempt to divide by zero in method \
103       FGColumnVector3::operator/=(const double scalar), \
104       object " << data[0] << " , " << data[1] << " , " << data[2] << endl;
105
106   return *this;
107 }
108
109 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
110
111 double FGColumnVector3::Magnitude(void) const
112 {
113   return sqrt( data[0]*data[0] +  data[1]*data[1] +  data[2]*data[2] );
114 }
115
116 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
117
118 FGColumnVector3& FGColumnVector3::Normalize(void)
119 {
120   double Mag = Magnitude();
121
122   if (Mag != 0.0)
123     operator*=( 1.0/Mag );
124
125   return *this;
126 }
127
128 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
129
130 double FGColumnVector3::Magnitude(const int idx1, const int idx2) const {
131   return sqrt( data[idx1-1]*data[idx1-1] +  data[idx2-1]*data[idx2-1] );
132 }
133
134
135 } // namespace JSBSim