Closed Tanimodori closed 1 year ago
@Erik3003 this would be your thing to know, since you wrote it. ^^
I recalled that Erik wrote that pdf based on an in-game book https://github.com/GregTech6/gregtech6/issues/80#issuecomment-1117343247. So those lines may need a revision. ^ ^
Possible typo
For the greatest efficiency you want
your neutron count one the fuel rod
^^^ Should be on
stay beneath the maximum stat of that
fuel rod at all times, while coming
as close to it as you can.
Yeah, that are typos. The "Deceases divisor of factor stat of fuel rods by 1." is probably a remnant of the older CO2 coolant description.
It should be:
"Multiplies emission stat of fuel rods by 4. Multiplies factor stat of fuel rods by 2.",
And the "one" should obviously also be "on".
To archive really high neutron counts,
^^^^^^^ achieve?
it is advisable to utilize a critical
reactor design, though it is also feasible
to run a burner reactor as a stable design.
@Erik3003 May I ask if I've just found another typo? archive
doesn't make sense here.
Emitting 900 neutrons onto the same
breeder rod with a loss of 500 neutrons
would mean that 400 neutrons would
end up on the breeder rod, meaning that
they would be added to the process of
turning into an enriched rod each tick.
^^^^ second
There are many "each tick" phrases used. But afaik fission is calculated per second (one tick in a second). I don't think it is accurate to use "each tick" especially the above one. The progress of breeding should be 400 neutrons per second rather than 400n per tick.
The archive/achieve thing is a typo, the ticks/seconds things is not. Neutron count on the rods only changes every second, but they get added to the breeding process every tick, just like how energy gets output every tick.
So that the update of neutrons count is separated from the update of breeding process and HU output. Thanks for your answering.
I've opened a PR that aimed at fixing the in-game description in the book "Fission Reactor Manual" as pointed out above. Extra work is needed to release a new version of the gt6fission.pdf
by Erik.
gt6fission.pdf (archived)
https://github.com/GregTech6/gregtech6/blob/75e724c721f57d1c7f76c5e91ce472d51f775489/src/main/java/gregtech/tileentity/energy/reactors/MultiTileEntityReactorRodNuclear.java#L179-L183
IIRC the description
Decreases divisor of factor stat of fuel rods by 1.
should be liketNeutronDiv -= 1;
in code. Isgt6fission.pdf
incorrect here?