1
0
Fork 0
mirror of https://github.com/gwm17/catima.git synced 2024-11-23 02:38:51 -05:00
catima/tests/test_reaction.cpp

60 lines
1.5 KiB
C++
Raw Normal View History

2018-05-01 20:18:50 -04:00
#include "lest.hpp"
#include <math.h>
#include "catima/catima.h"
#include "catima/reactions.h"
#include "testutils.h"
using namespace std;
using catima::approx;
using catima::reaction_rate;
using catima::nonreaction_rate;
const lest::test specification[] =
{
CASE("reaction"){
2018-07-30 19:41:44 -04:00
catima::Projectile proj{12,6,6,870};
2018-07-31 12:52:53 -04:00
catima::Projectile proj2{238,92,92,500};
2018-05-01 20:18:50 -04:00
auto c = catima::get_material(6);
2018-07-31 11:40:25 -04:00
auto h = catima::get_material(1);
catima::Material water({{0,8,2},{0,1,1}},1.0);
2018-07-31 09:34:41 -04:00
c.thickness(2.0);
2018-07-31 12:52:53 -04:00
double r,r2;
2018-05-01 20:18:50 -04:00
2018-07-31 09:34:41 -04:00
r= catima::nonreaction_rate(proj, c);
EXPECT(r == approx(0.92,0.02));
catima::Layers l;
l.add(c);
l.add(c);
l.add(c);
2018-05-01 20:18:50 -04:00
2018-07-31 09:34:41 -04:00
auto res = catima::calculate(proj,l);
EXPECT(res.total_result.sp == approx(r*r*r,0.02));
c.thickness(6.0);
r= catima::nonreaction_rate(proj, c);
EXPECT(res.total_result.sp == approx(r,0.001));
c.thickness(0.0);
r= catima::nonreaction_rate(proj, c);
EXPECT(r == 1.0);
proj.T = 0.0;
c.thickness(6);
r= catima::nonreaction_rate(proj, c);
EXPECT(r == -1.0);
2018-05-02 19:23:47 -04:00
2018-07-31 12:52:53 -04:00
proj.T=870;
water.thickness(1);
r= catima::nonreaction_rate(proj2, water);
r2= catima::nonreaction_rate(proj, water);
EXPECT( (r > 0 && r<1.0) );
EXPECT( (r2 > 0 && r2<1.0) );
EXPECT( r2>r );
2018-05-01 20:18:50 -04:00
}
};
int main( int argc, char * argv[] )
{
return lest::run( specification, argc, argv );
}