|
@@ -89,8 +89,8 @@ namespace Venus_MainPages.ViewModels
|
|
|
|
|
|
private double m_HeGasSetpoint;
|
|
|
private int m_HePressureSetpoint;
|
|
|
-
|
|
|
-
|
|
|
+ private bool m_Valve12Visible;
|
|
|
+ private bool m_Valve11Visible;
|
|
|
private float m_SRFFwdPowerSetpoint;
|
|
|
private float m_BRFFwdPowerSetpoint;
|
|
|
|
|
@@ -271,6 +271,16 @@ namespace Venus_MainPages.ViewModels
|
|
|
get { return m_IsTurboPumpAtSpeed; }
|
|
|
set { SetProperty(ref m_IsTurboPumpAtSpeed, value); }
|
|
|
}
|
|
|
+ public bool Valve12Visible
|
|
|
+ {
|
|
|
+ get { return m_Valve12Visible; }
|
|
|
+ set { SetProperty(ref m_Valve12Visible, value); }
|
|
|
+ }
|
|
|
+ public bool Valve11Visible
|
|
|
+ {
|
|
|
+ get { return m_Valve11Visible; }
|
|
|
+ set { SetProperty(ref m_Valve11Visible, value); }
|
|
|
+ }
|
|
|
public bool TurboPumpWaterFlowSwitch
|
|
|
{
|
|
|
get { return m_TurboPumpWaterFlowSwitch; }
|
|
@@ -1653,7 +1663,8 @@ namespace Venus_MainPages.ViewModels
|
|
|
{
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
+ Valve12Visible = (bool)QueryDataClient.Instance.Service.GetConfig($"{ModuleName}.MfcGas12.Enable");
|
|
|
+ Valve11Visible = (bool)QueryDataClient.Instance.Service.GetConfig($"{ModuleName}.MfcGas11.Enable");
|
|
|
TurboN2FlowSetPoint = Convert.ToInt32(QueryDataClient.Instance.Service.GetConfig($"{ModuleName}.TurboN2FlowSetPoint"));
|
|
|
|
|
|
PVN21ValveIsOpen = CommonFunction.GetValue<bool>(RtDataValues, $"{ModuleName}.ValvePVN21.IsOpen");
|