소스 검색

1.应tps需求添加,VenusSE工艺结束,PM主界面信息保存
2.优化start job,不能修改recipe功能
3.添加右击log小标题,排除info log 功能

lixiang 1 년 전
부모
커밋
f03139a580

+ 5 - 5
Venus/Venus_MainPages/ViewModels/OverVenusSEViewModel.cs

@@ -1878,11 +1878,11 @@ namespace Venus_MainPages.ViewModels
                     currentRecipeNumber = CurrentRecipeResult.RecipeStepNumber;
 
                 }
-                else
-                {
-                    CurrentRecipeResult = null;
-                    CurrentRecipeStep = null;
-                }
+                //else
+                //{
+                //    CurrentRecipeResult = null;
+                //    CurrentRecipeStep = null;
+                //}
 
                 if (Math.Abs(100 - ProcessPressure) > 1 && ProcessPressure < 100)
                 {

+ 9 - 7
Venus/Venus_MainPages/ViewModels/RecipeViewModel.cs

@@ -15,6 +15,7 @@ using System.Linq;
 using System.Reflection;
 using System.Text;
 using System.Threading;
+using System.Threading.Tasks;
 using System.Windows;
 using System.Windows.Controls;
 using System.Windows.Data;
@@ -220,15 +221,15 @@ namespace Venus_MainPages.ViewModels
         }
         private void OnSaveRecipe()
         {
-           var PMCurrentState = (PMState)Enum.Parse(typeof(PMState), QueryDataClient.Instance.Service.GetData($"{ModuleName}.FsmState").ToString());
-           var SystemCurrentState = Convert.ToBoolean( QueryDataClient.Instance.Service.GetData($"System.IsAutoMode"));
+           //var PMCurrentState = (PMState)Enum.Parse(typeof(PMState), QueryDataClient.Instance.Service.GetData($"{ModuleName}.FsmState").ToString());
+           //var SystemCurrentState = Convert.ToBoolean( QueryDataClient.Instance.Service.GetData($"System.IsAutoMode"));
             //if (PMCurrentState == PMState.Clean || PMCurrentState == PMState.Processing)
             //{
             //    WPFMessageBox.ShowError($"{ModuleName} is Processing,can not edit recipe {CurrentRecipeName}");
             //    return;
             //}
             //QueryDataClient.Instance.Service.GetData($"Scheduler.InUsingRecipe");
-            
+
             var inUseRecipe= QueryDataClient.Instance.Service.GetData($"Scheduler.InUsingRecipe");
             if (inUseRecipe != null)
             {
@@ -238,8 +239,8 @@ namespace Venus_MainPages.ViewModels
                     return;
                 }
             }
-           
-           
+
+
             CurrentRecipe.Header.EditTime = DateTime.Now.ToString();
             //SaveRecipe(CurrentRecipeName, RecipeUnity.RecipeToString(CurrentRecipe));
             var newrecipePath = Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", ModuleName, typeFolder, CurrentRecipeName + ".rcp");
@@ -343,7 +344,7 @@ namespace Venus_MainPages.ViewModels
             }
 
         }
-        private void OnLoaded(Object myrecipeView)
+        private async void OnLoaded(Object myrecipeView)
         {
             isInstalledEPD = bool.Parse(QueryDataClient.Instance.Service.GetConfig($"{ModuleName}.EPD.IsEnabled").ToString());
 
@@ -362,7 +363,8 @@ namespace Venus_MainPages.ViewModels
                 for (int i = 0; i < 5; i++)
                 {
                     InvokeClient.Instance.Service.DoOperation($"{ModuleName}.EndPoint.SearchCfg");
-                    Thread.Sleep(200);
+                    //Thread.Sleep(200);
+                    await Task.Delay(200);
                     currentEPDType = (EPDType)System.Convert.ToInt32(QueryDataClient.Instance.Service.GetConfig($"{ModuleName}.EPD.EPDType"));
 
                     if (currentEPDType == EPDType.Socket)

+ 20 - 6
Venus/Venus_MainPages/ViewModels/TopViewModel.cs

@@ -67,7 +67,7 @@ namespace Venus_MainPages.ViewModels
         };
         //private PressureType m_PressureType;
         private ConfigType m_ConfigType;
-        private bool isExcludeInfoType;
+        private bool m_IsExcludeInfoType;
         #endregion
 
         #region  属性
@@ -185,6 +185,12 @@ namespace Venus_MainPages.ViewModels
             get { return _IsEnableDisable; }
             set { SetProperty(ref _IsEnableDisable, value); }
         }
