Skip to content

Instantly share code, notes, and snippets.

@downslope7
Created February 9, 2015 03:45
Show Gist options
  • Save downslope7/35ea68760437b858a8e1 to your computer and use it in GitHub Desktop.
Save downslope7/35ea68760437b858a8e1 to your computer and use it in GitHub Desktop.
Advanced Generators Config
cfg Modules {
cfg FuelTank {
Capacity = 16000 // MB
}
cfg PowerCapacitor {
Capacity = 500000 // MJ
}
cfg HeatExchanger {
HeatTransfer = 16 // HU/t
}
}
cfg ModSupport {
cfg BuildCraft {
ImportCombustionEngineFuels = True // Import BuldCraft Combustion Engine fuels
TurbineMinimumFuelValue = 50 // Blacklist fuels below this values, used to filter out low-tech stuff
}
}
cfg Machines {
cfg TurbineController {
Enabled = Y
MJPerTickPerTurbine = 10
FuelConsumptionMultiplier = 0.9
InternalPowerCapacity = 10000 // MJ
InternalFuelCapacity = 1000 // MB
// Modules required for machine to be operational
cfg Required {
Turbine = 1
}
// Modules that can be connected and a limit on their number
// Do not add/remove modules unless you really know what you're doing
// Changing the numbers should be OK
cfg Modules {
PowerOutput = 6
Turbine = 50
FluidInput = 5
FuelTank = 10
PowerCapacitor = 10
}
}
cfg SteamTurbineController {
Enabled = Y
MJPerTickPerTurbine = 8
SteamPerTickPerTurbine = 40
MaxRPM = 5000
EffectiveRPM = 4500
SpinUpMultiplier = 0.075
SpinDownMultiplier = 0.005
InternalPowerCapacity = 10000 // MJ
InternalSteamCapacity = 16000 // MB
cfg Required {
Turbine = 1
}
cfg Modules {
PowerOutput = 6
Turbine = 50
FluidInput = 5
PowerCapacitor = 10
}
}
cfg HeatExchangerController {
Enabled = Y
InternalTankCapacity = 16000
MaxHeat = 1000 // Should be > StartHeating + (max HeatTransfer), otherwise weirdness will ensue
StartHeating = 150
HeatDecay = 0.05
cfg Required {
HeatExchanger = 1
}
cfg Modules {
FluidInput = 5
FluidOutputSelect = 6
ItemOutput = 6
HeatExchanger = 50
}
}
}
cfg Power {
RF_MJ_Ratio = 10 // 10 RF = 1 MJ
EU_MJ_Ratio = 2.5 // 5 EU = 2 MJ
cfg EU {
Enabled = Y
}
cfg RF {
Enabled = Y
}
}
recipes {
// MJ per mB, not counting FuelConsumptionMultiplier
turbine-fuel: coal 100 MJ/mB // Thermal foundation, Liquifacted Coal
turbine-fuel: biofuel 80 MJ/mB
turbine-fuel: bioethanol 80 MJ/mB
turbine-fuel: rocket_fuel 112 MJ/mB // EnderIO stuff
turbine-fuel: fire_water 120 MJ/mB
// steam is 0.2 MJ/mB
// 1 HU = 1 MJ
// steam is 0.2 HU/mB = 5 mB/HU
// lava is 30 HU/mB
exchanger: fluid:lava 1 mB => B:obsidian 0.001 + 30 HU
exchanger: fluid:water 5 mB + 3 HU => fluid:steam 15 mB
if HaveMod IC2 {
// 1 (IC2) HU = 0.5-0.75 EU in IC2 - i buff this to ~1 EU
// 1 coolant mb = 20 (ic2) HU = 20 EU = 8 MJ
exchanger: fluid:ic2hotcoolant 1mB => fluid:ic2coolant 1mB + 8 HU
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment