antioch-0.4.0
Functions
constant_rate_vec_unit.C File Reference
#include "antioch_config.h"
#include <valarray>
#include "Eigen/Dense"
#include "metaphysicl/numberarray.h"
#include "vexcl/vexcl.hpp"
#include "antioch/eigen_utils_decl.h"
#include "antioch/metaphysicl_utils_decl.h"
#include "antioch/valarray_utils_decl.h"
#include "antioch/constant_rate.h"
#include "antioch/eigen_utils.h"
#include "antioch/metaphysicl_utils.h"
#include "antioch/valarray_utils.h"
#include <cmath>
#include <limits>

Go to the source code of this file.

Functions

template<typename PairScalars >
int check_rate_and_derivative (const PairScalars &rate_exact, const PairScalars &derive_exact, const PairScalars &rate, const PairScalars &derive, const PairScalars &T)
 
template<typename PairScalars >
int vectester (const PairScalars &example, const std::string &testname)
 
int main ()
 

Function Documentation

template<typename PairScalars >
int check_rate_and_derivative ( const PairScalars &  rate_exact,
const PairScalars &  derive_exact,
const PairScalars &  rate,
const PairScalars &  derive,
const PairScalars &  T 
)

Definition at line 67 of file constant_rate_vec_unit.C.

Referenced by vectester().

69 {
70  typedef typename Antioch::value_type<PairScalars>::type Scalar;
71  const Scalar tol = std::numeric_limits<Scalar>::epsilon() * 2;
72 
73  int return_flag(0);
74  for (unsigned int tuple=0; tuple != ANTIOCH_N_TUPLES; ++tuple)
75  {
76  if( abs( (rate[2*tuple] - rate_exact[2*tuple])/rate_exact[2*tuple] ) > tol )
77  {
78  std::cout << std::scientific << std::setprecision(16)
79  << "Error: Mismatch in rate values." << std::endl
80  << "T = " << T[2*tuple] << " K" << std::endl
81  << "rate(T) = " << rate[2*tuple] << std::endl
82  << "rate_exact = " << rate_exact[2*tuple] << std::endl
83  << "relative difference = " << abs( (rate[2*tuple] - rate_exact[2*tuple])/rate_exact[2*tuple] ) << std::endl
84  << "tolerance = " << tol << std::endl;
85 
86  return_flag = 1;
87  }
88  if( abs( (rate[2*tuple+1] - rate_exact[2*tuple+1])/rate_exact[2*tuple+1] ) > tol )
89  {
90  std::cout << std::scientific << std::setprecision(16)
91  << "Error: Mismatch in rate values." << std::endl
92  << "T = " << T[2*tuple+1] << " K" << std::endl
93  << "rate(T) = " << rate[2*tuple] << std::endl
94  << "rate_exact = " << rate_exact[2*tuple+1] << std::endl
95  << "relative difference = " << abs( (rate[2*tuple] - rate_exact[2*tuple+1])/rate_exact[2*tuple+1] ) << std::endl
96  << "tolerance = " << tol << std::endl;
97 
98  return_flag = 1;
99  }
100  if( abs( (derive[2*tuple] - derive_exact[2*tuple])/derive_exact[2*tuple] ) > tol )
101  {
102  std::cout << std::scientific << std::setprecision(16)
103  << "Error: Mismatch in rate derivative values." << std::endl
104  << "T = " << T[2*tuple] << " K" << std::endl
105  << "drate_dT(T) = " << derive[2*tuple] << std::endl
106  << "derive_exact = " << derive_exact[2*tuple] << std::endl
107  << "relative difference = " << abs( (derive[2*tuple] - derive_exact[2*tuple])/derive_exact[2*tuple] ) << std::endl
108  << "tolerance = " << tol << std::endl;
109 
110  return_flag = 1;
111  }
112  if( abs( (derive[2*tuple+1] - derive_exact[2*tuple+1])/derive_exact[2*tuple+1] ) > tol )
113  {
114  std::cout << std::scientific << std::setprecision(16)
115  << "Error: Mismatch in rate derivative values." << std::endl
116  << "T = " << T[2*tuple+1] << " K" << std::endl
117  << "drate_dT(T) = " << derive[2*tuple+1] << std::endl
118  << "derive_exact = " << derive_exact[2*tuple+1] << std::endl
119  << "relative difference = " << abs( (derive[2*tuple+1] - derive_exact[2*tuple+1])/derive_exact[2*tuple+1] ) << std::endl
120  << "tolerance = " << tol << std::endl;
121 
122  return_flag = 1;
123  }
124 
125  }
126  return return_flag;
127 }
int main ( )

Definition at line 212 of file constant_rate_vec_unit.C.

References vectester().