+
+        public bool IsExcludeInfoType
+        {
+            get { return m_IsExcludeInfoType; }
+            set { SetProperty(ref m_IsExcludeInfoType, value); }
+        }
         public FACommunicationState FACommunicationState
         {
             get
@@ -277,6 +283,10 @@ namespace Venus_MainPages.ViewModels
         public DelegateCommand FAEnableCommand =>
                  _FAEnableCommand ?? (_FAEnableCommand = new DelegateCommand(FaEnable));
 
+        private DelegateCommand _ExcludeInfoCommand;
+        public DelegateCommand ExcludeInfoCommand =>
+                 _ExcludeInfoCommand ?? (_ExcludeInfoCommand = new DelegateCommand(OnExcludeInfo));
+        
         #endregion
 
         #region 构造函数
@@ -313,10 +323,10 @@ namespace Venus_MainPages.ViewModels
             //m_PressureType = (PressureType)Convert.ToInt32(obj);
             m_ConfigType = (ConfigType)Enum.Parse(typeof(ConfigType), QueryDataClient.Instance.Service.GetData("System.ConfigType").ToString());
             //var islog= QueryDataClient.Instance.Service.GetConfig("System.IsLogExcludeInfoType");
-            if (m_ConfigType==ConfigType.Kepler2200)
-            {
-                isExcludeInfoType= (bool)QueryDataClient.Instance.Service.GetConfig("System.IsLogExcludeInfoType"); 
-            }
+            //if (m_ConfigType==ConfigType.Kepler2200)
+            //{
+            //    isExcludeInfoType= (bool)QueryDataClient.Instance.Service.GetConfig("System.IsLogExcludeInfoType"); 
+            //}
         }
         #endregion
 
@@ -437,7 +447,7 @@ namespace Venus_MainPages.ViewModels
 
         private void Instance_OnEvent(EventItem eventItem)
         {
-            if (isExcludeInfoType && eventItem.Level == EventLevel.Information)
+            if (IsExcludeInfoType && eventItem.Level == EventLevel.Information)
             {
                 return;
             }
@@ -526,6 +536,10 @@ namespace Venus_MainPages.ViewModels
         {
             InvokeClient.Instance.Service.DoOperation($"FACommand", "FAEnable");
         }
+        public void OnExcludeInfo()
+        {
+            IsExcludeInfoType = !IsExcludeInfoType;
+        }
         #endregion
 
     }

+ 2 - 2
Venus/Venus_MainPages/Views/TMOperationView.xaml

@@ -419,8 +419,8 @@
             <userControls:TextboxWithLabel  Canvas.Left="848" Canvas.Top="719" LabelValue="{Binding PressureType, StringFormat=CM8({0})}" TextBoxValue="{Binding RtDataValues[TM.LLBForelineGauge.Value],StringFormat='F1',Converter={StaticResource mTorrToPaConverter}}" TextBoxColor="#E6ECF5"/>
 
 
-            <userControls:TextboxWithLabel  Canvas.Left="266" Canvas.Top="310" LabelValue="{Binding PressureType, StringFormat=Pressure({0})}" TextBoxValue="{Binding RtDataValues[TM.TMPressureCtrl.LLAChamberSetPoint]}" TextBoxColor="#E6ECF5"/>
-            <userControls:TextboxWithLabel  Canvas.Left="984" Canvas.Top="302" LabelValue="{Binding PressureType, StringFormat=Pressure({0})}" TextBoxValue="{Binding RtDataValues[TM.TMPressureCtrl.LLBChamberSetPoint]}" TextBoxColor="#E6ECF5"/>
+            <userControls:TextboxWithLabel  Canvas.Left="265" Canvas.Top="310" LabelValue="{Binding PressureType, StringFormat=Pressure({0})}" TextBoxValue="{Binding RtDataValues[TM.TMPressureCtrl.LLAChamberSetPoint]}" TextBoxColor="#E6ECF5"/>
+            <userControls:TextboxWithLabel  Canvas.Left="976" Canvas.Top="302" LabelValue="{Binding PressureType, StringFormat=Pressure({0})}" TextBoxValue="{Binding RtDataValues[TM.TMPressureCtrl.LLBChamberSetPoint]}" TextBoxColor="#E6ECF5"/>
 
 
         </Canvas>

