Open arnoudvanderleer opened 2 months ago
https://github.com/BiggerSeries/BiggerReactors/blob/b08980a0546a67974b5b649dffe367b508fb7c2e/src/main/java/net/roguelogix/biggerreactors/multiblocks/reactor/simulation/cpu/TimeSlicedReactorSimulation.java#L31-L38 yLevel does not use the offset and only uses the currentRod, which means that only the first controlRods.length y-levels can be the source of radiation; if you have 3 rods and the reactor has a height of 2, that means that two thirds of the time, radiation originates from the first level.
yLevel
currentRod
controlRods.length
https://github.com/BiggerSeries/BiggerReactors/blob/b08980a0546a67974b5b649dffe367b508fb7c2e/src/main/java/net/roguelogix/biggerreactors/multiblocks/reactor/simulation/cpu/TimeSlicedReactorSimulation.java#L31-L38
yLevel
does not use the offset and only uses thecurrentRod
, which means that only the firstcontrolRods.length
y-levels can be the source of radiation; if you have 3 rods and the reactor has a height of 2, that means that two thirds of the time, radiation originates from the first level.