213 {
214  int returnval = 0;
215 
216  returnval = returnval ||
217  vectester (std::valarray<float>(2*ANTIOCH_N_TUPLES), "valarray<float>");
218  returnval = returnval ||
219  vectester (std::valarray<double>(2*ANTIOCH_N_TUPLES), "valarray<double>");
220  returnval = returnval ||
221  vectester (std::valarray<long double>(2*ANTIOCH_N_TUPLES), "valarray<ld>");
222 #ifdef ANTIOCH_HAVE_EIGEN
223  returnval = returnval ||
224  vectester (Eigen::Array<float, 2*ANTIOCH_N_TUPLES, 1>(), "Eigen::ArrayXf");
225  returnval = returnval ||
226  vectester (Eigen::Array<double, 2*ANTIOCH_N_TUPLES, 1>(), "Eigen::ArrayXd");
227  returnval = returnval ||
228  vectester (Eigen::Array<long double, 2*ANTIOCH_N_TUPLES, 1>(), "Eigen::ArrayXld");
229 #endif
230 #ifdef ANTIOCH_HAVE_METAPHYSICL
231  returnval = returnval ||
232  vectester (MetaPhysicL::NumberArray<2*ANTIOCH_N_TUPLES, float> (0), "NumberArray<float>");
233  returnval = returnval ||
234  vectester (MetaPhysicL::NumberArray<2*ANTIOCH_N_TUPLES, double> (0), "NumberArray<double>");
235  returnval = returnval ||
236  vectester (MetaPhysicL::NumberArray<2*ANTIOCH_N_TUPLES, long double> (0), "NumberArray<ld>");
237 #endif
238 #ifdef ANTIOCH_HAVE_VEXCL
239  vex::Context ctx_f (vex::Filter::All);
240  if (!ctx_f.empty())
241  returnval = returnval ||
242  vectester (vex::vector<float> (ctx_f, 2*ANTIOCH_N_TUPLES), "vex::vector<float>");
243 
244  vex::Context ctx_d (vex::Filter::DoublePrecision);
245  if (!ctx_d.empty())
246  returnval = returnval ||
247  vectester (vex::vector<double> (ctx_d, 2*ANTIOCH_N_TUPLES), "vex::vector<double>");
248 #endif
249 
250 #ifdef ANTIOCH_HAVE_GRVY
251  gt.Finalize();
252  gt.Summarize();
253 #endif
254 
255  return returnval;
256 }
int vectester(const PairScalars &example, const std::string &testname)
template<typename PairScalars >
int vectester ( const PairScalars &  example,
const std::string &  testname 
)

Definition at line 130 of file constant_rate_vec_unit.C.

References check_rate_and_derivative(), Antioch::ConstantRate< CoeffType >::derivative(), Antioch::ConstantRate< CoeffType >::rate_and_derivative(), and Antioch::zero_clone().

Referenced by main().

131 {
132  using std::abs;
133 
134  typedef typename Antioch::value_type<PairScalars>::type Scalar;
135 
136  const Scalar Cf = 1.4L;
137 
138  Antioch::ConstantRate<Scalar> constant_rate(Cf);
139 
140  // Construct from example to avoid resizing issues
141  PairScalars T = example;
142  PairScalars rate_exact = example;
143  PairScalars derive_exact = Antioch::zero_clone(example);
144  for (unsigned int tuple=0; tuple != ANTIOCH_N_TUPLES; ++tuple)
145  {
146  T[2*tuple] = 1500.1L;
147  T[2*tuple+1] = 1600.1L;
148  rate_exact[2*tuple] = Cf;
149  rate_exact[2*tuple+1] = Cf;
150  }
152 
153  int return_flag = 0;
154 
155 #ifdef ANTIOCH_HAVE_GRVY
156  gt.BeginTimer(testname);
157 #endif
158 
159 // KineticsConditions
160  PairScalars rate = constant_rate(cond);//Antioch::zero_clone(T.T());
161  PairScalars derive = constant_rate.derivative(cond);//Antioch::zero_clone(T.T());
162 
163 #ifdef ANTIOCH_HAVE_GRVY
164  gt.EndTimer(testname);
165 #endif
166 
167  return_flag = check_rate_and_derivative(rate_exact, derive_exact, rate, derive,T) || return_flag;
168 
169 #ifdef ANTIOCH_HAVE_GRVY
170  gt.BeginTimer(testname);
171 #endif
172 
173  constant_rate.rate_and_derivative(cond,rate,derive);
174 
175 #ifdef ANTIOCH_HAVE_GRVY
176  gt.EndTimer(testname);
177 #endif
178 
179  return_flag = check_rate_and_derivative(rate_exact, derive_exact, rate, derive,T) || return_flag;
180 
181 // T
182 
183 #ifdef ANTIOCH_HAVE_GRVY
184  gt.BeginTimer(testname);
185 #endif
186 
187  rate = constant_rate(T);
188  derive = constant_rate.derivative(T);
189 
190 #ifdef ANTIOCH_HAVE_GRVY
191  gt.EndTimer(testname);
192 #endif
193 
194  return_flag = check_rate_and_derivative(rate_exact, derive_exact, rate, derive,T) || return_flag;
195 
196 #ifdef ANTIOCH_HAVE_GRVY
197  gt.BeginTimer(testname);
198 #endif
199 
200  constant_rate.rate_and_derivative(T,rate,derive);
201 
202 #ifdef ANTIOCH_HAVE_GRVY
203  gt.EndTimer(testname);
204 #endif
205 
206  return_flag = check_rate_and_derivative(rate_exact, derive_exact, rate, derive,T) || return_flag;
207 
208  return return_flag;
209 }
Constant rate equation.
Definition: constant_rate.h:55
int check_rate_and_derivative(const PairScalars &rate_exact, const PairScalars &derive_exact, const PairScalars &rate, const PairScalars &derive, const PairScalars &T)
_Matrix< _Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols > zero_clone(const _Matrix< _Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols > &ex)
Definition: eigen_utils.h:145
This class contains the conditions of the chemistry.

Generated on Thu Jul 7 2016 11:09:47 for antioch-0.4.0 by  doxygen 1.8.8