+ 8 - 1
Venus/Venus_MainPages/Views/TopView.xaml

@@ -67,7 +67,14 @@
   
             
             <StackPanel Orientation="Horizontal" Grid.Column="0"  Grid.Row="2" Grid.ColumnSpan="5">
-                <Label Content="Log" Style="{StaticResource TopLable_LeftTop}"  Width="92"  BorderThickness="1"   HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Height="32.5" FontWeight="Bold" FontSize="18" BorderBrush="Silver" />
+                <Label Content="Log" Style="{StaticResource TopLable_LeftTop}"  Width="92"  BorderThickness="1"   HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Height="32.5" FontWeight="Bold" FontSize="18" BorderBrush="Silver" Cursor="Hand">
+                    <Label.ContextMenu>
+                        <ContextMenu Visibility="{Binding IsNeedContextMenu,Converter={StaticResource bool2VisibilityConverter}}">
+                            <MenuItem Header="Exclude Info Log"     IsChecked="{Binding IsExcludeInfoType}"  IsEnabled="{Binding IsExcludeInfoType,Converter={StaticResource BoolToBool}}" Command="{Binding ExcludeInfoCommand}"/>
+                            <MenuItem Header="Include Info Log"     IsChecked="{Binding IsExcludeInfoType,Converter={StaticResource BoolToBool}}"  IsEnabled="{Binding IsExcludeInfoType}" Command="{Binding ExcludeInfoCommand}"/>
+                        </ContextMenu>
+                    </Label.ContextMenu>
+                </Label>
                 <ComboBox  Width="1138" Canvas.Left="620" Canvas.Top="74.2" Height="32" 
                                        ItemsSource="{Binding EventLogList}"   
                                        SelectedIndex="{Binding EventLogListSelectedIndex}"

+ 1 - 1
Venus/Venus_RT/App.config

@@ -32,7 +32,7 @@
 	<connectionStrings>
 		<add name="PostgreSQL"   connectionString="Server=localhost;Port=5432;User Id=postgres;Password=123456;Database=postgres;Enlist=true;Preload Reader=true;" />
 		<!--0是other,1是kepler2300,2是Kepler2200,3是VenusSE,4是VenusDE-->
-		<add name="ConfigType"   connectionString="3"/>
+		<add name="ConfigType"   connectionString="2"/>
 	</connectionStrings>
 	<system.serviceModel>
 		<!--<diagnostics>

+ 0 - 1
Venus/Venus_RT/Config/System.sccfg

@@ -22,7 +22,6 @@
 		<config default="10"  name="CheckResourceInterval" nameView="CheckResourceInterval" description="进程资源监视间隔,单位为分钟,0为不监视" max="60" min="0" paramter="" tag="" unit="min" type="Integer"/>
 		<config default="1000"  name="DataCollectionInterval" nameView="DataCollectionInterval" description="插入数据时间间隔" max="2000" min="200" paramter="" tag="" unit="ms" type="Integer"/>
 		<config default="false" name="IsEnableEthercat" nameView="Is Enable Ethercat" description="是否开启凌华Ethercat" max="" min="" paramter="" tag="" unit="" type="Bool" visible="false"/>
-		<config default="false" name="IsLogExcludeInfoType" nameView="Log Exclude Info Type" description="TopView Log排除info类型信息" max="" min="" paramter="" tag="" unit="" type="Bool" />
 		<config default="Kepler" name="Name" nameView="Name" description="Name" tag="" unit="" type="String" />
 		<config default="0" name="LoadlockSlotInOutOption"  nameView="Loadlock Slot In Out Option" description="0, All slots in All slot Out; 1, Upper slots in lower slots out; 2, Lower slots in Upper slot out " max="2" min="0" paramter="" tag="" unit="" type="Integer"/>
 		<configs name="SetUp" nameView="Set Up" visible="false">

+ 1 - 2
Venus/Venus_RT/Config/System_Kepler2200.sccfg

@@ -21,8 +21,7 @@
 		<config default="True" name="IsIgnoreSaveDB" nameView="IsIgnoreSaveDB" description="IO实时数据是否保存数据库,2023/09/02暂时加参数设计" max="" min="" paramter="" tag="" unit="" type="Bool" visible="false"/>
 		<config default="false" name="IsEnableEthercat" nameView="Is Enable Ethercat" description="是否开启凌华Ethercat" max="" min="" paramter="" tag="" unit="" type="Bool" visible="false"/>
 		<config default="10"  name="CheckResourceInterval" nameView="CheckResourceInterval" description="进程资源监视间隔,单位为分钟,0为不监视" max="60" min="0" paramter="" tag="" unit="min" type="Integer"/>
