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

Adding methods for graveyard removal and creation #714

Merged
merged 50 commits into from
Aug 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
a3a1164
Adding creation of interior graveyard surface triangles.
pshriwise Nov 2, 2020
ee09934
Moving INFTY symbol into the MOAB namespace.
pshriwise Nov 3, 2020
cba9b1a
Adding a check for consistency when creating volumes.
pshriwise Nov 3, 2020
18ef758
A whole bunch of reorganization.
pshriwise Nov 3, 2020
20f2eb0
Adding new file for testing graveyard creation/removal.
pshriwise Nov 10, 2020
3f8bd24
Factoring out a function for retrieving the group sets from the MOAB …
pshriwise Nov 10, 2020
882d57e
Adding a utility header and function for transforming a string to low…
pshriwise Nov 10, 2020
73a34ee
Adding test for graveyard on the demo model.
pshriwise Nov 11, 2020
8c131a5
Sizing category strings to they are recognizable by the MOAB tagging …
pshriwise Nov 11, 2020
4416421
Updating how the group value is constructed in get_groups.
pshriwise Nov 11, 2020
2f8d21c
Removing a duplicate tag_get_value call.
pshriwise Nov 11, 2020
599a42f
Managing the BVH structure of the implicit complement.
pshriwise Nov 11, 2020
7b21c20
Using some of the GTT methods to simplify creating new geometry sets.
pshriwise Nov 11, 2020
2a3969d
Adding description of the graveyard creation algorithm. Also using GT…
pshriwise Nov 11, 2020
d356874
Removing some comments.
pshriwise Nov 11, 2020
0ec092f
Added bulk of the remove graveyard method. Something is wrong with tr…
pshriwise Nov 11, 2020
b113b1b
Updates to methods to ensure multiple graveyard removals/additions wo…
pshriwise Nov 12, 2020
3fc8396
Updating signature of get_graveyard_group.
pshriwise Nov 28, 2020
2aff072
Making sure all entities get removed when removing the graveyard.
pshriwise Nov 28, 2020
99fc6fb
Adding checks that the number/type of entities and entity sets remai…
pshriwise Nov 28, 2020
77e0d34
Adding futher tests.
pshriwise Nov 28, 2020
14c23f2
Some cleanup from self-review.
pshriwise Nov 28, 2020
401c54b
Removing curves as well. Making box bump larger for now.
pshriwise Nov 28, 2020
9037469
Adding removal of geometric vertex sets.
pshriwise Nov 28, 2020
f93f7b3
Updating connectivity scheme when creating box triangles.
pshriwise Nov 28, 2020
4e9d102
Adding graveyard tests using a file exported from Trelis.
pshriwise Nov 28, 2020
0b8c4cc
A much more simple version of graveyard entity collection.
pshriwise Nov 28, 2020
a8ca3d5
Re-adding removal of volume trees.
pshriwise Nov 28, 2020
516a085
Accumlating and deleting sets separately from entities.
pshriwise Nov 29, 2020
9177422
Adding a bunch of test conditions for the Trelis file.
pshriwise Nov 29, 2020
b08b39b
No need to remove parent/child relationships. Those are cleaned up in…
pshriwise Nov 29, 2020
7eb68e1
Applying style guide.
pshriwise Nov 29, 2020
0e340de
Updating some comments for clarity in the graveyard test file.
pshriwise Nov 30, 2020
06add3e
Removing unecessary empty line.
pshriwise Nov 30, 2020
ddd3af3
Some comment updates for clarity. Reducing the size of the bump beyon…
pshriwise Nov 30, 2020
e60b35d
Adding some brief documentation to the BBOX class.
pshriwise Nov 30, 2020
e6b8833
Placing the method in the moab namespace.
pshriwise Nov 30, 2020
b5c2296
Adding news file.
pshriwise Nov 30, 2020
aacbafc
Applying style guide.
pshriwise Jan 21, 2021
2267b72
ic to implicit_complement
pshriwise Jan 24, 2021
ef6946d
Simplifying graveyard presence check.
pshriwise Jan 24, 2021
0ea45ed
Adding an expand method to the box struct for convenience.
pshriwise Jan 24, 2021
95f1f8d
Making array args to box_to_surf const.
pshriwise Jan 24, 2021
364c24d
Moving lowercase_str into a new dagmc_util namespace.
pshriwise Jan 24, 2021
1134648
Report number of graveyard groups to user in error message.
pshriwise Jan 24, 2021
67a4765
Adding some wrapper functions to avoid propagation of ifdefs.
pshriwise Mar 25, 2021
a940fb5
Removing old news file. Updating changelog.
pshriwise Jul 23, 2021
f8db99a
Removing duplicate getobb definition after rebase.
pshriwise Aug 17, 2021
5b418ec
Applying style guide.
pshriwise Aug 17, 2021
c31cf5d
Removing unecessary detail in changelog.
pshriwise Aug 17, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Next version
* GitHub Action to build and upload Docker images. (#746, #748, #754, #757, #758, #759, #765, #767)
* Enforcing usage of Python3 for PyNE amalgamation. (#773)
* Adding workflow_dispatch option to docker_publish workflow (#776)

* DagMC methods for creation and removal of the graveyard volume (#714)

**Changed:**

Expand Down
Loading