Combustion Centrifuge
From Unofficial Stationeers Wiki
Revision as of 11:05, 22 November 2023 by 91.90.242.138 (talk) (Added warning, i blown up my centrifuge, did it several times, and wrote info about it.)
Recipe | |
---|---|
Created With | Autolathe (Tier 2) |
Cost | 20g Steel, 10g Invar, 5g Constantan |
Operation | |
---|---|
Power Usage | 50W |
Construction | |
Placed with | Kit (Combustion Centrifuge) |
Placed on | Small Grid |
Stage 1 | |
Deconstruction | |
Deconstructed with | Hand Drill |
Item received | Kit (Combustion Centrifuge) |
Stage 2 | |
Next Stage Construction | |
Constructed with tool | Welder |
Constructed with item | 2x Steel Sheets |
Deconstruction | |
Deconstructed with | Angle Grinder |
Item received | 2x Steel Sheets |
Stage 3 | |
Next Stage Construction | |
Constructed with item | 1x Cable Coil |
Deconstruction | |
Deconstructed with | Wire Cutters |
Item received | 1x Cable Coil |
Contents
Description
The combustion centrifuge is a gas powered version of the Centrifuge. A combustible fuel mix should be supplied to the gas input, and waste gasses should be vented from the output. The machine's RPM's must be controlled via the throttle and combustion limiter levers. If the Combustion Centrifuge gains, or looses, RPMs too fast it will experience stress, and eventually grind to a halt. Higher RPMs directly result in faster processing speeds.
The throttle lever controls the amount of fuel being pulled into the machine, increasing the temperature inside the engine, and leading to an increase in RPM. The limiter lever influences the speed of combustion, and how much uncombusted gas is in the exhaust.
Ejecting ore from the Combustion Centrifuge while it is at high RPMs will result in additional stress build up. If turned off, while not stressed, the machine will automatically start to brake, and reduce RPMs in a controlled manner.
The Combustion Centrifuge has a socket for an IC10 chip, similar to the Atmospherics machine. It comes with two device ports, d0 and d1, for connecting to other devices. To change or set a device, use a screwdriver to cycle through devices found on the machine's data network.
Important
Can be boosted by Nitrous Oxide and changing fuel mixture, but it's dangerous due to centrifuge blows up at around 20MPa(20000 pressure)
Throttle
Every tick up to 0.01 moles of gas will be pulled in to the machine from the input pipe network. The Throttle parameter linearly controls how much gas to pull in, inputMoles = 0.01*Throttle/100
. The Throttle value is rounded to the nearest multiple of 10 when set over the Data Network.
Combustion Limiter
On each tick the Combustion Centrifuge will manually combust up to 75% of the fuel mixture in its internal atmosphere. This happens on the remaining fuel after natural combustion takes place as described in Volatiles. The portion of fuel manually combusted each tick is clamp((Limiter/10)^2 * 0.0075, 0.001, 1)
. The Combustion Limiter value is rounded to the nearest multiple of 10 when set over the Data Network.
Data Network Properties
These are all Data Network properties of this device.
Data Parameters
These are all parameters that can be written with a Logic Writer, Batch Writer, or Integrated Circuit (IC10).
Parameter Name | Data Type | Description |
---|---|---|
Open | Boolean | 1 if device is open, otherwise 0 |
Lock | Boolean | 1 if device is locked, otherwise 0, can be set in most devices and prevents the user from access the values |
On | Boolean | The current state of the device, 0 for off, 1 for on |
ClearMemory | Boolean | When set to 1, clears the current counter memory (ex. ExportCount). Will set itself back to 0 when actioned |
CombustionLimiter | Integer | Retards the rate of combustion inside the machine (range: 0-100) , with 0 being the slowest rate of combustion and 100 being the fastest |
Throttle | Integer | Increases the rate at which the machine works (range: 0-100) |
Data Outputs
These are all parameters, that can be read with a Logic Reader or a Slot Reader. The outputs are listed in the order a Logic Reader's "VAR" setting cycles through them.
Output Name | Data Type | Description |
---|---|---|
Power | Boolean | Returns whether the Centrifuge is turned on and receiving power. (0 for no, 1 for yes) |
Error | Boolean | 1 if device is in error state, otherwise 0 |
Pressure | Integer | The current pressure reading of the device |
Temperature | Integer | The current temperature reading of the device |
RatioOxygen | Float | The ratio of oxygen in device atmosphere |
RatioCarbonDioxide | Float | The ratio of Carbine Dioxide in device atmosphere |
RatioNitrogen | Float | The ratio of nitrogen in device atmosphere |
RatioPollutant | Float | The ratio of pollutant in device atmosphere |
RatioVolatiles | Float | The ratio of volatiles in device atmosphere |
RatioWater | Float | The ratio of water in device atmosphere |
RatioOxygen | Float | The ratio of oxygen in device atmosphere |
RequiredPower | Float | Idle operating power quantity, does not necessarily include extra demand power |
ExportCount | Integer | How many items exported since last ClearMemory |
ImportCount | Integer | How many items imported since last ClearMemory |
TotalMoles | Float | Returns the total moles of the device |
RatioNitrousOxide | Float | The ratio of Nitrous Oxide in device atmosphere |
PrefabHash | Integer | The hash of the structure |
Combustion | Boolean | The assess the atmosphere is on fire. Returns 1 if atmosphere is on fire, 0 if not. |
PressureInput | Integer | The current pressure reading of the device's Input Network |
TemperatureInput | Integer | The current temperature reading of the device's Input Network |
RatioOxygenInput | Float | The ratio of oxygen in device's Input Network |
RatioCarbonDioxideInput | Float | The ratio of Carbon Dioxide in device's Input Network |
RatioNitrogenInput | Float | The ratio of nitrogen in device's Input Network |
RatioPollutantInput | Float | The ratio of pollutant in device's Input Network |
RatioVolatilesInput | Float | The ratio of volatiles in device's Input Network |
RatioWaterInput | Float | The ratio of water in device's Input Network |
RatioNitrousOxideInput | Float | The ratio of Nitrous Oxide in device's Input Network |
TotalMolesInput | Float | Returns the total moles of the device's Input Network |
PressureOutput | Integer | The current pressure reading of the device's Output Network |
RatioOxygenOutput | Float | The ratio of oxygen in device's Output Network |
RatioCarbonDioxideOutput | Float | The ratio of Carbon Dioxide in device's Output Network |
RatioNitrogenOutput | Float | The ratio of nitrogen in device's Output Network |
RatioPollutantOutput | Float | The ratio of pollutant in device's Output Network |
RatioVolatilesOutput | Float | The ratio of volatiles in device's Output Network |
RatioWaterOutput | Float | The ratio of water in device's Output Network |
RatioNitrousOxideOutput | Float | The ratio of Nitrous Oxide in device's Output Network |
TotalMolesOutput | Float | Returns the total moles of the device's Output Network |
CombustionInput | Boolean | The assess the atmosphere is on fire. Returns 1 if device's input network is on fire, 0 if not. |
CombustionOutput | Boolean | The assess the atmosphere is on fire. Returns 1 if device's output network is on fire, 0 if not. |
TemperatureOutput | Integer | The current temperature reading of the device's Output Network |
Rpm | Float | The number of revolutions per minute that the device's spinning mechanism is doing |
Stress | Float | Machines get stressed when working hard. When stress reaches 100 the machine will automatically shut down |
Slot Name | Type | Index |
---|---|---|
Import | None | 0 |
Export | None | 1 |
Programmable Chip | Programmable Chip | 2 |
Connection Name | Index |
---|---|
Chute Input | 0 |
Chute Output | 1 |
Data | 2 |
Power | 3 |
Pipe Input | 4 |
Pipe Input | 5 |