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

395 lines
14 KiB
C++
Raw Normal View History

2019-10-08 14:49:52 -04:00
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
#define DOCTEST_CONFIG_SUPER_FAST_ASSERTS
#include "doctest.h"
2017-12-14 09:29:23 -05:00
#include "testutils.h"
2017-07-25 12:19:11 -04:00
#include <math.h>
#include "catima/catima.h"
2018-01-15 09:11:51 -05:00
#include "catima/calculations.h"
2018-01-22 13:36:50 -05:00
using namespace std;
2017-07-25 12:19:11 -04:00
2019-10-08 14:49:52 -04:00
TEST_CASE("nuclear stopping power"){
2017-07-25 12:19:11 -04:00
catima::Target carbon{12.0107,6};
catima::Projectile p{4.00151,2,2,1};
double dif;
p.T = 0.1/p.A; //0.1MeV
dif = catima::dedx_n(p,carbon) - 14.27;
2019-10-08 14:49:52 -04:00
CHECK( fabs(dif)< 1);
2017-07-25 12:19:11 -04:00
p.T = 1/p.A; //1MeV
dif = catima::dedx_n(p,carbon) - 2.161;
2019-10-08 14:49:52 -04:00
CHECK( fabs(dif)< 0.1);
2017-07-25 12:19:11 -04:00
p.T = 10/p.A; //10MeV
dif = catima::dedx_n(p,carbon) - 0.2874;
2019-10-08 14:49:52 -04:00
CHECK( fabs(dif) < 0.01);
2017-07-25 12:19:11 -04:00
p.T = 100/p.A; //100MeV
dif = catima::dedx_n(p,carbon) - 0.03455;
2019-10-08 14:49:52 -04:00
CHECK( fabs(dif) < 0.001);
}
2017-07-25 12:19:11 -04:00
2019-10-08 14:49:52 -04:00
TEST_CASE("proton stopping power from srim"){
2017-07-25 12:19:11 -04:00
catima::Projectile p{1,1,1,1};
2019-05-10 15:02:51 -04:00
auto he = catima::get_material(2);
auto carbon = catima::get_material(6);
2017-07-25 12:19:11 -04:00
p.T = 1;
2019-10-08 14:49:52 -04:00
CHECK( catima::sezi_dedx_e(p,he) == approx(283,1));
2017-07-25 12:19:11 -04:00
p.T = 10;
2019-10-08 14:49:52 -04:00
CHECK( catima::sezi_dedx_e(p,he) == approx(45.6,1));
2017-07-25 12:19:11 -04:00
2019-05-10 15:02:51 -04:00
p.T = 30;
2019-10-08 14:49:52 -04:00
CHECK( catima::sezi_dedx_e(p,he) == approx(18.38,1));
2018-01-22 19:52:18 -05:00
2019-05-10 15:02:51 -04:00
p.T = 1;
2019-10-08 14:49:52 -04:00
CHECK( catima::sezi_dedx_e(p,carbon) == approx(229.5,1));
2019-05-10 15:02:51 -04:00
p.T = 10;
2019-10-08 14:49:52 -04:00
CHECK( catima::sezi_dedx_e(p,carbon) == approx(40.8,1));
2017-07-25 12:19:11 -04:00
p.T = 30;
2019-10-08 14:49:52 -04:00
CHECK( catima::sezi_dedx_e(p,carbon) == approx(16.8,1));
}
TEST_CASE("dedx, low energy, from sezi"){
2017-07-25 12:19:11 -04:00
catima::Projectile p{4,2,2,1};
2019-05-10 15:02:51 -04:00
auto carbon = catima::get_material(6);
2017-07-25 12:19:11 -04:00
2019-10-08 14:49:52 -04:00
// He projectile TEST_CASE
2017-07-25 12:19:11 -04:00
p.T = 1;
2019-10-08 14:49:52 -04:00
CHECK( catima::sezi_dedx_e(p,carbon)+catima::dedx_n(p,carbon) == approx(922.06).R(0.0001) );
2017-07-25 12:19:11 -04:00
p.T = 3;
2019-10-08 14:49:52 -04:00
CHECK( catima::sezi_dedx_e(p,carbon)+catima::dedx_n(p,carbon) == approx(433.09).R(0.0001) );
2017-07-25 12:19:11 -04:00
2019-10-08 14:49:52 -04:00
// C projectile TEST_CASE
2017-07-25 12:19:11 -04:00
p.A = 12;
p.Z = 6;
p.T = 1;
2019-10-08 14:49:52 -04:00
CHECK( catima::sezi_dedx_e(p,carbon)+catima::dedx_n(p,carbon) == approx( 5792.52).R(0.0001) );
2017-07-25 12:19:11 -04:00
p.T = 9.9;
2019-10-08 14:49:52 -04:00
CHECK( catima::sezi_dedx_e(p,carbon)+catima::dedx_n(p,carbon) == approx(1485.36).R(0.0001) );
2017-07-25 12:19:11 -04:00
2019-10-08 14:49:52 -04:00
}
TEST_CASE("LS check: deltaL values"){
2017-07-25 12:19:11 -04:00
catima::Projectile p{238,92,92,1};
p.T = 93.1494;
2019-10-08 14:49:52 -04:00
CHECK(catima::bethek_lindhard(p)== approx(-0.5688,0.0001));
2017-07-25 12:19:11 -04:00
p.T = 380.9932;
2019-10-08 14:49:52 -04:00
CHECK(catima::bethek_lindhard(p)== approx(0.549199,0.0001));
2017-07-25 12:19:11 -04:00
2018-01-22 13:36:50 -05:00
p.T = 995.368987;
2019-10-08 14:49:52 -04:00
CHECK(catima::bethek_lindhard(p)== approx(1.106649).R(0.001) );
2017-07-25 12:19:11 -04:00
2018-01-22 13:36:50 -05:00
p.T = 2640.032566;
2019-10-08 14:49:52 -04:00
CHECK(catima::bethek_lindhard(p)== approx(1.35314).R(0.001) );
2018-01-22 13:36:50 -05:00
p.T = 6091.392448;
2019-10-08 14:49:52 -04:00
CHECK(catima::bethek_lindhard(p)== approx(1.365643).R(0.001) );
2018-01-22 13:36:50 -05:00
p.T = 37277.695445;
2019-10-08 14:49:52 -04:00
CHECK(catima::bethek_lindhard(p)== approx(0.689662).R(0.001) );
}
2017-07-25 12:19:11 -04:00
2019-10-08 14:49:52 -04:00
TEST_CASE("LS check: straggling values"){
2017-07-25 12:19:11 -04:00
catima::Projectile p{238,92,92,1};
auto f = [&](){return catima::bethek_lindhard_X(p);};
p.T = 93.1494;
2019-10-08 14:49:52 -04:00
CHECK( f() == approx(1.56898).R(0.01) );
2017-07-25 12:19:11 -04:00
p.T = 380.9932;
2019-10-08 14:49:52 -04:00
CHECK( f() == approx(1.836008).R(0.01) );
2017-07-25 12:19:11 -04:00
p.T = 996.9855;
2019-10-08 14:49:52 -04:00
CHECK( f() == approx(1.836528).R(0.01) );
2017-07-25 12:19:11 -04:00
p.T = 2794.4822;
2019-10-08 14:49:52 -04:00
CHECK( f()== approx(1.768018).R(0.01) );
2018-11-01 10:04:28 -04:00
for(double e:{2000,20000,200000, 9000000, 50000000})
2019-10-08 14:49:52 -04:00
CHECK(catima::precalculated_lindhard_X(p(e)) >= 0.0);
}
TEST_CASE("ultrarelativistic corrections"){
2018-10-31 10:43:27 -04:00
catima::Projectile p{238,92};
catima::Target t{27,13};
2019-10-08 14:49:52 -04:00
CHECK(catima::pair_production(p(1e3),t) == approx(0.0,1e-3));
CHECK(catima::bremsstrahlung(p(1e3),t) == approx(0.0,1e-3));
2018-10-31 10:43:27 -04:00
2019-10-08 14:49:52 -04:00
CHECK(catima::pair_production(p(1e6),t) == approx(1900,300));
CHECK(catima::bremsstrahlung(p(1e6),t) == approx(170,20));
CHECK(catima::pair_production(p(7e6),t) == approx(19000,5000));
CHECK(catima::bremsstrahlung(p(7e6),t) == approx(6000,500));
}
TEST_CASE("dEdx for compounds"){
2017-07-25 12:19:11 -04:00
catima::Projectile p{1,1,1,1000};
catima::Material water({
{1.00794,1,2},
{15.9994,8,1}
});
2018-01-29 07:38:54 -05:00
2019-10-08 14:49:52 -04:00
CHECK( catima::dedx(p(1000), water) == approx(2.23).R(5e-3));
CHECK( catima::dedx(p(500), water) == approx(2.76).R(5e-3));
CHECK( catima::dedx(p(9), water) == approx(51.17).R(5e-3));
}
TEST_CASE("dEdx from spline vs dEdx"){
2017-07-25 12:19:11 -04:00
catima::Projectile p{238,92,92,1000};
catima::Material graphite({
{12.011,6,1},
});
2018-01-29 07:38:54 -05:00
2017-07-25 12:19:11 -04:00
auto res = catima::calculate(p(1000),graphite);
2019-10-08 14:49:52 -04:00
CHECK(catima::dedx(p(1000), graphite) == approx(res.dEdxi).R(0.001) );
2017-07-25 12:19:11 -04:00
res = catima::calculate(p,graphite,500);
2019-10-08 14:49:52 -04:00
CHECK(catima::dedx(p(500), graphite) == approx(res.dEdxi).R(0.001) );
2017-07-25 12:19:11 -04:00
res = catima::calculate(p,graphite,9);
2019-10-08 14:49:52 -04:00
CHECK(catima::dedx(p(9), graphite) == approx(res.dEdxi).R(0.001) );
}
TEST_CASE("Eout test"){
2017-07-25 12:19:11 -04:00
catima::Projectile p{12,6,6,1000};
catima::Material water({
{1.00794,1,2},
{15.9994,8,1}
});
catima::Material graphite;
graphite.add_element(12,6,1);
graphite.density(2.0);
graphite.thickness(0.5);
auto res = catima::calculate(p,graphite);
2019-10-08 14:49:52 -04:00
CHECK( res.Eout == approx(997.07,01));
}
TEST_CASE("TOF test"){
2017-07-25 12:19:11 -04:00
catima::Projectile p{12,6,6,1000};
catima::Material water({
{1.00794,1,2},
{15.9994,8,1}
});
water.density(1.0);
water.thickness(1.0);
catima::Material graphite;
graphite.add_element(12,6,1);
graphite.density(2.0);
graphite.thickness(0.5);
double dif;
auto res = catima::calculate(p,water);
dif = res.tof - 0.038;
2019-10-08 14:49:52 -04:00
CHECK( fabs(dif) < 0.01);
}
TEST_CASE("result from stopped material"){
2017-07-25 12:19:11 -04:00
catima::Projectile p{12,6,6,1000};
catima::Material water({
{1.00794,1,2},
{15.9994,8,1}
});
water.density(1.0);
water.thickness(1000.0);
auto res = catima::calculate(p,water);
2019-10-08 14:49:52 -04:00
CHECK(res.Eout == 0.0);
CHECK(res.Eloss == 1000*12);
CHECK(res.sigma_E == 0.0);
CHECK(res.sigma_a == 0.0);
CHECK(res.sigma_r > 0.0);
CHECK(res.dEdxo == 0.0);
CHECK(res.tof == 0.0);
2017-07-25 12:19:11 -04:00
catima::Layers mat;
mat.add(water);
auto res2= catima::calculate(p,mat);
2019-10-08 14:49:52 -04:00
CHECK(res2.results.size() == 1);
CHECK(res2.total_result.Eout == res2.results[0].Eout);
CHECK(res2.total_result.Eout == 0.0);
CHECK(res2.total_result.Eloss == 1000*12);
CHECK(res2.total_result.sigma_E == 0.0);
CHECK(res2.total_result.sigma_a == 0.0);
CHECK(res2.total_result.tof == 0.0);
}
TEST_CASE("constant results from material"){
2017-07-25 12:19:11 -04:00
catima::Projectile p{12,6,6,1000};
catima::Material water({
{1.00794,1,2},
{15.9994,8,1}
});
water.density(1.0);
water.thickness(10.0);
auto res = catima::calculate(p,water);
auto res2 = catima::calculate(p,water);
2019-10-08 14:49:52 -04:00
CHECK(res.Eout == res2.Eout);
CHECK(res.Eloss == res2.Eloss);
CHECK(res.sigma_E == res2.sigma_E);
CHECK(res.sigma_a == res2.sigma_a);
CHECK(res.sigma_r == res2.sigma_r);
CHECK(res.dEdxo == res2.dEdxo);
CHECK(res.tof == res2.tof);
}
TEST_CASE("simplified calculation"){
2017-07-25 12:19:11 -04:00
catima::Projectile p{12,6,6,1000};
catima::Material graphite({
{12.011,6,1},
});
graphite.density(2.0).thickness(1.0);
auto res1 = catima::calculate(p,graphite);
auto res2 = catima::calculate(12,6,1000,12.011,6,1.0,2.0);
2019-10-08 14:49:52 -04:00
CHECK(res1.Eout == res2.Eout);
CHECK(res1.Eloss == res2.Eloss);
CHECK(res1.sigma_E == res2.sigma_E);
CHECK(res1.sigma_a == res2.sigma_a);
CHECK(res1.sigma_r == res2.sigma_r);
CHECK(res1.dEdxo == res2.dEdxo);
CHECK(res1.tof == res2.tof);
2017-07-25 12:19:11 -04:00
auto ra = catima::angular_straggling_from_E(p,res1.Ein,res1.Eout,graphite);
2019-10-08 14:49:52 -04:00
CHECK(res1.sigma_a == ra);
2017-07-25 12:19:11 -04:00
auto re = catima::energy_straggling_from_E(p,res1.Ein,res1.Eout,graphite);
2019-10-08 14:49:52 -04:00
CHECK(res1.sigma_E == re);
2017-07-25 12:19:11 -04:00
2019-05-13 14:51:09 -04:00
auto eo1 = catima::energy_out(p(1000),graphite);
2019-10-08 14:49:52 -04:00
CHECK(res1.Eout == eo1);
2017-07-25 12:19:11 -04:00
2019-05-13 14:51:09 -04:00
auto de1 = catima::dedx_from_range(p(1000),graphite);
2019-10-08 14:49:52 -04:00
CHECK(res1.dEdxi == de1);
2017-07-25 12:19:11 -04:00
2019-10-08 14:49:52 -04:00
}
TEST_CASE("multilayer basic"){
2017-07-25 12:19:11 -04:00
catima::Projectile p{12,6,6,1000};
catima::Material water({
{1.00794,1,2},
{15.9994,8,1}
});
water.density(1.0);
water.thickness(10.0);
catima::Material graphite({
{12.011,6,1},
});
graphite.density(2.0).thickness(1.0);
catima::Layers mat;
mat.add(water);
mat.add(graphite);
auto res = catima::calculate(p(1000),mat);
2019-10-08 14:49:52 -04:00
CHECK(res.total_result.Eout == approx(926.3,0.1));
CHECK(res.total_result.sigma_a == approx(0.00269).R(0.05));
CHECK(res.total_result.tof == approx(0.402).R(0.001));
CHECK(res.total_result.Eloss == approx(884.2,1.0));
//CHECK(rcompare(res.total_result.sigma_E,0.7067,0.2));
CHECK(res.results[0].Eout == approx(932.24,0.1));
CHECK(res.results[0].sigma_a == approx(0.00258).R(0.05));
CHECK(res.results[0].range == approx(107.163,0.1));
CHECK(res.results[1].Eout == approx(926.3,0.1));
CHECK(res.results[1].sigma_a == approx(0.000774).R(0.05));
CHECK(res.results[1].range == approx(111.3,0.1));
2017-07-25 12:19:11 -04:00
auto res0 = catima::calculate(p(1000),water);
2019-10-08 14:49:52 -04:00
CHECK(res0.Eout == res.results[0].Eout);
CHECK(res0.sigma_a == res.results[0].sigma_a);
CHECK(res0.sigma_E == res.results[0].sigma_E);
CHECK(res0.sigma_r == res.results[0].sigma_r);
CHECK(res0.tof == res.results[0].tof);
2017-07-25 12:19:11 -04:00
2019-10-08 14:49:52 -04:00
}
TEST_CASE("default material calculations"){
2017-11-27 12:17:57 -05:00
catima::Projectile p{12,6,6,350};
2017-12-12 11:18:26 -05:00
auto air = catima::get_material(catima::material::Air);
2017-11-27 12:17:57 -05:00
air.thickness(0.500);
auto res = catima::calculate(p(350),air);
2019-10-08 14:49:52 -04:00
CHECK(res.Eout == approx(345.6).epsilon(1.0));
CHECK(res.sigma_a == approx(0.0013).epsilon(1e-4));
CHECK(res.sigma_E == approx(0.12).epsilon(1e-3));
CHECK(res.dEdxi == approx(103.5).epsilon(1e-1));
2018-05-01 20:18:50 -04:00
res = catima::calculate(p(150),air);
2019-10-08 14:49:52 -04:00
CHECK(res.dEdxi == approx(173.6).epsilon(1e0));
2018-05-01 20:18:50 -04:00
res = catima::calculate(p(1000),air);
2019-10-08 14:49:52 -04:00
CHECK(res.dEdxi == approx(70.69).epsilon(1e-0));
2018-05-01 20:18:50 -04:00
2017-12-14 09:29:23 -05:00
auto water = catima::get_material(catima::material::Water);
auto res2 = catima::calculate(p(600),water,600);
2019-10-08 14:49:52 -04:00
CHECK(res2.dEdxi == approx(92.5).epsilon(2));
}
TEST_CASE("z_eff"){
2018-01-15 09:11:51 -05:00
using namespace catima;
Projectile p_u(238,92);
Target t;
t.Z = 13;
Config c;
2019-05-11 13:04:07 -04:00
c.z_effective = z_eff_type::pierce_blann;
2019-10-08 14:49:52 -04:00
CHECK(z_eff_Pierce_Blann(92,beta_from_T(5000.)) == approx(91.8).epsilon(0.2));
CHECK(z_eff_Pierce_Blann(92,beta_from_T(5000.)) == z_effective(p_u(5000.),t,c));
2018-01-15 09:11:51 -05:00
2019-10-08 14:49:52 -04:00
CHECK(z_eff_Winger(92,0.99,6) == approx(91.8).epsilon(0.5));
CHECK(z_eff_Winger(92,beta_from_T(5000.),13) == approx(91.8).epsilon(0.2));
2018-01-15 09:11:51 -05:00
c.z_effective = z_eff_type::winger;
2019-10-08 14:49:52 -04:00
CHECK(z_eff_Winger(92,beta_from_T(5000.),13) == z_effective(p_u(5000.),t,c));
2018-01-15 09:11:51 -05:00
2019-10-08 14:49:52 -04:00
CHECK(z_eff_Schiwietz(92,0.99,6) == approx(91.8).epsilon(0.5));
2018-01-15 09:11:51 -05:00
c.z_effective = z_eff_type::schiwietz;
2019-10-08 14:49:52 -04:00
CHECK(z_eff_Schiwietz(92,beta_from_T(5000.),13) == z_effective(p_u(5000.),t,c));
2018-01-15 09:11:51 -05:00
2019-10-08 14:49:52 -04:00
CHECK(z_eff_Hubert(92,1900,13) == approx(91.88).epsilon(0.1));
2018-01-15 09:11:51 -05:00
c.z_effective = z_eff_type::hubert;
2019-10-08 14:49:52 -04:00
CHECK(z_eff_Hubert(92,1900,13) == z_effective(p_u(1900.),t,c));
2018-01-15 09:11:51 -05:00
#ifdef GLOBAL
2019-10-08 14:49:52 -04:00
CHECK(z_eff_global(92,1900,13) == approx(91.88).epsilon(0.05));
2018-01-15 09:11:51 -05:00
c.z_effective = z_eff_type::global;
2019-10-08 14:49:52 -04:00
CHECK(z_eff_global(92,1900,13) == z_effective(p_u(1900.),t,c));
CHECK(z_eff_global(92,1000,13) == approx(91.71).epsilon(0.05));
CHECK(z_eff_global(92,500,13) == approx(91.22).epsilon(0.1));
CHECK(z_eff_global(92,100,6) == approx(89.61).epsilon(0.2));
//CHECK(z_eff_global(92,100,13) == approx(89.42).epsilon(0.1));
//CHECK(z_eff_global(92,100,29) == approx(88.37).epsilon(0.1));
//CHECK(z_eff_global(92,50,13) == approx(85.94).epsilon(0.1));
CHECK(z_eff_global(92,2001,13) == approx(92.0).epsilon(0.01));
CHECK(z_eff_global(92,2000,13) == approx(92.0).epsilon(0.2));
2018-01-18 13:20:42 -05:00
2019-10-08 14:49:52 -04:00
CHECK(z_eff_atima14(92,1900,13) == approx(91.88).epsilon(0.05));
2018-01-18 13:20:42 -05:00
c.z_effective = z_eff_type::atima14;
2019-10-08 14:49:52 -04:00
CHECK(z_eff_atima14(92,1900,13) == z_effective(p_u(1900.),t,c));
2018-01-15 09:11:51 -05:00
#endif
2019-10-08 14:49:52 -04:00
}
TEST_CASE("vector_inputs"){
2018-02-14 05:53:56 -05:00
catima::Projectile p{12,6,6,1000};
catima::Material water({
{1.00794,1,2},
{15.9994,8,1}
});
catima::Material graphite;
graphite.add_element(12,6,1);
graphite.density(2.0);
graphite.thickness(0.5);
auto res = catima::calculate(p,graphite);
2019-10-08 14:49:52 -04:00
CHECK( res.Eout == approx(997.07,01));
2018-02-14 05:53:56 -05:00
std::vector<double> energies{100,500,1000};
auto res2 = catima::energy_out(p,energies, graphite);
2019-10-08 14:49:52 -04:00
CHECK(res2.size()==energies.size());
CHECK(res2[2] == approx(997.07,01));
CHECK(res2[0] == approx(catima::energy_out(p(energies[0]),graphite),0.1));
CHECK(res2[1] == approx(catima::energy_out(p(energies[1]),graphite),0.1));
CHECK(res2[2] == approx(catima::energy_out(p(energies[2]),graphite),0.1));
2018-02-14 05:53:56 -05:00
auto res3 = catima::dedx_from_range(p,energies,graphite);
2019-10-08 14:49:52 -04:00
CHECK(res3.size()==energies.size());
CHECK(res3[0] == approx(catima::dedx_from_range(p(energies[0]),graphite),0.1));
CHECK(res3[1] == approx(catima::dedx_from_range(p(energies[1]),graphite),0.1));
CHECK(res3[2] == approx(catima::dedx_from_range(p(energies[2]),graphite),0.1));
}
TEST_CASE("constants"){
2018-10-31 10:43:27 -04:00
using namespace catima;
2019-10-08 14:49:52 -04:00
CHECK(0.1*hbar*c_light/atomic_mass_unit == approx(0.21183,0.0001));
CHECK(16.0*dedx_constant*electron_mass*fine_structure/(atomic_mass_unit*3.0*4.0*M_PI) == approx(5.21721169334564e-7).R(1e-3));
2018-10-31 10:43:27 -04:00
}
2019-10-08 14:49:52 -04:00