Skip to content
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

Merged
merged 1 commit into from
Apr 11, 2019
Merged

Enhanced EM transport #211

merged 1 commit into from
Apr 11, 2019

Conversation

victorMalkov
Copy link
Contributor

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).

@mchamberland
Copy link
Contributor

Perfect timing! Tony Popescu was just asking me about this code yesterday. People will be very happy to try it out. Awesome work, Victor!

@ftessier ftessier added this to the Release 2018 milestone Jan 17, 2017
@ftessier
Copy link
Member

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.

@Cukhen
Copy link

Cukhen commented Jan 17, 2017

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:

  • EMFIELD INITIATE SET TUSTEP
  • EM FIELD SS
  • ADD WORK EM FIELD
  • EMFIELD PII
  • EMFIELD PI
  • EMFIELD INITIATE SET TUSTEP

@Cukhen
Copy link

Cukhen commented Feb 22, 2018

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? :)

@mainegra
Copy link
Contributor

mainegra commented Mar 7, 2019

@ftessier are we not adding this for the 2019 release?

@ftessier
Copy link
Member

ftessier commented Mar 7, 2019

@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 egsnrc.mortran and egsnrc.macros files will be available as an option, by changing the make file of applications. Later, we can make these the default, and allow selecting the B field transport algorithm from the input file.

@ftessier
Copy link
Member

ftessier commented Mar 7, 2019

@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.

@ftessier
Copy link
Member

ftessier commented Mar 8, 2019

@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 egsnrc.mortran will be called egsnrc_eemf.mortran, and egsnrc.macros will become egsnrc_eemf.macros.

@victorMalkov
Copy link
Contributor Author

@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?

@ftessier
Copy link
Member

@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 egsnrc.mortran. I was trying to resolve the conflict so as to keep you as the author of the commit... but then I found I can edit the commit author directly (!), so I will rebuild the pull request while preserving your authorship!

@ftessier
Copy link
Member

@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 egsnrc.mortran modifications to better reveal the changes in the diff. You mention in the commit message that there is documentation, but there is none; should I include your CLRP Report in the commit?

"******************************** 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"
Copy link
Collaborator

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?

Copy link
Collaborator

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?

Copy link
Member

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.

@victorMalkov
Copy link
Contributor Author

victorMalkov commented Mar 20, 2019 via email

@ftessier
Copy link
Member

@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!

@ftessier
Copy link
Member

ftessier commented Apr 1, 2019

I worked the commits to match this branch to pull request #422: In particular, I checked that EEMF_macros.mortran and EEMF_macros_beamrc.mortran match the corresponding files labeled release_02122018 in #422. These four EEMF: commits should be squashed into d620510 before merging in develop, creating a single commit. Review with whitespace changes hidden to reveal true changes.

@ftessier
Copy link
Member

ftessier commented Apr 1, 2019

I removed the example file HEN_HOUSE/user_codes/dosrznrc/examples/BFieldTestCase.egsinp from this pull request, since it is no longer in #422.

@ftessier
Copy link
Member

ftessier commented Apr 1, 2019

To be perfectly clear, there are 4 files changed between develop and this branch, as of 0e68a0f:

> git diff develop victor/EEMF --name-only

HEN_HOUSE/src/EEMF_macros.mortran
HEN_HOUSE/src/EEMF_macros_beamrc.mortran
HEN_HOUSE/src/egsnrc.macros
HEN_HOUSE/src/egsnrc.mortran

These correspond to the four files changed between pull request #422 and its merge base d0b1ec9:


> git diff  $(git merge-base develop victor/enhancedElectricMagneticMacros) victor/enhancedElectricMagneticMacros --name-only

HEN_HOUSE/src/EEMF_macros_beamrc_release_02122018.mortran
HEN_HOUSE/src/EEMF_macros_release_02122018.mortran
HEN_HOUSE/src/egsnrc.macros
HEN_HOUSE/src/egsnrc.mortran

I checked that these files match between the current tip of #211 and #422.

Copy link
Contributor

@mainegra mainegra left a 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!

@rtownson
Copy link
Collaborator

rtownson commented Apr 2, 2019

Tested again - works as expected. This is safe to merge into master because it is disabled by default. You have to add $(EGS_SOURCEDIR)EEMF_macros.mortran to the SOURCES list in the *.make file to enable.

@ftessier
Copy link
Member

ftessier commented Apr 2, 2019

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
@ftessier
Copy link
Member

ftessier commented Apr 2, 2019

Just fixed the EOL whitespace and line lengths in the EEMF BEAMnrc macros file (again!).

Copy link
Contributor

@blakewalters blakewalters left a 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.

@ftessier ftessier merged commit cfbb245 into nrc-cnrc:develop Apr 11, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants