Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
https://steamcommunity.com/profiles/76561198006607117/screenshot/2097047447299482123/
Some say adding more pipe pieces on each side of the air lock will allow more volume in the tube to assist with filling up the airlock.
Cows are Evil on Youtube has some good videos that use IC codes.
https://www.youtube.com/watch?v=XDcEyI4F2qY&t=9s
On the flip side, if there isn't enough pressure in the pipes to pressurize the airlock to the set level it will just hang there. The kicker is there is a tendency to over pressurize slightly - especially when the external is low, like 2kpa on Mars - so you end up slowly losing pressure, and have to charge the pipes by skipping some pressurize cycles. I've solved that on some custom airlock designs by adding a vent to maintain a certain pressure in the pipes, but it happens slowly enough that it isn't a big deal in a small airlock.
The default airlock design is soooooo painfully slow, making it faster was the first thing I did once I figured out which way was up. The issue is the default airlock boards only allow for one external vent and one internal vent, but there are a couple of ways you can add more:
1) Use a combination of logic readers and batch writers, one pair for power and one for mode. This requires some fancy wiring that will spill out, and you'll have at least one cable dangling out to connect everything. You need to connect the input side of the reader to the actual airlock vent, and the output side to a batch writer. The batch writer must be on it's own circuit with the mirror vents. To do this for dual direction requires 2 such circuits. It gets a bit messy, but it works, and I can tell you that 6 powered vents instead of one are soo much better.
2) The easier way is the use an IC housing and chip. You can connect everything to the same circuit, so it doesn't have any of the same logistical concerns. Basically, use the labeler to mark one vent as "Int", one as "Ext", and however many more you want as "IntMir" or whatever twists your nipples. The script is pretty simple, you just have to use the batch name commands to get the power and the mode from the "Int" vent and write that out to all the "IntMir" vents.
Might look something like this:
define pvent <add the hash here, it's available from the F1 menu>
define intVent HASH("Int") # or whatever name you used
define intMir HASH("IntMir") # or whatever
# define your externals here
alias res r10
Main:
lbn res pvent intVent On 0 # this loads the on setting into res
sbn pvent intMir On res # this writes the on setting to the mirror vents
# Add more for the Mode, and then another set for external vents
End:
yield
j Main