Skip to content

Commit

Permalink
Fix TACLS/ECLSS to not fill by default for SMs, Fuselage
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanKell committed Jul 3, 2014
1 parent 495a193 commit 29abbf8
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 6 deletions.
22 changes: 22 additions & 0 deletions RealFuels/ECLSS_RF.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,28 @@ TANK_DEFINITION:NEEDS[LifeSupport]
}
}
@TANK_DEFINITION[ServiceModule]:NEEDS[LifeSupport]
{
TANK
{
name = Oxygen
utilization = 200 // 200atm
mass = 0.0003 // 0.3kg/l
amount = 0.0
maxAmount = 0.0
note = (pressurized)
}
TANK
{
name = CO2
utilization = 200 // 200atm
mass = 0.0003 // 0.3kg/l
amount = 0.0
maxAmount = 0.0
fillable = false
note = (pressurized)
}
}
@TANK_DEFINITION[Fuselage]:NEEDS[LifeSupport]
{
TANK
{
Expand Down
64 changes: 58 additions & 6 deletions RealFuels/TACLS_RF.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -121,23 +121,75 @@ TANK_DEFINITION:NEEDS[TACLifeSupport]
name = Oxygen
utilization = 200 // 200atm
mass = 0.0003 // 0.3kg/l
amount = full
maxAmount = 18.5%
amount = 0.0
maxAmount = 0.0
note = (pressurized)
}
TANK
{
name = Food
mass = 0.0001
amount = full
maxAmount = 20.1%
amount = 0.0
maxAmount = 0.0
}
TANK
{
name = Water
mass = 0.0001
amount = full
maxAmount = 11.4%
amount = 0.0
maxAmount = 0.0
}
TANK
{
name = CarbonDioxide
utilization = 200 // 200atm
mass = 0.0003 // 0.3kg/l
amount = 0.0
maxAmount = 0.0
fillable = false
note = (pressurized)
}
TANK
{
name = Waste
mass = 0.0001
amount = 0.0
maxAmount = 0.0
fillable = false
}
TANK
{
name = WasteWater
mass = 0.0001
amount = 0.0
maxAmount = 0.0
fillable = false
}
}
@TANK_DEFINITION[Fuselage]:NEEDS[TACLifeSupport]
{
TANK
{
name = Oxygen
utilization = 200 // 200atm
mass = 0.0003 // 0.3kg/l
amount = 0.0
maxAmount = 0.0
note = (pressurized)
}
TANK
{
name = Food
mass = 0.0001
amount = 0.0
maxAmount = 0.0
}
TANK
{
name = Water
mass = 0.0001
amount = 0.0
maxAmount = 0.0
}
TANK
{
Expand Down

0 comments on commit 29abbf8

Please sign in to comment.