I am trying to calculate flux due to a reactor at some dsitance away from the core(specifically at just RPV edge). I applied shielding to it and checking the flux after shield. Now I made the core a homogeneous cylindrical source(settings changes to fixed source as I am not doing k eff calc). Now I am getting no flux in my tally so I tried checking the flux at core edge as well. There also I am not able to get any flux. My geometry is all good as I can see from the plots.
SOURCE DEFINITION
----------------------
source = openmc.IndependentSource()
source.space = openmc.stats.CylindricalIndependent(
r=openmc.stats.PowerLaw(0.0, R_core, 2),
phi=openmc.stats.Uniform(0.0, 2*np.pi),
z=openmc.stats.Uniform(-H_core/2, H_core/2),
origin=(0.0, 0.0, 0.0)
)
source.energy = openmc.stats.Watt(a=0.988, b=2.249)
I specified source like this since its uniformly distributed in a cylinder. Can someone help me in this.