IAP GITLAB

Skip to content
Snippets Groups Projects
testUnits.cc 4.17 KiB
Newer Older
/**
 * (c) Copyright 2018 CORSIKA Project, corsika-project@lists.kit.edu
 *
 * See file AUTHORS for a list of contributors.
 *
 * This software is distributed under the terms of the GNU General Public
 * Licence version 3 (GPL Version 3). See file LICENSE for a full version of
 * the license.
 */

ralfulrich's avatar
ralfulrich committed
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one
                          // cpp file
#include <catch2/catch.hpp>
#include <corsika/units/PhysicalUnits.h>
#include <array>
ralfulrich's avatar
ralfulrich committed
using namespace corsika;
ralfulrich's avatar
ralfulrich committed
using namespace corsika::units::si;
ralfulrich's avatar
ralfulrich committed
TEST_CASE("PhysicalUnits", "[Units]") {

  SECTION("Consistency") {
ralfulrich's avatar
ralfulrich committed
    REQUIRE(1_m / 1_m == Approx(1));
    // REQUIRE_FALSE( 1_m/1_s == 1 ); // static assert
  }

  SECTION("Constructors") {
ralfulrich's avatar
ralfulrich committed
    REQUIRE(E1 == 10_GeV);
    LengthType l1 = 10_nm;
ralfulrich's avatar
ralfulrich committed
    l1 = l1;
ralfulrich's avatar
ralfulrich committed

    LengthType arr0[5];
    arr0[0] = 5_m;

    [[maybe_unused]] LengthType arr1[2] = {{1_mm}, {2_cm}};
ralfulrich's avatar
ralfulrich committed

    [[maybe_unused]] std::array<HEPEnergyType, 4> arr2; // empty array
ralfulrich's avatar
ralfulrich committed

    [[maybe_unused]] std::array<HEPEnergyType, 4> arr3 = {1_GeV, 1_eV, 5_MeV};
    auto p1 = 10_s * newton;
    REQUIRE(p1 == 10_s * newton);
ralfulrich's avatar
ralfulrich committed

  SECTION("Powers in literal units") {
ralfulrich's avatar
ralfulrich committed
    REQUIRE(1_s / 1_ds == Approx(1e1));
    REQUIRE(1_m / 1_cm == Approx(1e2));
    REQUIRE(1_m / 1_mm == Approx(1e3));
    REQUIRE(1_V / 1_uV == Approx(1e6));
    REQUIRE(1_s / 1_ns == Approx(1e9));
    REQUIRE(1_eV / 1_peV == Approx(1e12));
    REQUIRE(1_A / 1_fA == Approx(1e15));
    REQUIRE(1_mol / 1_amol == Approx(1e18));
    REQUIRE(1_K / 1_zK == Approx(1e21));
    REQUIRE(1_K / 1_yK == Approx(1e24));
    REQUIRE(1_barn / 1_mbarn == Approx(1e3));
ralfulrich's avatar
ralfulrich committed

    REQUIRE(1_A / 1_hA == Approx(1e-2));
    REQUIRE(1_m / 1_km == Approx(1e-3));
    REQUIRE(1_m / 1_Mm == Approx(1e-6));
    REQUIRE(1_V / 1_GV == Approx(1e-9));
    REQUIRE(1_s / 1_Ts == Approx(1e-12));
    REQUIRE(1_eV / 1_PeV == Approx(1e-15));
    REQUIRE(1_A / 1_EA == Approx(1e-18));
    REQUIRE(1_K / 1_ZK == Approx(1e-21));
    REQUIRE(1_mol / 1_Ymol == Approx(1e-24));
Maximilian Reininghaus's avatar
Maximilian Reininghaus committed

    REQUIRE(std::min(1_A, 2_A) == 1_A);
  }

  SECTION("Powers and units") {
ralfulrich's avatar
ralfulrich committed
    REQUIRE(1 * ampere / 1_A == Approx(1e0));
    REQUIRE(mega * bar / bar == Approx(1e6));
  }

  SECTION("Formulas") {
    const HEPEnergyType E2 = 20_GeV * 2;
ralfulrich's avatar
ralfulrich committed
    REQUIRE(E2 == 40_GeV);
ralfulrich's avatar
ralfulrich committed
    REQUIRE(E2 / 1_GeV == Approx(40));
ralfulrich's avatar
ralfulrich committed

    const MassType m = 1_kg;
    const SpeedType v = 1_m / 1_s;
    REQUIRE(m * v == 1_s * newton);
ralfulrich's avatar
ralfulrich committed

ralfulrich's avatar
ralfulrich committed
    const double lgE = log10(E2 / 1_GeV);
    REQUIRE(lgE == Approx(log10(40.)));

    const auto E3 = E2 + 100_GeV + pow(10, lgE) * 1_GeV;
ralfulrich's avatar
ralfulrich committed
    REQUIRE(E3 == 180_GeV);
ralfulrich's avatar
ralfulrich committed

  SECTION("Output") {
    {
      const HEPEnergyType E = 5_eV;
      std::stringstream stream;
      stream << E;
      REQUIRE(stream.str() == std::string("5 eV"));
    }
    {
      const HEPEnergyType E = 5_EeV;
      std::stringstream stream;
      stream << E;
      REQUIRE(stream.str() == std::string("5e+18 eV"));
    }
ralfulrich's avatar
ralfulrich committed
  }

ralfulrich's avatar
ralfulrich committed
  SECTION("Special") {

    const LengthType farAway = std::numeric_limits<double>::infinity() * meter;
    REQUIRE(farAway > 100000_m);
ralfulrich's avatar
ralfulrich committed
    REQUIRE_FALSE(farAway < 1e19 * meter);

  SECTION("static_pow") {
    using namespace corsika::units::si::detail;
    double x = 235.7913;
    REQUIRE(1 == static_pow<0, double>(x));
    REQUIRE(x == static_pow<1, double>(x));
    REQUIRE(x * x == static_pow<2, double>(x));
    REQUIRE(1 / x == static_pow<-1, double>(x));
    REQUIRE(1 / x / x == static_pow<-2, double>(x));
  }

  SECTION("HEP/SI conversion") {
    auto const invEnergy = 1 / 197.326978_MeV; // should be convertible to length or time

    LengthType const length = ConvertHEPToSI<LengthType::dimension_type>(invEnergy);
    REQUIRE((length / 1_fm) == Approx(1));

    TimeType const time = ConvertHEPToSI<TimeType::dimension_type>(invEnergy);
    REQUIRE((time / (1_fm / corsika::units::constants::c)) == Approx(1));

    auto const protonMass = 938.272'081'3_MeV; // convertible to mass or SI energy
    MassType protonMassSI = ConvertHEPToSI<MassType::dimension_type>(protonMass);
    REQUIRE((protonMassSI / 1.672'621'898e-27_kg) == Approx(1));
    REQUIRE((protonMassSI / (1.007'276 * corsika::units::constants::u)) == Approx(1));
  }