Commit f68133fe authored by Jixing Ye's avatar Jixing Ye
Browse files

Updated the scaling factor

parent 6b6a8d7f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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);
        }
    };