mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 05:35:49 -04:00
Remove old condition for cylindrical mesh
This commit is contained in:
parent
6910e36572
commit
160360a2a6
1 changed files with 1 additions and 1 deletions
|
|
@ -1091,7 +1091,7 @@ double CylindricalMesh::find_r_crossing(
|
|||
if (std::abs(c) <= 1e-10)
|
||||
return INFTY;
|
||||
|
||||
if (-p - D > l && std::abs(c) > 1e-10)
|
||||
if (-p - D > l)
|
||||
return -p - D;
|
||||
if (-p + D > l)
|
||||
return -p + D;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue