Skip to content

Commit

Permalink
Changed meV to MeV
Browse files Browse the repository at this point in the history
  • Loading branch information
CePowers committed Dec 3, 2024
1 parent 38bf72a commit 1f1fbeb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/physics/tardisgamma/decayenergy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -24,26 +24,26 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/latex": [
"$1.7202 \\; \\mathrm{meV}$"
"$1.7202 \\; \\mathrm{MeV}$"
],
"text/plain": [
"<Quantity 1.7202 meV>"
"<Quantity 1.7202 MeV>"
]
},
"execution_count": 2,
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# energies of each transition\n",
"t_energies = np.array([0.270, 0.750, 0.480, 1.56, 0.812, 0.158]) * u.meV\n",
"t_energies = np.array([0.270, 0.750, 0.480, 1.56, 0.812, 0.158]) * u.MeV\n",
"# probabilities of each transition\n",
"t_prob = np.array([.365, .495, .366, .140, .860, 1.00])\n",
"\n",
Expand Down

0 comments on commit 1f1fbeb

Please sign in to comment.