File indexing completed on 2025-04-03 08:48:01
0001
0002
0003
0004
0005
0006
0007
0008 #pragma once
0009
0010 #include "corecel/Macros.hh"
0011 #include "corecel/Types.hh"
0012 #include "corecel/math/Quantity.hh"
0013 #include "celeritas/Quantities.hh"
0014 #include "celeritas/Types.hh"
0015 #include "celeritas/grid/GenericCalculator.hh"
0016 #include "celeritas/grid/PolyEvaluator.hh"
0017 #include "celeritas/neutron/data/NeutronInelasticData.hh"
0018
0019 namespace celeritas
0020 {
0021
0022
0023
0024
0025 class NucleonNucleonXsCalculator
0026 {
0027 public:
0028
0029
0030 using ParamsRef = NeutronInelasticRef;
0031 using Energy = units::MevEnergy;
0032 using BarnXs = units::BarnXs;
0033
0034
0035 public:
0036
0037 inline CELER_FUNCTION NucleonNucleonXsCalculator(ParamsRef const& shared);
0038
0039
0040 inline CELER_FUNCTION BarnXs operator()(ChannelId el_id,
0041 Energy energy) const;
0042
0043 static CELER_CONSTEXPR_FUNCTION Energy high_otf_energy()
0044 {
0045 return Energy{10};
0046 }
0047
0048 static CELER_CONSTEXPR_FUNCTION Energy low_otf_energy()
0049 {
0050 return Energy{1};
0051 }
0052
0053 private:
0054
0055 NeutronInelasticRef const& shared_;
0056 };
0057
0058
0059
0060
0061
0062
0063
0064 CELER_FUNCTION
0065 NucleonNucleonXsCalculator::NucleonNucleonXsCalculator(ParamsRef const& shared)
0066 : shared_(shared)
0067 {
0068 }
0069
0070
0071
0072
0073
0074
0075
0076
0077
0078
0079
0080
0081
0082
0083 CELER_FUNCTION
0084 auto NucleonNucleonXsCalculator::operator()(ChannelId ch_id,
0085 Energy energy) const -> BarnXs
0086 {
0087 CELER_EXPECT(ch_id < shared_.nucleon_xs.size());
0088 real_type result;
0089
0090 if (energy < this->high_otf_energy())
0091 {
0092
0093
0094 StepanovParameters const& par = shared_.xs_params[ch_id];
0095
0096 if (energy <= this->low_otf_energy())
0097 {
0098 result = celeritas::min(par.slope / energy.value(), par.xs_zero);
0099 }
0100 else
0101 {
0102 using StepanovFunction = PolyEvaluator<real_type, 2>;
0103 result
0104 = StepanovFunction(par.coeffs)(real_type{1} / energy.value());
0105 }
0106 }
0107 else
0108 {
0109
0110 GenericGridRecord grid = shared_.nucleon_xs[ch_id];
0111
0112
0113 GenericCalculator calc_xs(grid, shared_.reals);
0114 result = calc_xs(energy.value());
0115 }
0116
0117 return BarnXs{result};
0118 }
0119
0120
0121 }