Skip to content

Commit

Permalink
Update flavor_transformation.py
Browse files Browse the repository at this point in the history
I think there's a mistake in the formulae for P11 and P12 in the QuantumDecoherence class. They don't match what is found in equation II.4 of the dos Santos et al paper.
  • Loading branch information
jpkneller authored Apr 12, 2024
1 parent 4cc8ceb commit 73af8ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/snewpy/flavor_transformation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1739,7 +1739,7 @@ def P11(self, E):
:meta private:
"""
return 1/3 + 1/2 * np.exp(-(self.Gamma3 * (E/self.E0)**self.n + self.Gamma8 * (E/self.E0)**self.n / 3) * self.d) + 1/6 * np.exp(-self.Gamma8 * (E/self.E0)**self.n * self.d)
return 1/3 + 1/2 * np.exp(-self.Gamma3 * (E/self.E0)**self.n * self.d) + 1/6 * np.exp(-self.Gamma8 * (E/self.E0)**self.n * self.d)

def P21(self, E):
"""Transition probability from the state nu2 to nu1 in vacuum.
Expand All @@ -1757,7 +1757,7 @@ def P21(self, E):
:meta private:
"""
return 1/3 - 1/2 * np.exp(-(self.Gamma3 * (E/self.E0)**self.n + self.Gamma8 * (E/self.E0)**self.n / 3) * self.d) + 1/6 * np.exp(-self.Gamma8 * (E/self.E0)**self.n * self.d)
return 1/3 - 1/2 * np.exp(-self.Gamma3 * (E/self.E0)**self.n * self.d) + 1/6 * np.exp(-self.Gamma8 * (E/self.E0)**self.n * self.d)

def P22(self, E):
"""Survival probability of state nu2 in vacuum.
Expand Down

0 comments on commit 73af8ff

Please sign in to comment.