Hello Dr, Thanks for the explanation of the quadric function. I was able to understand the application and was able to create a demo of 45 angular x cylinder, piercing z cylinder. Below is the code I am using and attached is the figure showing the behavior.
Now, with the python function, you provided above, I believe that function is for calculating the coefficients of a quadric for different x1 and x2? this does not impact on how openmc create quadric. since I can use the “openmc.Quadric” to create the quadric. And if I know the coefficients I should be good to go? Now, with the function I know I can calculate the a,b,c,d,…values for 135 degrees (x1=(0,0,0) and x2=(-1,1,0)) and
225 degrees (x1=(0,0,0) and x2=(-1,-1,0)) and 315 degrees (x1=(0,0,0) and x2=(1,-1,0)) manually. But, I want to put x1 and x2 value on the script and get the output as the a,b,c,d,…values for different xi and x2 value. Can you please guide here on this? Also, I did not understand " For now, you can copy this function into your script and use it – it should be part of the next release of OpenMC and will be available to you by default then." can you please elaborate how. Lastly. I haven’t tried with the octagon surface yet with quadric. I will try and see how things turn out. “I’m also going to add a function for generating a plane given three points on the plane (which would have been useful for your octagon!).” please do. Thanks.
xp1=openmc.XPlane(surface_id=1, x0=0)
yp2=openmc.YPlane(surface_id=2, y0=0)
zp1=openmc.ZPlane(surface_id=3, z0=5)
zp2=openmc.ZPlane(surface_id=4, z0=-5)
zc1=openmc.ZCylinder(surface_id=5, R=1)
zc2=openmc.ZCylinder(surface_id=6, R=1.5)
xyzc1=openmc.Quadric(surface_id=7, a=1, b=1, c=2, d=-2, k=-0.18)
region1 = openmc.Cell(cell_id=1, name=‘cell 3’)
region2 = openmc.Cell(cell_id=2, name=‘cell 2’)
region3 = openmc.Cell(cell_id=3, name=‘cell 3’)
region1.region=(-zp1&+zp2&+zc1&-zc2&+xyzc1&+xp1&+yp2) | (-zp1&+zp2&+zc1&-zc2&-yp2) | (-zp1&+zp2&+zc1&-zc2&-xp1)
region2.region=-zp1&+zp2&-zc1
region3.region=-xyzc1&+xp1&+yp2&-zc2&+zc1
Instantiate ZCylinder surfaces
root = openmc.Universe(universe_id=0, name=‘root universe’)
Register Materials with Cells
region1.fill = SS304
region2.fill = graphite
region3.fill = water
Instantiate Universe
root.add_cells([region1, region2, region3])
Instantiate a Geometry, register the root Universe, and export to XML
geometry = openmc.Geometry(root)
geometry.export_to_xml()
