Commit 8495a5a1 authored by Jixing Ye's avatar Jixing Ye
Browse files

Updated the Mandic Trapping Model, based on the erratum...

Updated the Mandic Trapping Model, based on the erratum (https://iopscience.iop.org/article/10.1088/1748-0221/16/03/E03001)
parent 047a1860
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@ namespace allpix {
    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);
        }
    };