In my nodejs project i use
Code
C = Cell_Count //Number of Cells within the Reactor
N = Nearby_Cells //Cells that are near Each other
P = Pulses Per Tick
H = Heat Per Tick
E = Energy Generated Per Tick
The Formula i Got from th FTB site about the Reactor said to use
Code
Single Cells
P = 1 + N;
H = 2 * P * (P + 1);
E = 5 * P;
Dual/Quad Cells
P = 1 + (C / 2) + N;
H = 2 * C * P * (P + 1);
E = 5 * C * P;
I wanted to make sure if that formula was correct or if there was another formula for the Reactors?