OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
MVector.cpp
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015, Chris Rogers
3 * All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 * 1. Redistributions of source code must retain the above copyright notice,
7 * this list of conditions and the following disclaimer.
8 * 2. Redistributions in binary form must reproduce the above copyright notice,
9 * this list of conditions and the following disclaimer in the documentation
10 * and/or other materials provided with the distribution.
11 * 3. Neither the name of STFC nor the names of its contributors may be used to
12 * endorse or promote products derived from this software without specific
13 * prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
26 */
27
30
31namespace interpolation {
33
34std::ostream& operator<<(std::ostream& out, m_complex c)
35{
36 out << re(c) << " r " << im(c) << " i";
37 return out;
38}
39
40std::istream& operator>>(std::istream& in, m_complex& c)
41{
42 std::string dummy;
43 in >> re(c) >> dummy >> im(c) >> dummy;
44 return in;
45}
46
47
49
50template MVector<double> ::MVector(size_t i);
51template MVector<m_complex>::MVector(size_t i);
52
53template MVector<double> ::MVector(const MVector<double>&);
54template MVector<m_complex>::MVector(const MVector<m_complex>&);
55template MVector<double> ::MVector(size_t i, double value);
56template MVector<m_complex>::MVector(size_t i, m_complex value);
57
58template void MVector<double>::build_vector( const double* data_begin, const double* data_end );
59template void MVector<m_complex>::build_vector( const m_complex* data_begin, const m_complex* data_end );
60
61template std::ostream& operator<<(std::ostream& out, MVector<double> v);
62template std::ostream& operator<<(std::ostream& out, MVector<m_complex> v);
63template std::istream& operator>>(std::istream& out, MVector<double>& v);
64template std::istream& operator>>(std::istream& out, MVector<m_complex>& v);
65template MVector<double> MVector<double> ::sub(size_t n1, size_t n2) const;
66template MVector<m_complex> MVector<m_complex>::sub(size_t n1, size_t n2) const;
67
68
69template <typename Tmplt>
70MVector<Tmplt>::MVector( size_t i ) : _vector(nullptr)
71{
72 build_vector(i);
73}
74
75
76template <typename Tmplt>
77MVector<Tmplt>::MVector( const MVector<Tmplt>& mv) : _vector(nullptr)
78{ *this = mv; }
79
80
81template <typename Tmplt>
82MVector<Tmplt>::MVector( size_t size, Tmplt value ) : _vector(nullptr)
83{
84 build_vector(size);
85 for(size_t i=0; i<size; i++) operator()(i+1) = value;
86}
87
88
89template <>
91{
92 if(_vector != nullptr) gsl_vector_free((gsl_vector*)_vector);
93 _vector = gsl_vector_alloc(size);
94}
95
96template <>
98{
99 if(_vector != nullptr) gsl_vector_complex_free((gsl_vector_complex*)_vector);
100 _vector = gsl_vector_complex_alloc(size);
101}
102
103template <class Tmplt>
104void MVector<Tmplt>::build_vector ( const Tmplt* data_begin, const Tmplt* data_end )
105{
106 build_vector(data_end - data_begin);
107 for(size_t i=0; i<num_row(); i++) operator()(i+1) = data_begin[i];
108}
109
110
111template <class Tmplt>
113{ if(_vector != nullptr) return ((gsl_vector*)_vector)->size; else return 0;}
114template size_t MVector<double> ::num_row() const;
115template size_t MVector<m_complex>::num_row() const;
116
117template <>
118const double& MVector<double>::operator()(const size_t i) const
119{return *gsl_vector_ptr( (gsl_vector*)_vector, i-1);}
120template <>
121const m_complex& MVector<m_complex>::operator()(const size_t i) const
122{return *gsl_vector_complex_ptr((gsl_vector_complex*)_vector, i-1);}
123template <>
124double& MVector<double>::operator()(const size_t i)
125{return *gsl_vector_ptr( (gsl_vector*)_vector, i-1);}
126template <>
128{return *gsl_vector_complex_ptr((gsl_vector_complex*)_vector, i-1);}
129
130
131template <class Tmplt>
133{
134 MMatrix<Tmplt> mat = MMatrix<Tmplt>(1,num_row());
135 for(size_t i=1; i<=num_row(); i++)
136 mat(1, i) = this->operator()(i);
137 return mat;
138}
139template MMatrix<double> MVector<double> ::T() const;
141
142template <class Tmplt> bool operator==(const MVector<Tmplt>& c1, const MVector<Tmplt>& c2)
143{
144 if(c1.num_row() != c2.num_row())
145 return false;
146 for(size_t i=0; i<c1.num_row(); i++)
147 if(c1(i+1) != c2(i+1)) return false;
148 return true;
149}
150template bool operator==(const MVector<double>& c1, const MVector<double>& c2);
151template bool operator==(const MVector<m_complex>& c1, const MVector<m_complex>& c2);
152
153template <>
155{
156 if (&mv == this) return *this;
157 delete_vector();
158 if(!mv._vector) { _vector = nullptr; return *this; }
159 _vector = gsl_vector_alloc( mv.num_row() );
160 gsl_vector_memcpy((gsl_vector*)_vector, (const gsl_vector*)mv._vector);
161 return *this;
162}
163
164template <>
166{
167 if (&mv == this) return *this;
168 delete_vector();
169 if(!mv._vector) { _vector = nullptr; return *this; }
170 _vector = gsl_vector_complex_alloc( mv.num_row() );
171 gsl_vector_complex_memcpy((gsl_vector_complex*)_vector, (const gsl_vector_complex*)mv._vector);
172 return *this;
173}
174
175template <class Tmplt> std::ostream& operator<<(std::ostream& out, MVector<Tmplt> v)
176{
177 out << v.num_row() << "\n";
178 for(size_t i=0; i<v.num_row(); i++) out << " " << v(i+1) << "\n";
179 return out;
180}
181
182template <class Tmplt> std::istream& operator>>(std::istream& in, MVector<Tmplt>& v)
183{
184 size_t n;
185 in >> n;
186 v = MVector<Tmplt>(n);
187 for(size_t i=1; i<=v.num_row(); i++) in >> v(i);
188 return in;
189}
190
191template <class Tmplt>
192MVector<Tmplt> MVector<Tmplt>::sub(size_t n1, size_t n2) const
193{
194 MVector<Tmplt> temp(n2-n1+1);
195 for(size_t i=n1; i<=n2; i++) temp(i-n1+1) = operator()(i);
196 return temp;
197}
198
200{
201 MVector<m_complex> c(real.num_row());
202 for(size_t i=1; i<=real.num_row(); i++) c(i) = m_complex_build(real(i));
203 return c;
204}
205
207{
208 MVector<m_complex> c(real.num_row());
209 for(size_t i=1; i<=real.num_row(); i++) c(i) = m_complex_build(real(i), im(i));
210 return c;
211}
212
214{
215 MVector<double> d(c.num_row());
216 for(size_t i=1; i<=c.num_row(); i++) d(i) = re( c(i) );
217 return d;
218}
219
221{
222 MVector<double> d(c.num_row());
223 for(size_t i=1; i<=c.num_row(); i++) d(i) = im( c(i) );
224 return d;
225}
226
227}
FLieGenerator< T, N > real(const FLieGenerator< std::complex< T >, N > &)
Take real part of a complex generator.
m_complex m_complex_build(double r, double i)
Definition: MVector.h:62
bool operator==(const Mesh::Iterator &lhs, const Mesh::Iterator &rhs)
MMatrix< m_complex > complex(MMatrix< double > real)
Definition: MMatrix.cpp:396
gsl_complex m_complex
Definition: MVector.h:60
template std::istream & operator>>(std::istream &in, MMatrix< double > &mat)
MMatrix< double > re(MMatrix< m_complex > mc)
Definition: MMatrix.cpp:378
std::ostream & operator<<(std::ostream &out, const Mesh::Iterator &it)
Definition: Mesh.cpp:33
MMatrix< double > im(MMatrix< m_complex > mc)
Definition: MMatrix.cpp:387
constexpr double c
The velocity of light in m/s.
Definition: Physics.h:45
MMatrix< Tmplt > T() const
Definition: MVector.cpp:132
MVector< Tmplt > & operator=(const MVector< Tmplt > &mv)
MVector< Tmplt > sub(size_t n1, size_t n2) const
Definition: MVector.cpp:192
void build_vector(size_t size)
Tmplt & operator()(size_t i)
size_t num_row() const
Definition: MVector.cpp:112