-		<config default="1000"  name="DataCollectionInterval" nameView="DataCollectionInterval" description="插入数据时间间隔" max="2000" min="200" paramter="" tag="" unit="ms" type="Integer"/>
-		<config default="false" name="IsLogExcludeInfoType" nameView="Log Exclude Info Type" description="TopView Log排除info类型信息" max="" min="" paramter="" tag="" unit="" type="Bool" />
+		<config default="1000"  name="DataCollectionInterval" nameView="DataCollectionInterval" description="插入数据时间间隔" max="2000" min="200" paramter="" tag="" unit="ms" type="Integer"/>	
 		<config default="Kepler" name="Name" nameView="Name" description="Name" tag="" unit="" type="String" />
 		<config default="0" name="LoadlockSlotInOutOption"  nameView="Loadlock Slot In Out Option" description="0, All slots in All slot Out; 1, Upper slots in lower slots out; 2, Lower slots in Upper slot out " max="2" min="0" paramter="" tag="" unit="" type="Integer"/>
 		

+ 0 - 1
Venus/Venus_RT/Config/System_Kepler2300.sccfg

@@ -22,7 +22,6 @@
 		<config default="10"  name="CheckResourceInterval" nameView="CheckResourceInterval" description="进程资源监视间隔,单位为分钟,0为不监视" max="60" min="0" paramter="" tag="" unit="min" type="Integer"/>
 		<config default="1000"  name="DataCollectionInterval" nameView="DataCollectionInterval" description="插入数据时间间隔" max="2000" min="200" paramter="" tag="" unit="ms" type="Integer"/>
 		<config default="false" name="IsEnableEthercat" nameView="Is Enable Ethercat" description="是否开启凌华Ethercat" max="" min="" paramter="" tag="" unit="" type="Bool" visible="false"/>
-		<config default="false" name="IsLogExcludeInfoType" nameView="Log Exclude Info Type" description="TopView Log排除info类型信息" max="" min="" paramter="" tag="" unit="" type="Bool" />
 		<config default="Kepler" name="Name" nameView="Name" description="Name" tag="" unit="" type="String" />
 		<config default="0" name="LoadlockSlotInOutOption"  nameView="Loadlock Slot In Out Option" description="0, All slots in All slots Out; 1, Upper slots in lower slots out; 2, Lower slots in Upper slot out " max="2" min="0" paramter="" tag="" unit="" type="Integer"/>
 		<configs name="SetUp" nameView="Set Up" visible="false">

+ 0 - 1
Venus/Venus_RT/Config/System_VenusDE.sccfg

@@ -22,7 +22,6 @@
 		<config default="10"  name="CheckResourceInterval" nameView="CheckResourceInterval" description="进程资源监视间隔,单位为分钟,0为不监视" max="60" min="0" paramter="" tag="" unit="min" type="Integer"/>
 		<config default="1000"  name="DataCollectionInterval" nameView="DataCollectionInterval" description="插入数据时间间隔" max="2000" min="200" paramter="" tag="" unit="ms" type="Integer"/>
 		<config default="false" name="IsEnableEthercat" nameView="Is Enable Ethercat" description="是否开启凌华Ethercat" max="" min="" paramter="" tag="" unit="" type="Bool" visible="false"/>
-		<config default="false" name="IsLogExcludeInfoType" nameView="Log Exclude Info Type" description="TopView Log排除info类型信息" max="" min="" paramter="" tag="" unit="" type="Bool" />
 		<configs name="SetUp" nameView="Set Up" visible="false">
 			<config default="true" name="EPDInstalled" nameView="Is EPD installed" description="EPD是否安装" max="" min="" paramter="" tag="" unit="" type="Bool" />
 		</configs>

+ 1 - 2
Venus/Venus_RT/Config/System_VenusSE.sccfg

