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

Fixed typo causing error with Sphere model #8

Merged
merged 3 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 src/openmc_cad_adapter/gqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def characterize_general_quadratic( surface ): #s surface
delta = 0
else:
delta = -1 if det_Ac < 0 else -1
eigen_results = np.linalg.eig(Aa);
eigen_results = np.linalg.eig(Aa)
signs = np.array([ 0, 0, 0 ])
for i in range( 0, 3 ):
if eigen_results.eigenvalues[ i ] > -1 * gq_tol:
Expand Down
2 changes: 1 addition & 1 deletion src/openmc_cad_adapter/surfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class CADSphere(CADSurface, openmc.Sphere):

def to_cubit_surface_inner(self, ent_type, node, extents, inner_world=None, hex=False):
cad_cmds = []
cad_cmds.append( f"sphere redius {self.r}")
cad_cmds.append( f"sphere radius {self.r}")
ids = emit_get_last_id(ent_type, cad_cmds)
move(ids, self.x0, self.y0, self.z0, cad_cmds)
return ids, cad_cmds
Expand Down
46 changes: 23 additions & 23 deletions src/openmc_cad_adapter/to_cubit_journal.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def to_cubit_journal(geometry : openmc.Geometry, world : Iterable[Real] = None,
' Please provide a world size argument to proceed')
# to ensure that the box
box_max = np.max(np.abs(bbox[0], bbox[1]).T)
world_size = (2 * box_max, 2 * box_max, 2 * box_max)
world = (2 * box_max, 2 * box_max, 2 * box_max)

if world is None:
raise RuntimeError("Model extents could not be determined automatically and must be provided manually")
Expand Down Expand Up @@ -122,19 +122,19 @@ def reverse():
(gq_type, A_, B_, C_, K_, translation, rotation_matrix) = characterize_general_quadratic(surface)

def rotation_to_axis_angle( mat ):
x = mat[2, 1]-mat[1, 2];
y = mat[0, 2]-mat[2, 0];
z = mat[1, 0]-mat[0, 1];
r = math.hypot( x, math.hypot( y,z ));
t = mat[0,0] + mat[1,1] + mat[2,2];
theta = math.atan2(r,t-1);
x = mat[2, 1]-mat[1, 2]
y = mat[0, 2]-mat[2, 0]
z = mat[1, 0]-mat[0, 1]
r = math.hypot( x, math.hypot( y,z ))
t = mat[0,0] + mat[1,1] + mat[2,2]
theta = math.atan2(r,t-1)

if abs(theta) <= np.finfo(np.float64).eps:
return ( np.array([ 0, 0, 0 ]), 0 )
elif abs( theta - math.pi ) <= np.finfo(np.float64).eps:
# theta is pi (180 degrees) or extremely close to it
# find the column of mat with the largest diagonal
col = 0;
col = 0
if mat[1,1] > mat[col,col]: col = 1
if mat[2,2] > mat[col,col]: col = 2

Expand All @@ -156,7 +156,7 @@ def rotation_to_axis_angle( mat ):
r1 = math.sqrt( abs( -K_/A_ ) )
r2 = math.sqrt( abs( -K_/B_ ) )
r3 = math.sqrt( abs( -K_/C_ ) )
cmds.append( f"sphere redius 1")
cmds.append( f"sphere radius 1")
ids = emit_get_last_id( ent_type , cmds)
cmds.append( f"body {{ { ids } }} scale x { r1 } y { r2 } z { r3 }")
move( ids, translation[0,0], translation[1,0], translation[2,0], cmds)
Expand Down Expand Up @@ -403,48 +403,48 @@ def draw_hex_cell( n, cell, x, y ):
y_pos = 0
r = ring_id
for i in range( r, 0, -1 ):
x_pos = x * center_to_mid_side_diameter;
y_pos = ring_id * side_to_side_diameter - ( x ) * 0.5 * side_to_side_diameter;
x_pos = x * center_to_mid_side_diameter
y_pos = ring_id * side_to_side_diameter - ( x ) * 0.5 * side_to_side_diameter
for n, cell in us[k]._cells.items():
draw_hex_cell( n, cell, x_pos, y_pos )
#print( r, k, x, x_pos, y_pos )
k = k + 1
x = x + 1
y_pos = ring_id * side_to_side_diameter - ( x ) * 0.5 * side_to_side_diameter;
y_pos = ring_id * side_to_side_diameter - ( x ) * 0.5 * side_to_side_diameter
for i in range( r, 0, -1 ):
x_pos = x * center_to_mid_side_diameter;
x_pos = x * center_to_mid_side_diameter
for n, cell in us[k]._cells.items():
draw_hex_cell( n, cell, x_pos, y_pos )
#print( r, k, x, x_pos, y_pos )
y_pos = y_pos - side_to_side_diameter;
y_pos = y_pos - side_to_side_diameter
k = k + 1
for i in range( r, 0, -1 ):
x_pos = x * center_to_mid_side_diameter;
y_pos = - ring_id * side_to_side_diameter + ( x ) * 0.5 * side_to_side_diameter;
x_pos = x * center_to_mid_side_diameter
y_pos = - ring_id * side_to_side_diameter + ( x ) * 0.5 * side_to_side_diameter
for n, cell in us[k]._cells.items():
draw_hex_cell( n, cell, x_pos, y_pos )
#print( r, k, x, x_pos, y_pos )
k = k + 1
x = x - 1
for i in range( r, 0, -1 ):
x_pos = x * center_to_mid_side_diameter;
y_pos = - ring_id * side_to_side_diameter - ( x ) * 0.5 * side_to_side_diameter;
x_pos = x * center_to_mid_side_diameter
y_pos = - ring_id * side_to_side_diameter - ( x ) * 0.5 * side_to_side_diameter
for n, cell in us[k]._cells.items():
draw_hex_cell( n, cell, x_pos, y_pos )
#print( r, k, x, x_pos, y_pos )
k = k + 1
x = x - 1
y_pos = - ring_id * side_to_side_diameter - ( x ) * 0.5 * side_to_side_diameter;
y_pos = - ring_id * side_to_side_diameter - ( x ) * 0.5 * side_to_side_diameter
for i in range( r, 0, -1 ):
x_pos = x * center_to_mid_side_diameter;
x_pos = x * center_to_mid_side_diameter
for n, cell in us[k]._cells.items():
draw_hex_cell( n, cell, x_pos, y_pos )
#print( r, k, x, x_pos, y_pos )
y_pos = y_pos + side_to_side_diameter;
y_pos = y_pos + side_to_side_diameter
k = k + 1
for i in range( r, 0, -1 ):
x_pos = x * center_to_mid_side_diameter;
y_pos = ring_id * side_to_side_diameter + ( x ) * 0.5 * side_to_side_diameter;
x_pos = x * center_to_mid_side_diameter
y_pos = ring_id * side_to_side_diameter + ( x ) * 0.5 * side_to_side_diameter
for n, cell in us[k]._cells.items():
draw_hex_cell( n, cell, x_pos, y_pos )
#print( r, k, x, x_pos, y_pos )
Expand Down
Loading