Difference between revisions of "Gas turbine"

From Electrical Age
Jump to: navigation, search
(Gas Turbine)
 
(halfway save)
Line 1: Line 1:
{Block
+
{{Block
 
|blockname=Gas turbine
 
|blockname=Gas turbine
 
|requirements=None
 
|requirements=None
Line 10: Line 10:
  
 
== Accepted Fuels ==
 
== Accepted Fuels ==
 +
 +
== Gasoline-equivalents ==
 +
 +
Light oils, the type which can reasonably be burned by internal combustion engines or gas turbines.
 +
The ones on this list are all pretty close to each other in energy content.
 +
 +
* '''Syngas''' (Advanced Generators)
 +
* '''fuel''' (Buildcraft)
 +
* '''rc ethanol''' (Rotarycraft)
 +
 +
 +
        "syngas", // Advanced Generators
 +
        "fuel", // Buildcraft
 +
        "rc ethanol", // RotaryCraft
 +
        "biofuel", // Minefactory Reloaded
 +
        "bioethanol", // Forestry
 +
        "kerosene", // PneumaticCraft
 +
        "lpg", // PneumaticCraft
 +
        "fuelgc", // GalactiCraft
 +
        "lightoil"  // Magneticraft
 +
 +
 +
/**
 +
* Burnable gases. Gas turbine is still happy, fuel generator is not.
 +
*/
 +
val gasList = arrayOf(
 +
        "naturalgas"  // Magneticraft
 +
)
 +
 +
fun fluidListToFluids(fluidNames: Array<String>) =
 +
    fluidNames.map { FluidRegistry.getFluid(it) }.filterNotNull().toTypedArray()

Revision as of 01:45, 2 November 2016

Gas turbine
Block type: Single
Powered by: diverse liquid fuels
Requirements for operation: None
Stackable: Yes (64)



Accepted Fuels

Gasoline-equivalents

Light oils, the type which can reasonably be burned by internal combustion engines or gas turbines. The ones on this list are all pretty close to each other in energy content.

  • Syngas (Advanced Generators)
  • fuel (Buildcraft)
  • rc ethanol (Rotarycraft)


       "syngas", // Advanced Generators
       "fuel", // Buildcraft
       "rc ethanol", // RotaryCraft
       "biofuel", // Minefactory Reloaded
       "bioethanol", // Forestry
       "kerosene", // PneumaticCraft
       "lpg", // PneumaticCraft
       "fuelgc", // GalactiCraft
       "lightoil"  // Magneticraft


/**

* Burnable gases. Gas turbine is still happy, fuel generator is not.
*/

val gasList = arrayOf(

       "naturalgas"  // Magneticraft

)

fun fluidListToFluids(fluidNames: Array<String>) =

   fluidNames.map { FluidRegistry.getFluid(it) }.filterNotNull().toTypedArray()