@@ -21,8 +21,7 @@
     <config default="True" name="IsIgnoreSaveDB" nameView="IsIgnoreSaveDB" description="IO实时数据是否保存数据库,2023/09/02暂时加参数设计" max="" min="" paramter="" tag="" unit="" type="Bool" visible="false"/>
     <config default="10"  name="CheckResourceInterval" nameView="CheckResourceInterval" description="进程资源监视间隔,单位为分钟,0为不监视" max="60" min="0" paramter="" tag="" unit="min" type="Integer"/>
     <config default="1000"  name="DataCollectionInterval" nameView="DataCollectionInterval" description="插入数据时间间隔" max="2000" min="200" paramter="" tag="" unit="ms" type="Integer"/>
-    <config default="false" name="IsEnableEthercat" nameView="Is Enable Ethercat" description="是否开启凌华Ethercat" max="" min="" paramter="" tag="" unit="" type="Bool" visible="false"/>
-	<config default="false" name="IsLogExcludeInfoType" nameView="Log Exclude Info Type" description="TopView Log排除info类型信息" max="" min="" paramter="" tag="" unit="" type="Bool" />
+    <config default="false" name="IsEnableEthercat" nameView="Is Enable Ethercat" description="是否开启凌华Ethercat" max="" min="" paramter="" tag="" unit="" type="Bool" visible="false"/>	
 	<config default="VenusSE" name="Name" nameView="Name" description="Name" tag="" unit="" type="String" />
 
 	<configs name="SetUp" nameView="Set Up" visible="false">

+ 1 - 1
Venus/Venus_RT/Devices/IODevices/IoHighTemperatureHeater.cs

@@ -167,7 +167,7 @@ namespace Venus_RT.Devices.IODevices
                 }
                 else
                 {
-                    LOG.Write(eEvent.WARN_DEVICE_INFO, Module, $"高温Heater设定温度失败,由于设定温度{value}不在区间[{_minTemperatureSetPoint},{_maxTemperatureSetPoint}]");
+                    LOG.Write(eEvent.ERR_DEVICE_INFO, Module, $"高温Heater设定温度失败,由于设定温度{value}不在区间[{_minTemperatureSetPoint},{_maxTemperatureSetPoint}]");
                 }
                
             }

+ 1 - 0
Venus/Venus_RT/Devices/JetKepler2200BPM.cs

@@ -831,6 +831,7 @@ namespace Venus_RT.Devices
         }
         public override bool SetRFBoxC1Position(float c1)
         {
+            if (_RFBox == null) return false;
             _RFBox.SetMatchPositionC1(c1, out _);
             return true;
         }

+ 0 - 1
Venus/Venus_RT/Devices/RevtechMatch.cs

@@ -231,7 +231,6 @@ namespace Venus_RT.Devices
             {
 
             }
-
         }
         private void RevtechMatch_sendDataChangedEvent(string obj)
         {

+ 9 - 2
Venus/Venus_RT/Modules/PMs/ProcessDefine.cs

@@ -889,8 +889,15 @@ namespace Venus_RT.Modules.PMs
         private RState RFBoxUnit_Start(ProcessUnitBase unit, RecipeStep step)
         {
             var ProcessUnit = unit as RFBoxUnit;
-            Chamber.SetRFBoxC1Position(ProcessUnit.C1);
-            return RState.Running;
+            if (Chamber.SetRFBoxC1Position(ProcessUnit.C1))
+            {
+                return RState.Running;
+            }
+            else
+            {
+                LOG.Write(eEvent.ERR_PROCESS, Chamber.Module, $"Step:{step.StepNo} failed duo to RFBox Write C1 failed ");
+                return RState.Failed;
+            }
         }
 
         private RState RFBoxUnit_Check(ProcessUnitBase unit, RecipeStep step)

+ 51 - 3
Venus/Venus_RT/Modules/SystemDispatcher.cs

@@ -747,7 +747,7 @@ namespace Venus_RT.Modules
         private RState _cycleState = RState.Init;
         public RState CycleState => _cycleState;
         private Dictionary<string, ControlJobInfo> _loadportControlJobDic = new Dictionary<string, ControlJobInfo>();
-
+        public List<string> InUseRecipes = new List<string>();
         #region public interface
         public SystemDispatcher()
         {
@@ -770,7 +770,7 @@ namespace Venus_RT.Modules
 
             DATA.Subscribe("Scheduler.PjIdList", () => Array.ConvertAll(_lstProcessJobs.ToArray(), x => x.InnerId.ToString()).ToList());
             DATA.Subscribe("Scheduler.PjNameList", () => Array.ConvertAll(_lstProcessJobs.ToArray(), x => x.LotName.ToString()).ToList());
-
+            DATA.Subscribe("Scheduler.InUsingRecipe", () => InUseRecipes);
             for (int i = 1; i <= 3; i++)
             {
                 _loadportControlJobDic[$"LP{i}"] = null;
@@ -1017,7 +1017,7 @@ namespace Venus_RT.Modules
                 if (cj.State == EnumControlJobState.Executing || cj.State == EnumControlJobState.Paused)
                     return false;
             }
-
+            InUseRecipes.Clear();
             return true;
         }
 
@@ -1189,6 +1189,7 @@ namespace Venus_RT.Modules
                     {
                         return false;
                     }
+                    GetAllJobRecipe(cj, item.Sequence);
                 }
             }
 
