Array.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef CT_ARRAY_H
00016 #define CT_ARRAY_H
00017
00018 #include "ct_defs.h"
00019 #include "ctexceptions.h"
00020 #include "utilities.h"
00021
00022 namespace Cantera {
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 class Array2D {
00038
00039 public:
00040
00041
00042
00043
00044
00045
00046 typedef vector_fp::iterator iterator;
00047
00048
00049
00050
00051
00052
00053
00054 typedef vector_fp::const_iterator const_iterator;
00055
00056
00057
00058
00059 Array2D() : m_nrows(0), m_ncols(0) {
00060 m_data.clear();
00061 }
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072 Array2D(const int m, const int n, const doublereal v = 0.0)
00073 : m_nrows(m), m_ncols(n) {
00074 m_data.resize(n*m);
00075 std::fill(m_data.begin(), m_data.end(), v);
00076 }
00077
00078
00079
00080
00081
00082 Array2D(const Array2D& y) {
00083 m_nrows = y.m_nrows;
00084 m_ncols = y.m_ncols;
00085 m_data.resize(m_nrows*m_ncols);
00086 m_data = y.m_data;
00087 }
00088
00089
00090
00091
00092
00093 Array2D& operator=(const Array2D& y) {
00094 if (&y == this) return *this;
00095 m_nrows = y.m_nrows;
00096 m_ncols = y.m_ncols;
00097 m_data.resize(m_nrows*m_ncols);
00098 m_data = y.m_data;
00099 return *this;
00100 }
00101
00102
00103
00104
00105
00106
00107
00108 void resize(int n, int m, doublereal v = 0.0) {
00109 m_nrows = n;
00110 m_ncols = m;
00111 m_data.resize(n*m, v);
00112 }
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122 void appendColumn(const vector_fp& c) {
00123 m_ncols++;
00124 m_data.resize(m_nrows*m_ncols);
00125 int m;
00126 for (m = 0; m < m_nrows; m++) value(m_ncols, m) = c[m];
00127 }
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137 void appendColumn(const doublereal* const c) {
00138 m_ncols++;
00139 m_data.resize(m_nrows*m_ncols);
00140 int m;
00141 for (m = 0; m < m_nrows; m++) value(m_ncols, m) = c[m];
00142 }
00143
00144
00145
00146
00147
00148
00149 void setRow(int n, const doublereal* const rw) {
00150 for (int j = 0; j < m_ncols; j++) {
00151 m_data[m_nrows*j + n] = rw[j];
00152 }
00153 }
00154
00155
00156
00157
00158
00159
00160
00161 void getRow(int n, doublereal* const rw) {
00162 for (int j = 0; j < m_ncols; j++) {
00163 rw[j] = m_data[m_nrows*j + n];
00164 }
00165 }
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175 void setColumn(int m, doublereal* const col) {
00176 for (int i = 0; i < m_nrows; i++) {
00177 m_data[m_nrows*m + i] = col[i];
00178 }
00179 }
00180
00181
00182
00183
00184
00185
00186
00187
00188 void getColumn(int m, doublereal* const col) {
00189 for (int i = 0; i < m_nrows; i++) {
00190 col[i] = m_data[m_nrows*m + i];
00191 }
00192 }
00193
00194
00195
00196
00197
00198 virtual ~Array2D(){}
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212 void axpy(doublereal a, const Array2D& x, const Array2D& y) {
00213 iterator b = begin();
00214 const_iterator xb = x.begin();
00215 const_iterator yb = y.begin();
00216 for (; b != end(); ++b, ++xb, ++yb) *b = a*(*xb) + *yb;
00217 }
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227 doublereal& operator()( int i, int j) { return value(i,j); }
00228
00229
00230
00231
00232
00233
00234
00235
00236
00237 doublereal operator() (int i, int j) const {
00238 return value(i,j);
00239 }
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249
00250
00251 doublereal& value(int i, int j) {
00252 return m_data[m_nrows*j + i];
00253 }
00254
00255
00256
00257
00258
00259
00260
00261
00262
00263 doublereal value(int i, int j) const {
00264 return m_data[m_nrows*j + i];
00265 }
00266
00267
00268 size_t nRows() const { return m_nrows; }
00269
00270
00271 size_t nColumns() const { return m_ncols; }
00272
00273
00274 iterator begin() { return m_data.begin(); }
00275
00276
00277 iterator end() { return m_data.end(); }
00278
00279
00280 const_iterator begin() const { return m_data.begin(); }
00281
00282
00283 const_iterator end() const { return m_data.end(); }
00284
00285
00286 vector_fp& data() { return m_data; }
00287
00288
00289 const vector_fp& data() const { return m_data; }
00290
00291
00292
00293
00294
00295
00296
00297
00298 doublereal * ptrColumn(int j) { return &(m_data[m_nrows*j]); }
00299
00300
00301
00302
00303
00304
00305
00306
00307 const doublereal * ptrColumn(int j) const {
00308 return &(m_data[m_nrows*j]);
00309 }
00310
00311 protected:
00312
00313
00314 vector_fp m_data;
00315
00316
00317 int m_nrows;
00318
00319
00320 int m_ncols;
00321 };
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332
00333 inline std::ostream& operator<<(std::ostream& s, const Array2D& m) {
00334 int nr = static_cast<int>(m.nRows());
00335 int nc = static_cast<int>(m.nColumns());
00336 int i,j;
00337 for (i = 0; i < nr; i++) {
00338 for (j = 0; j < nc; j++) {
00339 s << m(i,j) << ", ";
00340 }
00341 s << std::endl;
00342 }
00343 return s;
00344 }
00345
00346
00347
00348
00349
00350
00351
00352
00353
00354 inline void operator*=(Array2D& m, doublereal a) {
00355 scale(m.begin(), m.end(), m.begin(), a);
00356 }
00357
00358
00359
00360
00361
00362
00363
00364
00365
00366
00367 inline void operator+=(Array2D& x, const Array2D& y) {
00368 sum_each(x.begin(), x.end(), y.begin());
00369 }
00370
00371 }
00372
00373 #endif