-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhanced EM transport #211
Conversation
Perfect timing! Tony Popescu was just asking me about this code yesterday. People will be very happy to try it out. Awesome work, Victor! |
Thank you @victorMalkov! We will merge this into the develop after the 2017 release. It is now tagged to be pushed to master in January 2018. |
Hi, great to hear! I'm not so firm with github, but I fetched your pull request to my local rep and when I tried to compile with EEMF I had some errors. In short: I think there are some "_" missing in egsnrc.mortan for:
|
Is this still compatible with the current develop branch? Some things changed in egsnrc.macros and egsnrc.mortan about the way variables are declared (maybe in 3b6b16c) and I think this makes it impossible to compile this in current state? Maybe someone can fix it? :) |
@ftessier are we not adding this for the 2019 release? |
@mainegra Indeed, it is the last pull request remaining for the Release 2019 milestone. I am working on it, and post review requests when I am done. For the time being, the alternate |
@victorMalkov I am currently working to integrate your branch into develop for the 2019 release. I will therefore be pushing (and force pushing to your PR branch) to bring it up to date etc. Let me know if you have any concern. |
@victorMalkov to my own amazement, I am not able to massage this pull request to merge cleanly into develop, because the merge base is too old. I will close this pull request and create a new one with your changes apply cleanly on develop, setting the commit authorship to you. For this release, your |
@ftessier Hi there. These are the latest version of the macros. Following the initial merger hopefully subsequent contributions will go more smoothly. Is there anything that was incorrectly done on my end to cause the difficulties in merging? |
@victorMalkov you have not done anything wrong. It is just that the merge base is old, so there are conflicts with more recent changes in |
@victorMalkov please review if possible. I was able to "clean" your eemf pull request, which I uploaded to your pull request branch. I have formatted the |
"******************************** CONSTANTS ***********************************" | ||
REPLACE{$EM_MACROS_ACTIVE}WITH{.true.}; | ||
REPLACE{$SL}WITH{299792458.0}; "speed of light" | ||
REPLACE{$ERM}WITH{0.510998910}; "electron rest energy in MeV" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why a different value than PRM from egsnrc.macros?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can address these constants after we have merged into master for the release. The main question is - if we update them for consistency with the rest of the code, will it affect the EMF algorithm? E.g. are there any functional fits that should be recalculated with the new values?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, let's leave the hard-coded values in for now, but please post an issue to remind ourselves to update with the EGSnrc-wide constants.
Hello, thank you for correcting the variable conflicts. As for the
constants, these are unfortunately a relic from when the code was initially
being developed and prior to all of the work that went into producing a
consistent notation for the rest mass etc. There are no functional fits
which are based on these values. The variable are explicitly used as is in
the transport equations. The variables can be updated with the existing
ones in egs.
…On Wed, Mar 20, 2019 at 2:26 PM Reid Townson ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In HEN_HOUSE/src/EEMF_macros.mortran
<#211 (comment)>:
> +
+
+" ****************** BOOLEANS *****************"
+REPLACE{$orderBoundary}WITH{.true.}; "selecting 1PI v 3PI so no boundary errors"
+REPLACE{$orderAdaptive}WITH{.true.}; "Selecting 1PI v 3PI for B for efficiency"
+REPLACE{$duAdaptive}WITH{.true.}; "for B, scaling the step size to a 1.5 T"
+REPLACE{$energyLossViaPotential}WITH{.false.};"Boolean for using potential"
+ "for energy loss. "
+" Determine if output at the begining of the simulation is needed: "
+REPLACE{$EMInternalOutput}WITH{.true.};
+
+
+"******************************** CONSTANTS ***********************************"
+REPLACE{$EM_MACROS_ACTIVE}WITH{.true.};
+REPLACE{$SL}WITH{299792458.0}; "speed of light"
+REPLACE{$ERM}WITH{0.510998910}; "electron rest energy in MeV"
I think we can address these constants after we have merged into master
for the release. The main question is - if we update them for consistency
with the rest of the code, will it affect the EMF algorithm? E.g. are there
any functional fits that should be recalculated with the new values?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#211 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ASvkybYSsBsy8nacHeDoNDfnzfCy9I-dks5vYn1vgaJpZM4LjILI>
.
|
@victorMalkov can you confirm: I just noticed pull request #422... which according to the conversation was meant to supersede this one. So #422 is the right one to merge in, no? I will look at diffs with 211 now! |
I worked the commits to match this branch to pull request #422: In particular, I checked that |
I removed the example file |
To be perfectly clear, there are 4 files changed between develop and this branch, as of 0e68a0f:
These correspond to the four files changed between pull request #422 and its merge base d0b1ec9:
I checked that these files match between the current tip of #211 and #422. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving this as it needs to make it into the development branch. But I have not checked thoroughly. Needs more testing!
Tested again - works as expected. This is safe to merge into |
Squashed the top commits on the main one to be rebased in develop. |
This code implements charged particle transport in electric and magnetic (EM) fields as described by Malkov and Rogers (Med. Phys. 43, 4447–4458, 2016 doi:10.1118/1.4954318). This code includes: - Three-point numerical integration of the Lorentz force for PRESTA-II - Two-point numerical integration for PRESTA-I - Specialized magnetic field analytical transport in single scatter mode - Boundary crossing adapted for EM fields - Vacuum transport in EM fields EEMF macros are provided as two files: one for general simulations, and one specific to BEAMnrc simulations (required due to the way howfar and hownear are defined in BEAMnrc). Note that electric field transport has not been thoroughly tested and verified at this point. Spatially varying fields are not explicitly supported, however in principle small step sizes would admit spatial variations. A detailed report covering the implementation and use of these macros is provided by the authors via the Carleton Laboratory for Radiotherapy Physics: http://bit.ly/egsnrc-eemf
Just fixed the EOL whitespace and line lengths in the EEMF BEAMnrc macros file (again!). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Superficially, coding looks okay.
These changes are to include the electric and magnetic field transport that is based on a higher numerical integration algorithm for the condensed history algorithm, analytical transport in a magnetic field for the single scatter, and specialized boundary crossing for the EM-field.
This code is accompanied by a report that describes how to implement and use the EEMF macros (EMFMacrosInEGSnrcReport.pdf](https://github.com/nrc-cnrc/EGSnrc/files/704931/EMFMacrosInEGSnrcReport.pdf).