@@ -1246,6 +1247,7 @@ namespace Venus_RT.Modules
             _curEfemAction.Clear();
             _lstControlJobs.Clear();
             _lstProcessJobs.Clear();
+            InUseRecipes.Clear();
             _cycleState = RState.End;
         }
 
@@ -4283,6 +4285,52 @@ namespace Venus_RT.Modules
                 _LLInOutPath = SequenceLLInOutPath.DInDOut;
         }
 
+        private bool GetAllJobRecipe(ControlJobInfo cj,SequenceInfo seq)
+        {
+            for (int i = 0; i < seq.Steps.Count; i++)
+            {
+                SequenceStepInfo stepInfo = seq.Steps[i];
+                foreach (var module in stepInfo.StepModules)
+                {
+                    if (ModuleHelper.IsPm(module))
+                    {
+                        string attr = $"{module}Recipe";
+                        if (stepInfo.StepParameter.ContainsKey(attr)
+                            && !string.IsNullOrWhiteSpace((string)stepInfo.StepParameter[attr]))
+                        {
+                            var recipeName = (string)stepInfo.StepParameter[attr];
+                            var recipeContent =
+                                    RecipeFileManager.Instance.LoadRecipe($"{module}", recipeName, false, "Process");
+                            var recipe = Recipe.Load(recipeContent);
+                            if (recipe.Header.ChuckRecipe != null && recipe.Header.ChuckRecipe != "")
+                            {
+                                InUseRecipes.Add($"{module}.ChuckRecipe.{recipe.Header.ChuckRecipe}");
+                            }
+                            if (recipe.Header.DechuckRecipe != null && recipe.Header.DechuckRecipe != "")
+                            {
+                                InUseRecipes.Add($"{module}.DechuckRecipe.{recipe.Header.DechuckRecipe}");
+                            }
+                            InUseRecipes.Add($"{module}.Process.{recipeName}");
+                            if (cj.PreJobClean != "")
+                            {
+                                InUseRecipes.Add($"{module}.Clean.{cj.PreJobClean}");
+                            }
+                            if (cj.PostJobClean != "")
+                            { 
+                                InUseRecipes.Add($"{module}.Clean.{cj.PostJobClean}");
+                            }
+                            if (stepInfo.StepParameter["WTWClean"].ToString() != "")
+                            {
+                                InUseRecipes.Add($"{module}.Clean.{stepInfo.StepParameter["WTWClean"]}");
+                            }
+                        }
+                    }
+
+                }
+            }
+            return true;
+        }
+
         #endregion
     }
 }

+ 2 - 1
Venus/Venus_Simulator/Config/UILayout.xml

@@ -38,7 +38,8 @@
   <Navigation Id="PMB" Name="PMB" >
 
 	  <SubView Id="io2" Name="IO-PMB" ViewClass="Venus_Simulator.Views.SimulatorIo2View" Assembly="Venus_Simulator"/>
- 
+	  <SubView Id="RevtechMatchPMB" Name="RevtechMatchPMB" ViewClass="Venus_Simulator.Views.SimuRevtechMatchPMBView" Assembly="Venus_Simulator"/>
+
 	  <SubView Id="SkyPumpPMB" Name="SkyPumpPMB" ViewClass="Venus_Simulator.Views.SimuSkyPumpPMBView" Assembly="Venus_Simulator" />
 	  <SubView Id="EdwardsPumpPMB" Name="EdwardsPumpPMB" ViewClass="Venus_Simulator.Views.SimuEdwardsPumpPMBView" Assembly="Venus_Simulator" />
 	  <SubView Id="AdTecRFGPMB" Name="AdTecRFGPMB" ViewClass="Venus_Simulator.Views.SimuAdTecGeneratorPMBView" Assembly="Venus_Simulator" />