Its unclear how to set symmetry correctly
See original GitHub issueI converted a 1/3 core reactor to full core using ThirdCoreHexToFullCoreChanger.convert
After expanding the symmtry is set using
r.core.symmetry = geometry.SymmetryType(
geometry.DomainType.FULL_CORE, geometry.BoundaryType.NO_SYMMETRY
)
My code also tests weather its full core using
if self.r.core.isFullCore
which checks
return self.symmetry.domain == geometry.DomainType.FULL_CORE
Since core.symmetry
was set, but self.symmetry.domain
is checked for symmetry, it still believes it is not full core
Please advise why both core.symmetry
and self.symmetry.domain
exist, and how to communicate to ARMI that it is now full core.
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Symmetry | GD&T Basics - GDandTBasics.com
Symmetry should be avoided in most cases due to its specific functional requirements and measurement difficulty. With flatness, parallelism and ...
Read more >Symmetry error, false center - Blender Stack Exchange
Select Object → Set Origin → Origin to Geometry in the menu of the viewport to center it. This should fix it.
Read more >How to Use Clip Studio Paint's Symmetrical Ruler
To adjust your symmetrical ruler, click on the operation tool. The operation tool is the one with the icon of a computer mouse...
Read more >Brain Teaser: Symmetry Paper Trick - What Do We Do All Day
Will this symmetry paper trick fool your kids? Use this brain teaser to exercise analytical thinking skills and promote growth mindset and problem...
Read more >Using Symmetry in DesignModeler and Expanding the Results
Using Symmetry in DesignModeler and Expanding the Results · In DM, click Tools, Symmetry then select the Plane. · Generate and this is...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks for explanation, issues is probably on my end
@onufer I have ammended the unit test as follows, and it still passes:
So the basic unit test checks out. Is this not what you expected? OR do you see something different with your data?