Florian sandbox#5
Open
fwmetzler wants to merge 6 commits into
Open
Conversation
Created a new notebook to assemble and plot different parts of the internuclear potential in the D2 case.
mklilley
requested changes
Dec 7, 2020
|
|
||
| ```python | ||
| A = 4 # 4 nucleons in two deuterium atoms | ||
| V0 = 28.5e6 #50 # ground state energy see for He-4 https://pdfs.semanticscholar.org/4c24/b2d33f3b3ca2f288897967dc3a6fdb51f1a0.pdf |
Member
There was a problem hiding this comment.
A few comments here
- I see why you chose 28.5, but I don't think it is as simple as putting in the ground state energy - see http://www.uprh.edu/rbaretti/WoodsSaxonPotential25may2012.htm
- The link you reference, the paper seems to be suggesting a novel way to look at nuclear levels including gravity. Is there are more mainstream reference we can use?
- In general I think we are mixing up potential and potential energy. Morse, KW and coulomb seem to be potential energy, but WS is potential.
mklilley
requested changes
Dec 7, 2020
|
|
||
| ```python | ||
| def morsepot_au(r): # in atomic units | ||
| a = 0.4 |
Member
There was a problem hiding this comment.
From what I can tell from the Koonin paper, a = 1.04.
| ```python | ||
| def morsepot_au(r): # in atomic units | ||
| a = 0.4 | ||
| return (1+0.1745)*(np.exp(-2*a*(r-1.4))-2*np.exp(-a*(r-1.4))) |
Member
There was a problem hiding this comment.
From reading the Koonin paper, it looks like the entire potential needs to be shifted down by -1, i.e.
(0.1745)*(np.exp(-2*a*(r-1.4))-2*np.exp(-a*(r-1.4))) - 1
If I use a=1.04 as in the above comment I get a much better fit to the KW potential energy
Member
|
I added some more detailed comments on Slack, as they require more discussion |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.