40 #include "libmesh/getpot.h"
42 template<
typename ChemicalMixture>
43 int test( ChemicalMixture& chem_mixture )
45 const unsigned int N_index = chem_mixture.species_index(
"N");
46 const unsigned int N2_index = chem_mixture.species_index(
"N2");
48 const double gamma = 0.03;
54 const double w_s = 0.2;
56 const double rho = 1.0e-3;
57 const double rho_s = rho*w_s;
59 const double T = 620.1;
60 const double R_N = chem_mixture.R( chem_mixture.species_index(
"N") );
62 const double R = 30.1;
66 const double drho_dws = -rho*rho_s/R;
67 const double domega_dot_dws_exact = drho_dws*w_s*gamma*std::sqrt( R_N*T/(GRINS::Constants::two_pi) )
68 + rho*gamma*std::sqrt( R_N*T/(GRINS::Constants::two_pi) );
72 const double omega_dot_N = wall_N.
omega_dot( rho_s, T );
74 const double domega_dot_dT_N = wall_N.
domega_dot_dT( rho_s, T );
76 const double domega_dot_dws_N = wall_N.
domega_dot_dws( rho_s, w_s, T, R );
78 const double tol = 1.0e-15;
82 double rel_error = std::fabs( (omega_dot_N - omega_dot_exact)/omega_dot_exact );
86 std::cerr << std::setprecision(16) << std::scientific
87 <<
"Mismatch in omega_dot_N!" << std::endl
88 <<
"omega_dot_N = " << omega_dot_N << std::endl
89 <<
"omega_dot_exact = " << omega_dot_exact << std::endl
90 <<
"rel error = " << rel_error << std::endl;
98 double rel_error = std::fabs( (domega_dot_dT_N - domega_dot_dT_exact)/domega_dot_dT_exact );
100 if( rel_error > tol )
102 std::cerr << std::setprecision(16) << std::scientific
103 <<
"Mismatch in domega_dot_dT_N!" << std::endl
104 <<
"domega_dot_dT_N = " << domega_dot_dT_N << std::endl
105 <<
"domega_dot_dT_exact = " << domega_dot_dT_exact << std::endl
106 <<
"rel error = " << rel_error << std::endl;
114 double rel_error = std::fabs( (domega_dot_dws_N - domega_dot_dws_exact)/domega_dot_dws_exact );
116 if( rel_error > tol )
118 std::cerr << std::setprecision(16) << std::scientific
119 <<
"Mismatch in domega_dot_dws_N!" << std::endl
120 <<
"domega_dot_dws_N = " << domega_dot_dws_N << std::endl
121 <<
"domega_dot_dws_exact = " << domega_dot_dws_exact << std::endl
122 <<
"rel error = " << rel_error << std::endl;
132 int main(
int argc,
char* argv[])
136 std::cerr <<
"Error: must specify the test type (cantera or antioch) and the input file name"
141 std::string test_type = argv[1];
143 GetPot input( argv[2] );
149 if( test_type ==
"cantera" )
151 #ifdef GRINS_HAVE_CANTERA
152 libMesh::UniquePtr<GRINS::CanteraMixture> chem_uptr;
154 return_flag = test<GRINS::CanteraMixture>( *chem_uptr );
159 else if( test_type ==
"antioch" )
161 #ifdef GRINS_HAVE_ANTIOCH
162 libMesh::UniquePtr<GRINS::AntiochChemistry> chem_uptr;
164 return_flag = test<GRINS::AntiochChemistry>( *chem_uptr );
171 std::cerr <<
"Invalid test type " << test_type << std::endl;
int test(ChemicalMixture &chem_mixture)
libMesh::Real domega_dot_dT(const libMesh::Real rho_s, const libMesh::Real T) const
libMesh::Real omega_dot(const libMesh::Real rho_s, const libMesh::Real T) const
libMesh::Real domega_dot_dws(const libMesh::Real rho_s, const libMesh::Real w_s, const libMesh::Real T, const libMesh::Real R) const
int main(int argc, char *argv[])
void build_chemistry(const GetPot &input, const std::string &material, libMesh::UniquePtr< ChemistryType > &chem_ptr)
const libMesh::Real two_pi