Browse Source

Let PVN22 open before PumpDown start in SE&DE.

zhouhr 11 months ago
parent
commit
28a7e74cc0
1 changed files with 3 additions and 2 deletions
  1. 3 2
      Venus/Venus_RT/Modules/PMs/PumpDownRoutine.cs

+ 3 - 2
Venus/Venus_RT/Modules/PMs/PumpDownRoutine.cs

@@ -58,8 +58,9 @@ namespace Venus_RT.Modules.PMs
                 _roughPumpPressure = SC.GetValue<int>($"{Module}.Pump.PumpCrossingPressure");
                 _pump_delay = SC.GetValue<int>($"{Module}.Pump.PumpValveDelay") * 1000;
                 _basePressure = (objs.Length >= 1) ? Convert.ToInt32(objs[0]) : SC.GetValue<int>($"{Module}.Pump.PumpBasePressure");
-
-                _chamber.OpenValve(ValveType.PVN22, true);
+                
+                if(jetChamber != JetChamber.VenusSE && jetChamber != JetChamber.VenusDE)
+                    _chamber.OpenValve(ValveType.PVN22, true);
                 _chamber.OpenValve(ValveType.TurboPumpPumping, true);
                 _chamber.TurnPendulumValve(false);