- Joined
- Sep 29, 2015
- Messages
- 4
- Reaction score
- 0
Getting the maximum energy production for a given volume is something many ships need to do, so I have set about figuring a way to do just that.
So far I have figured out the best way to arrange reactors to get the most energy possible from all rectangular volumes of size 27 or less, of note is the 3x3x3 design, which turned out to produce more power than the "optimal" 3x3x3 design on starmadepedia:
powerOutput: 2051.6e
5 2 5
2 7 2
5 2 5
Currently the way I've been finding designs was through a program I wrote that tries out every possible reactor design for a given volume but that starts to get prohibitive with larger volumes, can any of you think of a better way to do it?
edit:
sorry, I should probably put the design in a more usable format:
powerOutput: 2051.6e
101 ; 010 ; 101
010 ; 111 ; 010
101 ; 010 ; 101
(in case you were wondering, the first design is what you get by interpreting the latter design as a binary number)
So far I have figured out the best way to arrange reactors to get the most energy possible from all rectangular volumes of size 27 or less, of note is the 3x3x3 design, which turned out to produce more power than the "optimal" 3x3x3 design on starmadepedia:
powerOutput: 2051.6e
5 2 5
2 7 2
5 2 5
Currently the way I've been finding designs was through a program I wrote that tries out every possible reactor design for a given volume but that starts to get prohibitive with larger volumes, can any of you think of a better way to do it?
edit:
sorry, I should probably put the design in a more usable format:
powerOutput: 2051.6e
101 ; 010 ; 101
010 ; 111 ; 010
101 ; 010 ; 101
(in case you were wondering, the first design is what you get by interpreting the latter design as a binary number)
Last edited: