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_kerma FD bugs and expand its capabilities #610

Merged
merged 9 commits into from
Aug 19, 2020

Conversation

mainegra
Copy link
Contributor

@mainegra mainegra commented Jun 19, 2020

Introduces new features in egs_kerma and fixes several bugs in the forced-detection algorithm. The linear track-length scoring has not been modified as it was working as expected.

Bug fixes:

  • Kerma calculation with forced-detection (FD) VRT: Use proper equation
    based on the integral over the path across the scoring region.
  • Account for the possibility of multiple entries to scoring volume when ray-tracing along the photon's directions (FD). This is relevant for hollow geometries such as spherical or cylindrical shells.
  • Fix link to Common input syntax page from documented egs++ apps manuals.

New features:

  • Forced detection can now be requested for individual calculation geometries.
  • A default FD geometry can be also provided. In that case, calculation geometries
    without their FD geometry will use this one. If no FD is to be used, this option
    must be omitted.
  • The rationale behind requiring an FD geometry is to guide the ray-tracing towards the scoring regions (using a howfar call) which might only cover a small solid angle. In cases of sources embedded inside scoring regions the actual calculation geometry can be defined as the FD geometry. The logical checks to activate FD are:
    • Is there an FD geometry?
    • AND
      • Is particle inside a scoring region? OR
      • Is particle outside FD geometry and directed towards it? OR
      • Is particle inside FD geometry?
        If the FD geometry is not judiciously chosen, time is wasted ray-tracing photons which
        might no be crossing scoring regions.
  • Scoring kerma in more than one region is possible if their individual masses
    are provided.
  • Masses for each scoring region are required, unless one is only interested
    in kerma in the whole volume, in which case only the mass of the whole scoring
    volume required (original approach).
  • Acccept environment variables in file name:
    E*muen file name can start with an environment variable now.
  • Dropped terms such as cavity region, cavity mass, cavity geometry in favor of
    scoring region, scoring region masses, FD geometry, etc. Old inputs will fail
    with a message instructing the user what input key should be used.
  • Fluence is still calculated for the whole sensitive volume. Option for estimating
    fluence in each scoring region might be added in the near future.
  • Updated documentation reflecting the current status
  • Add two new examples to egs_kerma
    - depth dose in water for 5 keV photon point source
    - photon fluence outside a thick lead shield for 20 MeV e- point source
  • Added two new E*muen/rho files calculated with g-app and mcdf-xcom option:
    - water 1 keV to 1.5 MeV
    - air 1 keV to 20 MeV
  • Renamed emuen_icru90_1.5MeV.data -> emuen_rho_air_1keV-1.5MeV.data

@ftessier
Copy link
Member

😲 Nice!

@mainegra
Copy link
Contributor Author

mainegra commented Jun 19, 2020

@rtownson this pull request requires updating the egs++ documentation once it is merged!
Ihave done it locally on my machine, but you have perfected the process of pushing it up to github! 😃

@mainegra
Copy link
Contributor Author

mainegra commented Jun 19, 2020

@ftessier, @blakewalters and @rtownson I know this looks like a huge undertaking, but I have validated the results over and over again and the kerma and fluence results agree very well with other MC codes! 😉
There are several users waiting for this update! Please review when you a have a chance!

@ftessier ftessier force-pushed the fix-update-egs-kerma branch from 723f152 to 569aa9c Compare August 18, 2020 22:05
@ftessier
Copy link
Member

Rebased on develop.

@ftessier ftessier force-pushed the fix-update-egs-kerma branch from 569aa9c to 884e35f Compare August 19, 2020 01:31
@ftessier
Copy link
Member

Working on the commits, not changing any code. Work in progress...

mainegra and others added 9 commits August 19, 2020 10:23
- Fix bug in kerma calculation with the forced detection variance
  reduction technique: Use proper equation based on the integral over
  the path across the scoring region.

- Forced detection (FD) scoring is requested by defining an FD geometry
  rather than via a flag. The rationale behind this is that in most
  cases the FD geometry will direct the ray-tracing towards the scoring
  regions (using a howfar call) which might only cover a small solid
  angle. In cases of sources embedded inside scoring regions the actual
  calculation geometry can be defined as the FD geometry. The logical
  checks to activate FD are:
     0 - Is there an FD geometry? AND
     1 - Is particle inside a scoring region? OR
     2 - Is particle outside FD geometry and directed towards it? OR
     3 - Is particle inside FD geometry?
  If the FD geometry is not judiciously chosen, time is wasted
  ray-tracing photons which might no be crossing scoring regions.

- Forced detection can now be requested for individual calculation
  geometries.

- A default FD geometry can also be provided. In that case, calculation
  geometries without their FD geometry will use this one. If no FD is to
  be used, this option must be omitted.

- Scoring kerma in more than one region is possible if their individual
  masses are provided.

- Masses for each scoring region are required, unless one is only
  interested in kerma in the whole volume, in which case only the mass
  of the whole scoring volume is required (original approach).

- Dropped terms such as cavity region, cavity mass, cavity geometry in
  favor of scoring region, scoring region masses, FD geometry, etc. Old
  inputs will fail with a message instructing the user what input key
  should be used.

- Fluence is still calculated for the whole sensitive volume. Option for
  estimating fluence in each scoring region might be added in the future.
The E*muen file name can now start with an environment variable name.
Account for the possibility of multiple entries into the scoring volume
when ray-tracing along the photon's direction when using forced
detection (exponential track-lenght estimation). This is relevant for
hollow geometries such as spherical or cylindrical shells. The scoreInCV
method calls itself recursively if the photon re-enters the FD geometry
or is still inside it.
Use a while loop to continue navigating through geometry when a re-entry
to the scoring volume is possible. The scoreInCV method was called
recursively when there were multiple entries to the scoring volume,
which caused memory allocation errors.
- Use new input keys for scoring regions
- Use $EGS_HOME for E*muen file location
- Change photoelectric cross sections to xcom (unrenormalized)
- Set number of histories to 4 million
- Refer to expected efficiency gains with FD over TL estimation.
Add two new examples:
  - depth dose in water for a 5 keV photon point source
  - photon fluence outside a thick lead shield for a 20 MeV electron
    point source

Rename emuen_icru90_1.5MeV.data to emuen_rho_air_1keV-1.5MeV.data, and
add two new E*muen/rho files calculated with the g application and the
mcdf-xcom option:
  - water, from 1 keV to 1.5 MeV
  - air,   from 1 keV to 20 MeV
Fix the table of contents (TOC) of application documentation. Links to
common inputs was defaulting to the title of first section of the
"Common Inputs" page, which is "Introduction". It then appeared twice in
the TOC of application documentation. Add optional text "Common inputs"
to the TOC.
@ftessier ftessier force-pushed the fix-update-egs-kerma branch from 884e35f to 5138aaf Compare August 19, 2020 14:33
@ftessier
Copy link
Member

Cleaned up commits, reordered, squashed some small ones, etc. No changes to the files (except EOL white space removal and astyle formatting).

@ftessier ftessier merged commit 09d5d64 into develop Aug 19, 2020
@ftessier ftessier deleted the fix-update-egs-kerma branch August 19, 2020 14:53
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.

4 participants