-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
524840d
commit 5248065
Showing
8 changed files
with
193 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,18 @@ | ||
export m_π, m_π0, m_p, m_n, μ, m, ħc, mbare | ||
|
||
m_p = 938.27 | ||
m_n = 939.57 | ||
m_π0 = 134.98 | ||
m_π = 139.57 | ||
μ = (m_p+m_n)/2*m_π0/((m_p+m_n)/2+m_π0) | ||
ħc = 197.3 | ||
mbare=(m_p+m_n)/2 | ||
export m_pi, m_pi0, m_p, m_n, μ, ħc, m_bare | ||
|
||
# Physical Constants | ||
|
||
const m_p = 938.27 # Proton mass in MeV/c^2 | ||
const m_n = 939.57 # Neutron mass in MeV/c^2 | ||
const m_pi0 = 134.98 # Neutral pion mass (π⁰) in MeV/c^2 | ||
const m_pi = 139.57 # Charged pion mass (π⁺/π⁻) in MeV/c^2 | ||
const ħc = 197.3269804 # Planck's constant times speed of light in MeV·fm | ||
|
||
const m_bare = (m_p + m_n) / 2 # Average nucleon mass in MeV/c^2 | ||
|
||
""" | ||
μ = (m_bare * m_pi0) / (m_bare + m_pi0) | ||
Reduced mass of the nucleon-pion system in MeV/c^2. | ||
""" | ||
const μ = (m_bare * m_pi0) / (m_bare + m_pi0) |
Oops, something went wrong.