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

Fix egs_chamber usage of latch for splitting #622

Merged
merged 1 commit into from
Nov 13, 2020

Conversation

rtownson
Copy link
Collaborator

@rtownson rtownson commented Aug 20, 2020

Fix the egs_chamber russian roulette splitting algorithm so that the latch variable is no longer used. Instead, an extra stack is created with a splitting variable in it. This avoids allowing egs_chamber to overwrite the latch, in case other objects such as egs_phsp_scoring need to use it.

Previously, if you used russian roulette in egs_chamber and scored a phsp using egs_phsp_scoring, the multiple passer flag for scoring particles may have been incorrect. I think this would be a small effect.

@rtownson rtownson added the bug label Aug 20, 2020
@rtownson rtownson self-assigned this Aug 20, 2020
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.

Other than testing it, it looks good to me!

@ftessier
Copy link
Member

@rtownson Ok, waiting on the test results. Do you need precision simulations? If I read the changes correctly, simulations with these changes should be numerically equivalent to previous ones using latch, no? In this case, testing can be done with very short simulations.

@ftessier
Copy link
Member

I note that the check failed due to the egs++ failing to compile. This is a recurrent problem recently with Travis. It fails egs++ compilation, but upon relaunching the check it often succeeds (without changing the branch at all). So there seems to be something flaky on the Travis side, I have not figured it out yet...

@ftessier
Copy link
Member

ftessier commented Sep 9, 2020

@rtownson is this ready to go in your opinion, or do you seek more testing ahead of merging? If so, can you turn this into a draft pull request (and optionally add [WIP] in the title?

@rtownson
Copy link
Collaborator Author

rtownson commented Sep 9, 2020

I do still want to take it for a spin, and haven't had a chance yet. I'll turn it into a draft..

@rtownson rtownson changed the title Fix egs_chamber usage of latch for splitting [WIP] Fix egs_chamber usage of latch for splitting Sep 9, 2020
@rtownson rtownson marked this pull request as draft September 9, 2020 15:20
@ftessier
Copy link
Member

ftessier commented Sep 9, 2020

Let's create a WIP label!!

@ftessier ftessier added the work in progress Work in progress, don't merge yet label Sep 9, 2020
@ftessier ftessier changed the title [WIP] Fix egs_chamber usage of latch for splitting Fix egs_chamber usage of latch for splitting Sep 9, 2020
@rtownson
Copy link
Collaborator Author

rtownson commented Sep 9, 2020

@ftessier I do get different numbers, within the statistical uncertainties. My understanding was that any change to the code that requires recompilation can potentially produce a different result for the same seeds.

@ftessier
Copy link
Member

ftessier commented Sep 9, 2020

I will look into that. In principle yes, but in this particular case I fail to see why there would be a numerical difference, especially given that most of the changes here pertain to integer variables! The compiler optimization might create somewhat different code paths though, so I will try to compile without optimization to check.

@ftessier
Copy link
Member

ftessier commented Sep 14, 2020

@rtownson I am testing this with a full exradin A12 chamber simulation depth dose, with TmpPhsp and xcse on. As you said, the results differ numerically, and I am trying to track this down. I have created a code where the_extra_stack->nbr_splitting is assigned and shadows the_stack->latch, but is never used for comparisons etc. I am perplexed, because at some point the two values diverge, but I have not yet found where or why this happens...

@ftessier
Copy link
Member

Oh! While writing my previous comment it occured to me that latch is initialized from getNextParticle, but the_extra_stack->nbr_splitting isn't! Yep, that seems to be the issue.

@ftessier
Copy link
Member

Confirmed: upon adding the_extra_stack->nbr_splitting[0] = 0; after getNextParticle in simulateSingleShower, this new version of egs_chamber.cpp produces identical numerical output as before. This is confirmed with a full dose distribution for an exradin A12 ionization chamber in water, using both TmpPhsp and cross-section enhancement.

@rtownson
Copy link
Collaborator Author

I was just working on this, but you beat me to the solution! Thanks Fred!

@rtownson rtownson removed the work in progress Work in progress, don't merge yet label Sep 14, 2020
@rtownson rtownson marked this pull request as ready for review September 14, 2020 19:40
@ftessier ftessier requested review from blakewalters and removed request for blakewalters September 17, 2020 18:04
@ftessier ftessier force-pushed the fix-egs-chamber-latch branch from 1ba7aff to 90449f9 Compare November 13, 2020 18:34
Use a dedicated splitting variable nbr_split, instead of latch, to hold
the splitting number in the egs_chamber application. A new stack
variable nbr_splitting is added to pass its value through the EGSnrc
back end. This avoids overwriting the latch variable in cases where it
is needed otherwise, for example in the phsp scoring object. Ideally,
the meaning of latch should remain consistent with BEAMnrc.
@ftessier ftessier force-pushed the fix-egs-chamber-latch branch from 90449f9 to 91ad1e7 Compare November 13, 2020 18:36
Copy link
Member

@ftessier ftessier left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rebased on develop and squashed into a single commit. Adjusted the commit title and text.

@ftessier ftessier merged commit 7247e18 into develop Nov 13, 2020
@ftessier ftessier deleted the fix-egs-chamber-latch branch November 13, 2020 20:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants