Kaynağa Gözat

添加Start job 前check kepler2200 高温Heater温度

lixiang 1 yıl önce
ebeveyn
işleme
8b6a73425d

+ 1 - 1
Venus/Venus_MainPages/ViewModels/OverKepler2200BViewModel.cs

@@ -139,7 +139,7 @@ namespace Venus_MainPages.ViewModels
 
 
         private bool m_IsAutoMode;
-        private string m_SelectedRecipe;
+        //private string m_SelectedRecipe;
 
         //private float m_ChillerTempSetpoint;
         //private float m_WallTempSetpoint;

+ 16 - 12
Venus/Venus_MainPages/ViewModels/OverKepler2300ViewModel.cs

@@ -1059,9 +1059,9 @@ namespace Venus_MainPages.ViewModels
         //public DelegateCommand HVCommand =>
         //    _HVCommand ?? (_HVCommand = new DelegateCommand(OnHV));
 
-        private DelegateCommand _HVSetCommand;
-        public DelegateCommand HVSetCommand =>
-            _HVSetCommand ?? (_HVSetCommand = new DelegateCommand(OnHVSet));
+        //private DelegateCommand _HVSetCommand;
+        //public DelegateCommand HVSetCommand =>
+        //    _HVSetCommand ?? (_HVSetCommand = new DelegateCommand(OnHVSet));
 
 
         private DelegateCommand _LoadRecipeCommand;
@@ -1382,11 +1382,11 @@ namespace Venus_MainPages.ViewModels
             CurrentModuleRecipes = GetFilesNames(Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", ModuleName, recipeType)).ToList();
         }
 
-        private void OnHVSet()
-        {
-            InvokeClient.Instance.Service.DoOperation($"{ModuleName}.SetESCHV", ESCVoltage);
+        //private void OnHVSet()
+        //{
+        //    InvokeClient.Instance.Service.DoOperation($"{ModuleName}.SetESCHV", ESCVoltage);
 
-        }
+        //}
 
         private void OnSwitchType()
         {
@@ -1482,14 +1482,18 @@ namespace Venus_MainPages.ViewModels
 
         private void OnEndStep()
         {
-            if (CurrentRecipeResult?.RecipeStepNumber != null && CurrentRecipeResult?.RecipeStepNumber != CurrentRecipeResult?.RecipeStepCount)
+            //if (CurrentRecipeResult?.RecipeStepNumber != null && CurrentRecipeResult?.RecipeStepNumber != CurrentRecipeResult?.RecipeStepCount)
+            //{
+            //    InvokeClient.Instance.Service.DoOperation($"{ModuleName}.ManualEndStep");
+            //}
+            //else if (CurrentRecipeResult?.RecipeStepNumber != null && CurrentRecipeResult?.RecipeStepNumber == CurrentRecipeResult?.RecipeStepCount)
+            //{
+            //    InvokeClient.Instance.Service.DoOperation($"{ModuleName}.Abort");
+            //}
+            if (CurrentRecipeResult?.RecipeStepNumber != null)
             {
                 InvokeClient.Instance.Service.DoOperation($"{ModuleName}.ManualEndStep");
             }
-            else if (CurrentRecipeResult?.RecipeStepNumber != null && CurrentRecipeResult?.RecipeStepNumber == CurrentRecipeResult?.RecipeStepCount)
-            {
-                InvokeClient.Instance.Service.DoOperation($"{ModuleName}.Abort");
-            }
         }
         private void OnOnline()
         {

+ 2 - 2
Venus/Venus_MainPages/ViewModels/PartialPressureViewModel.cs

@@ -33,7 +33,7 @@ namespace Venus_MainPages.ViewModels
         DispatcherTimer timer = new DispatcherTimer();
         private int m_GasTime;
         private string m_GasName;
-        private PartialPressureResult m_partialPressureResult;
+        //private PartialPressureResult m_partialPressureResult;
         string value;
         int maxScale;
         ObservableCollection<string> m_ReferenceFlow = new ObservableCollection<string>();
@@ -190,7 +190,7 @@ namespace Venus_MainPages.ViewModels
 
         private void OnSave()
         {
-            SerializeHelper.Instance.WriteToJsonFile<PartialPressureResult>(m_partialPressureResult, $"PartialPressureResult/{m_partialPressureResult.GasName}/{DateTime.Now.ToString("yyyyMMddHHmm")}.json");
+            //SerializeHelper.Instance.WriteToJsonFile<PartialPressureResult>(m_partialPressureResult, $"PartialPressureResult/{m_partialPressureResult.GasName}/{DateTime.Now.ToString("yyyyMMddHHmm")}.json");
         }
         private void OnLoadReference()
         {

+ 3 - 3
Venus/Venus_MainPages/Views/OverKepler2200BView.xaml

@@ -853,7 +853,7 @@
             </Canvas>
 
 
-            <Grid Width="300" Height="160"  Canvas.Left="500" Canvas.Top="402" Background="#FAFAFA" unity:GridOptions.LineBrush="#afb4db" unity:GridOptions.ShowBorder="True">
+            <Grid Width="300" Height="160"  Canvas.Left="500" Canvas.Top="402" Background="#FAFAFA" unity:GridOptions.LineBrush="#E5E6E7" unity:GridOptions.ShowBorder="True">
                 <Grid.RowDefinitions>
                     <RowDefinition/>
                     <RowDefinition/>
@@ -895,7 +895,7 @@
 
             </Grid>
 
-            <Grid Width="300" Height="130"  Canvas.Left="500" Canvas.Top="580" Background="#FAFAFA" unity:GridOptions.LineBrush="#afb4db" unity:GridOptions.ShowBorder="True">
+            <Grid Width="300" Height="130"  Canvas.Left="500" Canvas.Top="580" Background="#FAFAFA" unity:GridOptions.LineBrush="#E5E6E7" unity:GridOptions.ShowBorder="True">
                 <Grid.RowDefinitions>
                     <RowDefinition/>
                     <RowDefinition/>
@@ -935,7 +935,7 @@
             <Ellipse Width="20" Height="20" Fill="{Binding HighTemperatureHeaterData.HighTemperatureHeaterIson,Converter={StaticResource boolToColor}}"  Canvas.Left="500" Canvas.Top="205" Stroke="Silver" StrokeThickness="2"/>
             <Button Height="20" Width="100" Content="Heater ON/OFF" Canvas.Left="530" Canvas.Top="205"     IsEnabled="{Binding IsAutoMode,Converter={StaticResource BoolToBool}}" Command="{Binding SwitchHighTemperatureHeaterCommand}"/>
 
-            <Grid Width="390" Height="120"  Background="#FAFAFA" unity:GridOptions.LineBrush="#afb4db" unity:GridOptions.ShowBorder="True" Canvas.Left="500" Canvas.Top="238">
+            <Grid Width="390" Height="120"  Background="#FAFAFA" unity:GridOptions.LineBrush="#E5E6E7" unity:GridOptions.ShowBorder="True" Canvas.Left="500" Canvas.Top="238">
                 <Grid.RowDefinitions>
                     <RowDefinition/>
                     <RowDefinition/>

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

@@ -98,7 +98,7 @@
             </Grid>
             <!--</Border>-->
 
-            <Canvas Canvas.Top="40" Canvas.Left="10">
+            <Canvas Canvas.Top="30" Canvas.Left="8">
 
                 <ctrls:Pipe2    Canvas.Left="490"  Canvas.Top="615" HorizontalAlignment="Left" VerticalAlignment="Top" RotateTransformValue="90" />
                 <!--N2-->
@@ -537,7 +537,7 @@
 
 
             </Canvas >
-            <Canvas Canvas.Left="-135" Canvas.Top="70">
+            <Canvas Canvas.Left="-137" Canvas.Top="65">
                 <!--<Ellipse Width="20" Height="20" Fill="{Binding PVHe1ValveIsOpen,Converter={StaticResource boolToColor}}"  Canvas.Left="650" Canvas.Top="682" Stroke="Silver" StrokeThickness="2"/>
             <Button Width="100" Content="He ON/OFF"  Style="{StaticResource SysBtnStyle}"  Command="{Binding HeCommand}"                Canvas.Left="680" Canvas.Top="682" IsEnabled="{Binding IsAutoMode,Converter={StaticResource BoolToBool}}"/>
             <RadioButton Canvas.Left="790" Canvas.Top="684" Content="Flow Mode" FontSize="15"     IsChecked="{Binding HeIsPressureMode,Converter={StaticResource BoolToBool}}"/>

+ 1 - 1
Venus/Venus_RT/App.config

@@ -28,7 +28,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是Venus,2是kepler2300,3是Kepler2200,4是VenusSE,5是VenusDE-->
-		<add name="ConfigType"   connectionString="2"/>
+		<add name="ConfigType"   connectionString="3"/>
 	</connectionStrings>
 	<system.serviceModel>
 		<!--<diagnostics>

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

@@ -185,6 +185,7 @@ namespace Venus_RT.Devices
         public override double MFC4FeedBack => DEVICE.GetDevice<IoMfc>($"{Module}.MfcGas4").FeedBack;
         public override double MFC5FeedBack => DEVICE.GetDevice<IoMfc>($"{Module}.MfcGas5").FeedBack;
         public override double MFC6FeedBack => DEVICE.GetDevice<IoMfc>($"{Module}.MfcGas6").FeedBack;
+        public override float ChamberTemperature => _highTemperatureHeater.HighTemperatureHighHeaterTemperature;
         public new ModuleName Module { get; }
 
         //public override MovementPosition LiftPinPosition

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

@@ -216,6 +216,9 @@ namespace Venus_RT.Devices
         public override double MFC4FeedBack => DEVICE.GetDevice<IoMfc>($"{Module}.MfcGas4").FeedBack;
         public override double MFC5FeedBack => DEVICE.GetDevice<IoMfc>($"{Module}.MfcGas5").FeedBack;
         public override double MFC6FeedBack => DEVICE.GetDevice<IoMfc>($"{Module}.MfcGas6").FeedBack;
+
+        public override float ChamberTemperature => _highTemperatureHeater.HighTemperatureHighHeaterTemperature;
+
         public new ModuleName Module { get; }
 
         //public override MovementPosition LiftPinPosition

+ 13 - 13
Venus/Venus_RT/Devices/JetKepler2300PM.cs

@@ -83,7 +83,7 @@ namespace Venus_RT.Devices
         private readonly AdixenTurboPump _TurboPump;
         private readonly PendulumValve _pendulumValve;
 
-        private readonly ChillerBase _Chiller;
+        //private readonly ChillerBase _Chiller;
         private readonly ChillerBase _InnerChiller;
         private readonly ChillerBase _OuterChiller;
         private readonly ChillerBase _TopChiller;
@@ -867,11 +867,11 @@ namespace Venus_RT.Devices
         {
             switch (chillerType)
             {
-                case ChillerType.Chiller:
-                    _Chiller?.SetChillerTemp((float)value, (float)offset);
-                    await Task.Delay(1000);
-                    _Chiller?.SetChillerOnOff(true);
-                    break;
+                //case ChillerType.Chiller:
+                //    _Chiller?.SetChillerTemp((float)value, (float)offset);
+                //    await Task.Delay(1000);
+                //    _Chiller?.SetChillerOnOff(true);
+                //    break;
                 case ChillerType.InnerChiller:
                     _InnerChiller?.SetChillerTemp((float)value, (float)offset);
                     await Task.Delay(1000);
@@ -894,9 +894,9 @@ namespace Venus_RT.Devices
         {
             switch (chillerType)
             {
-                case ChillerType.Chiller:
-                    _Chiller?.SetChillerOnOff(onoff);
-                    break;
+                //case ChillerType.Chiller:
+                //    _Chiller?.SetChillerOnOff(onoff);
+                //    break;
                 case ChillerType.InnerChiller:
                     _InnerChiller?.SetChillerOnOff(onoff);
                     break;
@@ -909,10 +909,10 @@ namespace Venus_RT.Devices
             }
         }
 
-        public override bool CheckChillerStatus()
-        {
-            return _Chiller != null /*&& _Chiller.IsRunning*/ && !_Chiller.IsError;
-        }
+        //public override bool CheckChillerStatus()
+        //{
+        //    return _Chiller != null /*&& _Chiller.IsRunning*/ && !_Chiller.IsError;
+        //}
 
 
         public override void SetGeneratorCommunicationMode(int mode)

+ 2 - 0
Venus/Venus_RT/Devices/JetPMBase.cs

@@ -106,6 +106,8 @@ namespace Venus_RT.Devices
 
         public virtual MovementPosition LiftPinPosition { get; }
 
+        public virtual float ChamberTemperature { get; }
+
         public abstract bool CheckAtm();
         public virtual bool CheckSlitDoorOpen()
         {

+ 11 - 3
Venus/Venus_RT/Devices/TM/JetTM.cs

@@ -186,11 +186,11 @@ namespace Venus_RT.Devices
 
         public double PMAPressure { get { return Singleton<RouteManager>.Instance.PMA.ChamberPressure; } }
         //public bool PMAIsVAC { get { return Singleton<RouteManager>.Instance.PMA.IsVac; } }
-        //public double PMBPressure { get { return Singleton<RouteManager>.Instance.PMB.ChamberPressure; } }
+        public double PMBPressure { get { return Singleton<RouteManager>.Instance.PMB.ChamberPressure; } }
         //public bool PMBIsATM { get { return Singleton<RouteManager>.Instance.PMB.IsAtm; } }
-        //public double PMCPressure { get { return Singleton<RouteManager>.Instance.PMC.ChamberPressure; } }
+        public double PMCPressure { get { return Singleton<RouteManager>.Instance.PMC.ChamberPressure; } }
         //public bool PMCIsATM { get { return Singleton<RouteManager>.Instance.PMC.IsAtm; } }
-        //public double PMDPressure { get { return Singleton<RouteManager>.Instance.PMD.ChamberPressure; } }
+        public double PMDPressure { get { return Singleton<RouteManager>.Instance.PMD.ChamberPressure; } }
         //public bool PMDIsATM { get { return Singleton<RouteManager>.Instance.PMD.IsAtm; } }
 
 
@@ -523,6 +523,14 @@ namespace Venus_RT.Devices
                     return LLAPressure;
                 case ModuleName.LLB:
                     return LLBPressure;
+                case ModuleName.PMA:
+                    return PMAPressure;
+                case ModuleName.PMB:
+                    return PMBPressure;
+                case ModuleName.PMC:
+                    return PMCPressure;
+                case ModuleName.PMD:
+                    return PMDPressure;
             }
 
             return 0;

+ 2 - 0
Venus/Venus_RT/Modules/PMs/PMEntity.cs

@@ -15,6 +15,7 @@ using MECF.Framework.Common.SubstrateTrackings;
 using Venus_Core;
 using Venus_RT.Devices;
 using Aitex.Core.RT.Log;
+using Aitex.Core.UI.DeviceControl;
 
 namespace Venus_RT.Modules.PMs
 {
@@ -232,6 +233,7 @@ namespace Venus_RT.Modules.PMs
         public bool IsVac => _chamber.IsVAC;
         public bool IsAtm => _chamber.IsATM;
 
+        public float ChamberTemperature => _chamber.ChamberTemperature;
         public bool Check(int msg, out string reason, object[] objs)
         {
             reason = "";

+ 5 - 4
Venus/Venus_RT/Modules/PMs/PMProcessRoutine.cs

@@ -375,7 +375,7 @@ namespace Venus_RT.Modules.PMs
             _stepTime.Restart();
 
             var state = _currentRecipe.Steps[_currentStep].Start();
-            LOG.Write(eEvent.INFO_PROCESS, Module, $"Recipe:{CurrentRunningRecipe} Step{_currentStep+1} Start");
+            LOG.Write(eEvent.INFO_PROCESS, Module, $"Recipe:{CurrentRunningRecipe} Step{_currentStep + 1} Start");
             _faCallback.RecipeStepStart(Module.ToString(), CurrentRunningRecipe, _currentStep);
             if (state != RState.Running)
                 return state;
@@ -500,7 +500,7 @@ namespace Venus_RT.Modules.PMs
                 }
                 else
                 {
-                    LOG.Write(eEvent.INFO_PROCESS, Module, $"Recipe:{CurrentRunningRecipe} Step{_currentStep+1} End");
+                    LOG.Write(eEvent.INFO_PROCESS, Module, $"Recipe:{CurrentRunningRecipe} Step{_currentStep + 1} End");
 
                     Notify($"Recipe:{CurrentRunningRecipe} finished");
                     //FaEvent.FaPostInfo(Module.ToString(), $"Recipe:{CurrentRunningRecipe} finished");
@@ -559,7 +559,7 @@ namespace Venus_RT.Modules.PMs
             _chamber.OpenValve(ValveType.TurboPumpPurge, true);
             _chamber.OpenValve(ValveType.Guage, true);
             _chamber.SetPVPostion(1000);
-            if ((_jetChamber == JetChamber.Venus || _chamber.ChamberType == JetChamber.VenusSE )&& _chamber.IsHVOn == true)
+            if ((_jetChamber == JetChamber.Venus || _chamber.ChamberType == JetChamber.VenusSE) && _chamber.IsHVOn == true)
             {
                 _chamber.OnOffSetESCHV(false);
             }
@@ -597,12 +597,13 @@ namespace Venus_RT.Modules.PMs
             {
                 RecipeDone("Abort");
             }
+            WaferManager.Instance.UpdateWaferProcessStatus(Module, 0, EnumWaferProcessStatus.Failed);
             _chamber.GeneratorBiasPowerOn(false);
             _chamber.GeneratorPowerOn(false);
             CloseAllValves();
             _chamber.OpenValve(ValveType.TurboPumpPumping, true);
             _chamber.OpenValve(ValveType.TurboPumpPurge, true);
-            if (_chamber.ChamberType == JetChamber.Venus|| _chamber.ChamberType == JetChamber.VenusSE)
+            if (_chamber.ChamberType == JetChamber.Venus || _chamber.ChamberType == JetChamber.VenusSE)
             {
                 await Task.Delay(3000);
                 _chamber.OnOffSetESCHV(false);

+ 1 - 1
Venus/Venus_RT/Modules/Schedulers/SchedulerPM.cs

@@ -64,7 +64,7 @@ namespace Venus_RT.Scheduler
         {
             get { return _entity.TimeToReady; }
         }
-
+        
         public TaskType Task => _task;
         private PMEntity _entity = null;
 

+ 57 - 2
Venus/Venus_RT/Modules/SystemDispatcher.cs

@@ -969,7 +969,7 @@ namespace Venus_RT.Modules
                     _faCallback.JobCreateFailed(module, lotId, jobId, "");
                     return false;
                 }
-
+                
                 if (!RouteManager.IsATMMode && !CheckSequenceRecipeFileValid(pj.Sequence, out reason))
                 {
                     LOG.Write(eEvent.WARN_ROUTER, ModuleName.System, $"recipe file not valid in the sequence, {reason}");
@@ -1165,7 +1165,13 @@ namespace Venus_RT.Modules
                 LOG.Write(eEvent.WARN_ROUTER, ModuleName.System, reason);
                 return false;
             }
-
+            if (RtInstance.ConfigType == ConfigType.Kepler2200)
+            {
+                if (!CheckSequenceKepler2200TemperatureReady(GetFirstProcessJob(cj).Sequence))
+                {
+                    return false;
+                }
+            }
             if (cj.State == EnumControlJobState.WaitingForStart)
             {
                 cj.SetState(EnumControlJobState.Executing);
@@ -1876,6 +1882,7 @@ namespace Venus_RT.Modules
             {
                 temperature = temp;
             }
+            
             var waferTask = new WaferTask((ModuleName)wafer.OriginStation,
                                             wafer.OriginSlot,
                                             pm,
@@ -3493,6 +3500,54 @@ namespace Venus_RT.Modules
 
             return false;
         }
+        private bool CheckSequenceKepler2200TemperatureReady(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);
+                            float currentChamberTemperature;
+                            switch (module)
+                            {
+                                case ModuleName.PMA:
+                                    currentChamberTemperature = Singleton<RouteManager>.Instance.PMA.ChamberTemperature;
+                                    break;
+                                case ModuleName.PMB:
+                                    currentChamberTemperature = Singleton<RouteManager>.Instance.PMB.ChamberTemperature;
+                                    break;
+                                case ModuleName.PMC:
+                                    currentChamberTemperature = Singleton<RouteManager>.Instance.PMC.ChamberTemperature;
+                                    break;
+                                case ModuleName.PMD:
+                                    currentChamberTemperature = Singleton<RouteManager>.Instance.PMD.ChamberTemperature;
+                                    break;
+                                default:
+                                    currentChamberTemperature = 0;
+                                    break;
+                            }
+                            if (recipe.Header.Temperature!=null && recipe.Header.Temperature!="" && (currentChamberTemperature > Convert.ToSingle(recipe.Header.Temperature) + 10 || currentChamberTemperature < Convert.ToSingle(recipe.Header.Temperature) - 10))
+                            {
+                                LOG.Write(eEvent.ERR_ROUTER, ModuleName.System, $"Start job失败,由于{module}腔体温度{currentChamberTemperature}与{recipeName} Recipe温度{recipe.Header.Temperature}不匹配");
+                                return false;
+                            }
+                        }
+                    }
+
+                }
+            }
+            return true;
+        }
 
         private bool CheckSequenceRecipeFileValid(SequenceInfo seq, out string reason)
         {

+ 5 - 5
Venus/Venus_Simulator/Devices/PendulumValveMockPMA.cs

@@ -42,11 +42,11 @@ namespace Venus_Simulator.Devices
                 }
                 string item2 = item + "\r";
 
-                //if (_bHold == false)
-                //{
-                //    _pressure += _rd.Next(-10, 10);
-                //    _position += _rd.Next(-50, 50);
-                //}
+                if (_bHold == false)
+                {
+                    //_pressure += _rd.Next(-10, 10);
+                    //_position += _rd.Next(-50, 50);
+                }
 
                 if (_simPendulumValveStatus == PendulumValveStatus.OFF)
                 {

+ 5 - 5
Venus/Venus_Simulator/Devices/PendulumValveMockPMB.cs

@@ -41,11 +41,11 @@ namespace Venus_Simulator.Devices
                 }
                 string item2 = item + "\r";
 
-                //if (_bHold == false)
-                //{
-                //    _pressure += _rd.Next(-10, 10);
-                //    _position += _rd.Next(-50, 50);
-                //}
+                if (_bHold == false)
+                {
+                    //_pressure += _rd.Next(-10, 10);
+                    //_position += _rd.Next(-50, 50);
+                }
 
                 if (_simPendulumValveStatus == PendulumValveStatus.OFF)
                 {

+ 5 - 5
Venus/Venus_Simulator/Devices/PendulumValveMockPMC.cs

@@ -41,11 +41,11 @@ namespace Venus_Simulator.Devices
                 }
                 string item2 = item + "\r";
 
-                //if (_bHold == false)
-                //{
-                //    _pressure += _rd.Next(-10, 10);
-                //    _position += _rd.Next(-50, 50);
-                //}
+                if (_bHold == false)
+                {
+                    //_pressure += _rd.Next(-10, 10);
+                    //_position += _rd.Next(-50, 50);
+                }
 
                 if (_simPendulumValveStatus == PendulumValveStatus.OFF)
                 {

+ 5 - 5
Venus/Venus_Simulator/Devices/PendulumValveMockPMD.cs

@@ -41,11 +41,11 @@ namespace Venus_Simulator.Devices
                 }
                 string item2 = item + "\r";
 
-                //if (_bHold == false)
-                //{
-                //    _pressure += _rd.Next(-10, 10);
-                //    _position += _rd.Next(-50, 50);
-                //}
+                if (_bHold == false)
+                {
+                    //_pressure += _rd.Next(-10, 10);
+                    //_position += _rd.Next(-50, 50);
+                }
 
                 if (_simPendulumValveStatus == PendulumValveStatus.OFF)
                 {

+ 6 - 1
Venus/Venus_Simulator/Instances/SystemConfig.cs

@@ -7,6 +7,7 @@ using Aitex.Core.Util;
 using Aitex.Core.RT.SCCore;
 using Aitex.Core.RT.Log;
 using System.Configuration;
+using System.Windows;
 
 namespace Venus_Simulator.Instances
 {
@@ -48,9 +49,11 @@ namespace Venus_Simulator.Instances
         public void Initialize()
         {
             var current_path = Environment.CurrentDirectory;
+            string rtConfigPath = current_path.Replace("Simulator","RT")+ "\\Venus_RT.exe.config";
+            //MessageBox.Show(rtConfigPath);
             int nIndesx = current_path.LastIndexOf("Venus\\");
             current_path = current_path.Substring(0, nIndesx + 5);
-            string rtConfigPath = current_path + "\\Venus_RT\\bin\\Debug\\Venus_RT.exe.config";
+            
             var configType=GetConfig(rtConfigPath).ConnectionStrings.ConnectionStrings["ConfigType"].ConnectionString;
             if (configType != "0")
             {          
@@ -61,6 +64,8 @@ namespace Venus_Simulator.Instances
 
             GetConfigFilePath(current_path);
             string cfgPath = paths.Find(item => item.Contains("Venus_RT"));
+
+            
             if (cfgPath != null)
             {
                 string config_path = cfgPath;

+ 1 - 1
Venus/Venus_Themes/CustomControls/CustomPasswordBox.cs

@@ -81,7 +81,7 @@ namespace Venus_Themes.CustomControls
                 }
                 return dst;
             }
-            catch (Exception ex)
+            catch
             {
 
             }