diff --git a/Environment/FlatExponential.h b/Environment/FlatExponential.h index 7079a22bfa39f4b061e1bfe111553c34e595d8c7..19e42c725c4b5204dc9c6fc166f9be00f44bdb7a 100644 --- a/Environment/FlatExponential.h +++ b/Environment/FlatExponential.h @@ -1,6 +1,5 @@ - /* - * (c) Copyright 2018 CORSIKA Project, corsika-project@lists.kit.edu + * (c) Copyright 2019 CORSIKA Project, corsika-project@lists.kit.edu * * See file AUTHORS for a list of contributors. * @@ -21,6 +20,7 @@ #include <corsika/units/PhysicalUnits.h> #include <cassert> +#include <limits> /** * @@ -76,7 +76,14 @@ namespace corsika::environment { if (vDotA == 0) { return pGrammage / GetMassDensity(line.GetR0()); } else { - return fLambda / vDotA * log(pGrammage * vDotA / (fRho0 * fLambda) + 1); + auto const logArg = pGrammage * vDotA / (fRho0 * fLambda) + 1; + if (logArg > 0) { + return fLambda / vDotA * log(pGrammage * vDotA / (fRho0 * fLambda) + 1); + } else { + return std::numeric_limits<typename decltype( + pGrammage)::value_type>::infinity() * + corsika::units::si::meter; + } } } }; diff --git a/Environment/testEnvironment.cc b/Environment/testEnvironment.cc index 5beab6587a20199a24bb8946b96ccedfe4b8d293..206849e7eb17b6d33a23fffddb4abefbb16900e8 100644 --- a/Environment/testEnvironment.cc +++ b/Environment/testEnvironment.cc @@ -75,7 +75,19 @@ TEST_CASE("FlatExponential") { REQUIRE((medium.ArclengthFromGrammage(trajectory, exact) / length) == Approx(1)); } - SECTION("vertical") { + SECTION("escape grammage") { + Line const line(gOrigin, Vector<SpeedType::dimension_type>( + gCS, {0_m / second, 0_m / second, -5_m / second})); + Trajectory<Line> const trajectory(line, tEnd); + + GrammageType const escapeGrammage = rho0 * lambda; + + REQUIRE(trajectory.NormalizedDirection().dot(axis).magnitude() < 0); + REQUIRE(medium.ArclengthFromGrammage(trajectory, 1.2 * escapeGrammage) == + std::numeric_limits<typename GrammageType::value_type>::infinity() * 1_m); + } + + SECTION("inclined") { Line const line(gOrigin, Vector<SpeedType::dimension_type>( gCS, {0_m / second, 5_m / second, 5_m / second})); Trajectory<Line> const trajectory(line, tEnd); @@ -83,7 +95,6 @@ TEST_CASE("FlatExponential") { LengthType const length = 2 * lambda; GrammageType const exact = rho0 * lambda * (exp(cosTheta * length / lambda) - 1) / cosTheta; - REQUIRE((medium.IntegratedGrammage(trajectory, length) / exact) == Approx(1)); REQUIRE((medium.ArclengthFromGrammage(trajectory, exact) / length) == Approx(1)); }