Loading src/physics/Trapping.hpp +2 −1 Original line number Diff line number Diff line Loading @@ -131,12 +131,13 @@ namespace allpix { * @brief Mandic effective trapping model * * Parametrization taken from https://doi.org/10.1088/1748-0221/15/11/P11018, section 5. * Updated the c_e based on https://doi.org/10.1088/1748-0221/16/03/E03001 * Scaling from electrons to holes taken from default beta values in Weightfield2 */ class Mandic : virtual public TrappingModel { public: explicit Mandic(double fluence) { tau_eff_electron_ = 0.054 * pow(fluence / Units::get(1e16, "/cm/cm"), -0.62); tau_eff_electron_ = 0.54 * pow(fluence / Units::get(1e16, "/cm/cm"), -0.62); tau_eff_hole_ = tau_eff_electron_ * (4.9 / 6.2); } }; Loading Loading
src/physics/Trapping.hpp +2 −1 Original line number Diff line number Diff line Loading @@ -131,12 +131,13 @@ namespace allpix { * @brief Mandic effective trapping model * * Parametrization taken from https://doi.org/10.1088/1748-0221/15/11/P11018, section 5. * Updated the c_e based on https://doi.org/10.1088/1748-0221/16/03/E03001 * Scaling from electrons to holes taken from default beta values in Weightfield2 */ class Mandic : virtual public TrappingModel { public: explicit Mandic(double fluence) { tau_eff_electron_ = 0.054 * pow(fluence / Units::get(1e16, "/cm/cm"), -0.62); tau_eff_electron_ = 0.54 * pow(fluence / Units::get(1e16, "/cm/cm"), -0.62); tau_eff_hole_ = tau_eff_electron_ * (4.9 / 6.2); } }; Loading