Shuaib
August 24, 2021, 5:32am
1
How we will model Neutron Shield Pane in reactor core… is there any command for defining polar plan or any other idea to to model it…? Imae attached here is from Beavrs Benchmark…
The BEAVRS OpenMC model can be found here:
In particular, here’s the file where the neutron shield is created:
"""univzero.py
Provides a container class for the BEAVRS main universe cells
"""
import beavrs.constants as c
import openmc
class UniverseZero(openmc.Universe):
def __init__(self, core, mats, is_2d=False):
""" Creates BEAVRS main universe """
super(UniverseZero, self).__init__(name='Main BEAVRS universe', universe_id=0)
self.core = core
self.mats = mats
self.is_2d = is_2d
This file has been truncated. show original
Shuaib
August 24, 2021, 5:29pm
3
okay thank you @paulromano got it…