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

Implement EGS_Mesh geometry for simulation inside CAD models #887

Merged
merged 95 commits into from
Oct 31, 2022

Conversation

mxxo
Copy link
Contributor

@mxxo mxxo commented Jul 4, 2022

This PR supersedes #556, #637, and #647.

This is a PR to integrate egs_mesh into the develop branch of Release 2022. The library should be considered a beta version, with the potential for latent bugs and implementation issues. The egs_mesh library has been completely rewritten from scratch by me from the initial Mevex implementation (#556). In particular, the use of volume and surface octrees in this implementation means this new version of egs_mesh is much better able to simulate large million-element meshes.

This version of egs_mesh has been mostly stable for about four months. It can simulate large and complex meshes such as the ICRP 145 adult human mesh reference phantoms, and preliminary testing have concluded that it has obtained similar results to Geant4 for these phantoms. Preliminary measurements suggest the performance of egs_mesh is competitive with the other transport codes that are capable of simulating tetrahedral meshes (Geant4, MCNP6, PHITS).

There is some basic user documentation here: https://mxxo.github.io/egs_mesh/docs/ (with more planned, including a STEP file simulation guide).

Currently, the two supported mesh input files are Gmsh msh4.1 and TetGen node and ele pairs.

There are some basic unit tests that can be run by:

cd $HEN_HOUSE/egs++/geometry/egs_mesh && make test_egs_mesh && ./test_egs_mesh

The expected output is that all 37 tests pass:

test test_howfar_interior_regular(two_elt_mesh)... ok
test test_howfar_interior_outside_thick_plane(two_elt_mesh)... ok
test test_howfar_interior_lost_particle(two_elt_mesh)... ok
test test_howfar_interior_tolerance(two_elt_mesh)... ok
test test_howfar_interior_reentry()... ok
test test_howfar_interior_boundary_straddle()... ok
test test_howfar_interior_stuck_on_boundary()... ok
test test_howfar_interior_thick_plane_negative_intersection()... ok
test test_unknown_node()... ok
test test_isWhere()... ok
test test_medium()... ok
test test_boundary()... ok
test test_neighbours()... ok
test test_hownear_interior()... ok
test test_hownear_exterior()... ok
test test_howfar_interior_basic()... ok
test test_howfar_exterior()... ok
test test_mesh_scaling()... ok
test test_mesh_scale_key_errors()... ok
test test_tetrahedron_face_eq()... ok
test test_tetrahedron_errors()... ok
test test_tetrahedron_neighbours()... ok
test test_parse_msh_version()... ok
test test_parse_msh41_groups()... ok
test test_parse_msh41_node_bloc()... ok
test test_parse_msh41_nodes()... ok
test test_parse_msh41_entities()... ok
test test_parse_msh41_element_bloc()... ok
test test_parse_msh41_elements()... ok
test test_parse_msh41_file_errors(mesh_file)... ok
test test_parse_msh41_file(mesh_file)... ok
test test_parse_tetgen_nodes()... ok
test test_parse_tetgen_elements()... ok
test test_tetgen_elt_media()... ok
test test_parse_tetgen_file_errors()... ok
test test_parse_tetgen_file()... ok
test test_unknown_mesh_file_extension()... ok

test result: 37 out of 37 tests passed

@mxxo mxxo requested a review from a team as a code owner July 4, 2022 22:59
@mxxo mxxo requested review from ftessier, mainegra and rtownson and removed request for a team July 4, 2022 22:59
@mxxo
Copy link
Contributor Author

mxxo commented Jul 5, 2022

This is ready for review and edits. There is a fairly convoluted commit history, and I would say squashing everything might be the easiest way to integrate it. I tried to comment as best I could, and I think where history will become more valuable is tracking changes to this initial version.

@rtownson rtownson self-assigned this Jul 5, 2022
@ftessier ftessier added this to the Release 2022 milestone Jul 5, 2022
@ftessier ftessier requested a review from blakewalters July 5, 2022 13:44
@ftessier
Copy link
Member

ftessier commented Jul 5, 2022

This is ready for review and edits. There is a fairly convoluted commit history, and I would say squashing everything might be the easiest way to integrate it. I tried to comment as best I could, and I think where history will become more valuable is tracking changes to this initial version.

Understood. I will take a peek at the commit history and perhaps keep a few key waypoints, but otherwise will squash away!

@ftessier
Copy link
Member

ftessier commented Jul 5, 2022

@mxxo I am building a cleaned up version of this branch, so please do not force-push anything here for the moment. I am keeping a lot of the commits (only squashing some smaller and related ones), because the log messages you wrote are really insightful and valuable for anyone working on egs_mesh in the future! 🙏🏻

@ftessier ftessier changed the title Beta EGS_Mesh implementation Implementation of EGS_Mesh geometry for simulation inside CAD meshes Jul 5, 2022
mxxo added 17 commits July 8, 2022 13:43
Add an egs++ geometry called egs_mesh that implements particle transport
methods for imported CAD mesh files in the Gmsh format. Note that the
mesh filename extension must be ".msh".
This is a combination of 8 original commits to start implementing
a .msh file parser, and associated unit tests:

- parse msh file version header
- parse msh2 $Nodes section
- parse msh2 and msh4 physical groups
- parse msh2 $Elements section
- parse msh4 $Entities section
The original intent for the msh file parser was to support both the
legacy (but stable) v2.2 and today's default (v4.1). Thinking again,
it's better if we only need to maintain a single parser. v4.1 is the
default for Gmsh today. There are no planned changes to the sections we
care about ($Entities, $PhysicalNames, $Elements and $Nodes). Any future
4.x revisions will hopefully not break the parser and we could "support"
them by accepting the new versions in parse_msh_version.
This is a combination of 11 original commits related to the
implementing the msh4 parser, and associated unit tests:

- parse msh4 $Nodes entity bloc
- parse entire msh4 $Nodes section
- parse single msh4 element bloc
- parse entire msh4 $Elements section
- add default values for mesh data structs
- Use namespace constant SIZET_MAX for default value
- add test for duplicate msh4 entities
- fix container size warnings
- add minimum required input sections for msh v4.1
This is a combination of 14 original commits related to catching errors
and adding exception throws in the msh4 parser:

- catch node tag overflow
- catch duplicate tags for all sections
- bubble up section parsing errors
- document that parsing functions ensure unique tags
- check that each mesh volume has a known physical group tag
- check that each tetrahedron has a valid volume (entity) tag
- throw exceptions for errors in parse_msh_version
- throw exceptions for errors in parse_msh4_groups
- throw exceptions for errors in parse_msh4_node_bloc
- throw exceptions for errors in parse_msh4_nodes
- throw exceptions for errors in parse_msh4_element_bloc
- throw exceptions for errors in parse_msh4_elements
- throw exceptions for errors in parse_msh4_entities
- throw exceptions for errors in parse_msh_file and parse_msh4_body
Remove all files not directly related to msh parsing to reduce the scope
of this branch. Also, temporarily remove egs_mesh library from egs++
Makefile: it will be added back when egs_mesh.h and egs_mesh.cpp are
added back as well.
Add msh_parser namespaces to split the API into public and private
sections. Also, remove the redundant msh4 label in names of functions
now in the msh41 namespace, and arrange data types at top of msh41
namespace.
Add pass-through constructors for all plain-old-data (POD) mesh data
types. We previously relied on aggregate initialization for brevity but
that is not actually supported in C++11 if structs have default members
(it was added in C++14). The new constructors are boilerplate but keep
us compliant with C++11.
mxxo added 3 commits July 8, 2022 13:52
Add a scale key so mesh files that aren't in cm can be scaled
appropriately.
This commit adds a TetGen node and ele file parser to EGS_Mesh. This
lets users provide meshes in the TetGen format, which is used by the
ICRP 145 mesh phantoms, among others. Previously a conversion step was
required to convert the ICRP 145 meshes to msh4.1. Meshes from TetGen
can now be directly simulated using EGS_Mesh.

The TetGen format uses a .node file to store node information and .ele
file for element information. Either the node or ele file can be
provided for the EGS_Mesh `file` input, the other will be opened
automatically.

Apart from adding direct support for important meshes from the
literature, the TetGen format is simpler than the Gmsh format, offering
an alternative for users generating their own mesh files. The Geant4 and
PHITS tetrahedral mesh implementations also have support for TetGen
files, so the same mesh can be used with each code.
@ftessier
Copy link
Member

ftessier commented Jul 8, 2022

Trimmed down to 89 commits, keeping all the insighful development comments provided by @mxxo. Reorganized commits, adjusted commit titles and messages, squashed together some smaller related commits. Null diff when compared to the previous pull request point (commit 51831ea), so no code change at this point.

One squash inadvertenly attributed a commit to me (7639706), but all these commits are authored by @mxxo. I am only cleaning up the branch!

@ftessier
Copy link
Member

ftessier commented Jul 8, 2022

This is safe to merge, since apart from entering egs_mesh in the top-level Makefile and Doxyfile, and an new method in egs_genvelope, all changes are restricted to new directories for the geometry and for the application.

@ftessier ftessier changed the title Implementation of EGS_Mesh geometry for simulation inside CAD meshes Implementat EGS_Mesh geometry for simulation inside CAD meshes Jul 8, 2022
@ftessier ftessier changed the title Implementat EGS_Mesh geometry for simulation inside CAD meshes Implement EGS_Mesh geometry for simulation inside CAD meshes Jul 8, 2022
@ftessier
Copy link
Member

ftessier commented Jul 8, 2022

Applied astyle to egs_mesh .cpp and .h files.

@ftessier
Copy link
Member

ftessier commented Jul 8, 2022

Applied astyle version 3.1, minor tweaks.

@ftessier
Copy link
Member

ftessier commented Jul 15, 2022

@mxxo I attempted to capture what you add noted in the pull request message #556, regarding the historical account of EGS_Mesh development. Is that fine by you? In particular I don't know the nature of contributions by Pascal Micheau, so not sure if he is to be listed under Contributors or simply acknowledged. At any rate, adjust as you see fit!

@ftessier
Copy link
Member

For the record and perfect clarity, here is the permission from the publisher for the implementation of closest_point_triangle and closest_point_tetrahedron, as mentioned in the file headers:

from: Permissions Mailbox
date: 24 Mar 2020, 12:50
subject: RE: Source code reproduction permission

I reached out to the editor of this book and here’s what he had to say…

There does not seem to be a copyright issue. I applaud this requestor’s overly-cautious approach to and respect for copyright protection but he is not asking to reproduce the text, rather he wants to implement ideas generated from the algorithms presented, which in and of themselves are not patented nor subject to copyright, as I see it. My response would be to let him know he does not need permission for the type of use described.

So, you’re fine to proceed with your project.

Kind Regards,
Diana Taylor
Permissions Coordinator | US Books Permissions Department

@mxxo
Copy link
Contributor Author

mxxo commented Jul 15, 2022

Hi @ftessier, everything looks great, thank you for that!

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.

This is a very welcome improvement to the egs++ geometry module! Thanks @mxxo for your contributions to EGSnrc!

@ftessier ftessier changed the title Implement EGS_Mesh geometry for simulation inside CAD meshes Implement EGS_Mesh geometry for simulation inside CAD models Jul 20, 2022
@ftessier
Copy link
Member

Adjusted the authorship in Makefiles, which according to other egs++ files follows the authorship of the associated code.

@ftessier
Copy link
Member

Adjusted authorsip again in mevegs Makefile. In the case of apps, it appears that the usage is to preserve the original author. Anyways, cosmetic changes only.

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.

5 participants