| | |
| | | var pipe1_val_flow_real = result_sg.scada.Find(t => t.tagname == "_0402010403030002001"); |
| | | if (pipe1_val_flow_real != null && pipe1_val_flow_real.value > 100) |
| | | {//宿¶é, stationCX_2#_flow" ä¸é«ç»çç®æ é |
| | | real_total_flow_pipe1 = pipe1_val_flow_real.value; |
| | | real_total_flow_pipe1 = Math.Round( pipe1_val_flow_real.value,0); |
| | | } |
| | | |
| | | double real_oulet_press_pipe1 = 0; |
| | | var pipe1_val_press_real = result_sg.scada.Find(t => t.tagname == "_0402010403030002005"); |
| | | if (pipe1_val_press_real != null) |
| | | {//宿¶é, "stationCX_2#_flow" æ¯ ä¸é«ç»çç®æ é |
| | | real_oulet_press_pipe1 = pipe1_val_press_real.value; |
| | | real_oulet_press_pipe1 = Math.Round(pipe1_val_press_real.value,5); |
| | | } |
| | | |
| | | |
| | |
| | | var pipe2_val_flow_real = result_sg.scada.Find(t => t.tagname == "_0402010403030002002"); |
| | | if (pipe2_val_flow_real != null && pipe2_val_flow_real.value > 100) |
| | | { |
| | | real_total_flow_pipe2 = pipe2_val_flow_real.value; |
| | | real_total_flow_pipe2 = Math.Round(pipe2_val_flow_real.value,0); |
| | | } |
| | | |
| | | double real_oulet_press_pipe2 = 0; |
| | | var pipe2_val_press_real = result_sg.scada.Find(t => t.tagname == "_0402010403030002006"); |
| | | if (pipe2_val_press_real != null) |
| | | {//宿¶é, stationCX_2#_flow" ä¸é«ç»çç®æ é |
| | | real_oulet_press_pipe2 = pipe2_val_press_real.value; |
| | | real_oulet_press_pipe2 = Math.Round(pipe2_val_press_real.value,5); |
| | | } |
| | | |
| | | #endregion |
| | | |
| | | |
| | | |
| | | //åºæ¹æ¡ |
| | | var scheme = calulator.Calc(out error_info); |
| | | if (scheme == null) |
| | |
| | | result.Pumps.Add(pump_item); |
| | | } |
| | | |
| | | #endregion |
| | | |
| | | #region ä¿®æ£ |
| | | if (machine_run_status.Count == 1) |
| | | {//ä¿è¯å¼ä¸å°æ³µæ¶, æµé大 é¢çä¹å¤§, æµéå° , é¢çä¹å° |
| | | if (pipe1.TargetFlow + pipe2.TargetFlow > 100) |
| | | { |
| | | double current_total_flow = 0; |
| | | if (pipe1.TargetFlow > 100) |
| | | current_total_flow = pipe1.TargetFlow; |
| | | else |
| | | current_total_flow = pipe2.TargetFlow; |
| | | |
| | | |
| | | var open_pump = result.Pumps.First(); |
| | | var fr_hz_tag_name = machine_frq_hz_target_name[open_pump.Index]; |
| | | var current_val_fr_hz = result_sg.scada.Find(t => t.tagname == fr_hz_tag_name); |
| | | if (current_val_fr_hz != null && current_val_fr_hz.value > 10) |
| | | { |
| | | if (current_total_flow < scheme.TotalWrkQ && current_val_fr_hz.value > open_pump.Frequency) |
| | | {//ä¿è¯è¶å¿æ£ç¡® |
| | | open_pump.Frequency = Math.Round(current_val_fr_hz.value * scheme.TotalWrkQ / current_total_flow, 1); |
| | | } |
| | | else if (current_total_flow > scheme.TotalWrkQ && current_val_fr_hz.value < open_pump.Frequency) |
| | | {//ä¿è¯è¶å¿æ£ç¡® |
| | | open_pump.Frequency = Math.Round(current_val_fr_hz.value * scheme.TotalWrkQ / current_total_flow, 1); |
| | | } |
| | | else |
| | | {//åæ°´åé¦ , ç¨æ²çº¿è®¡ç®, é¢çåä½, 人为å¢å 0.5HZ |
| | | if (open_pump.Frequency < 49.5) |
| | | { |
| | | //open_pump.Speed = Math.Round |
| | | // (open_pump.Speed * (open_pump.Frequency + 0.5) / (open_pump.Frequency),0); |
| | | open_pump.Frequency = open_pump.Frequency + 0.5; |
| | | open_pump.Speed = Math.Round(740 * open_pump.Frequency / 50, 1); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | else |
| | | { |
| | | result.Pumps.ForEach(x => |
| | | {//åæ°´åé¦ , ç¨æ²çº¿è®¡ç®, é¢çåä½, 人为å¢å 0.5HZ |
| | |
| | | } |
| | | } |
| | | }); |
| | | |
| | | //if (pipe1.TargetFlow + pipe2.TargetFlow > 100) |
| | | //{ |
| | | // double current_total_flow = 0; |
| | | // if (pipe1.TargetFlow > 100) |
| | | // current_total_flow = pipe1.TargetFlow; |
| | | // else |
| | | // current_total_flow = pipe2.TargetFlow; |
| | | // var open_pump = result.Pumps.First(); |
| | | // var fr_hz_tag_name = machine_frq_hz_target_name[open_pump.Index]; |
| | | // var current_val_fr_hz = result_sg.scada.Find(t => t.tagname == fr_hz_tag_name); |
| | | // if (current_val_fr_hz != null && current_val_fr_hz.value > 10) |
| | | // { |
| | | // bool isCor = false; |
| | | // if (current_total_flow < scheme.TotalWrkQ && current_val_fr_hz.value > open_pump.Frequency) |
| | | // {//ä¿è¯è¶å¿æ£ç¡® |
| | | // isCor = true; |
| | | // open_pump.Note = string.Format("ORI_{0}", open_pump.Frequency); |
| | | // open_pump.Frequency = Math.Round(current_val_fr_hz.value * scheme.TotalWrkQ / current_total_flow, 1); |
| | | // } |
| | | // else if (current_total_flow > scheme.TotalWrkQ && current_val_fr_hz.value < open_pump.Frequency) |
| | | // {//ä¿è¯è¶å¿æ£ç¡® |
| | | // isCor = true; |
| | | // open_pump.Note = string.Format("ORI_{0}", open_pump.Frequency); |
| | | // open_pump.Frequency = Math.Round(current_val_fr_hz.value * scheme.TotalWrkQ / current_total_flow, 1); |
| | | // } |
| | | |
| | | // } |
| | | //} |
| | | } |
| | | else |
| | | { |
| | | result.Pumps.ForEach(x => |
| | | {//åæ°´åé¦ , ç¨æ²çº¿è®¡ç®, é¢çåä½, 人为å¢å 0.3HZ |
| | | if (x.Frequency > 10) |
| | | { |
| | | if (x.Frequency < 49.7) |
| | | { |
| | | x.Frequency = x.Frequency + 0.3; |
| | | x.Speed = Math.Round(740 * x.Frequency / 50, 1); |
| | | } |
| | | } |
| | | }); |
| | | } |
| | | |
| | | #endregion |
| | | |
| | | result.Pumps.ForEach(x => |
| | | {//忣æ¥ä¸ä¸è½¬é |
| | |
| | | /// 转é r/min |
| | | /// </summary> |
| | | public double CurrentSpeed { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public string Note { get; set; } |
| | | |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | |
| | | double targetH = this.CalcHeadByPress(this._targetInletPress, |
| | | this._targetOutletPress, Machine.InletCaliber, Machine.OutletCaliber, this._targetQ); |
| | | this._targetOutletPress, Machine.InletCaliber, Machine.OutletCaliber, |
| | | this._targetQ); |
| | | //CalcHeadByPress(this._targetInletPress, this._targetOutletPress); |
| | | |
| | | |
| | |
| | | }, |
| | | |
| | | "MemoryCache": { |
| | | "KeepTime": 30, //���� |
| | | "RandomTime": 300, //�� |
| | | "Level1": 600, //�� |
| | | "Level2": 300, //�� |
| | | "Level3": 160, //�� |
| | | "Level4": 120, //�� |
| | | "Level5": 60 //�� |
| | | "KeepTime": 30, //åé |
| | | "RandomTime": 300, //ç§ |
| | | "Level1": 600, //ç§ |
| | | "Level2": 300, //ç§ |
| | | "Level3": 160, //ç§ |
| | | "Level4": 120, //ç§ |
| | | "Level5": 60 //ç§ |
| | | }, |
| | | |
| | | "RabbitMq": { |
| | | "HostName": "47.116.64.138", |
| | | "HostName": "172.19.69.10", |
| | | "UserName": "admin", |
| | | "Password": "admin" |
| | | }, |
| | | |
| | | "Redis": { |
| | | "Url": "47.116.97.43:6379" |
| | | "Url": "172.19.29.54:6379" |
| | | }, |
| | | |
| | | "SqlSugar": { |
| | |
| | | }, |
| | | |
| | | "RedisCache": { |
| | | "RunKeyPrefix": "istation-run-core-test", |
| | | "EtaKeyPrefix": "istation-eta-core-test", |
| | | "VibrationKeyPrefix": "istation-vibration-core-test" |
| | | "RunKeyPrefix": "istation-run-core", |
| | | "EtaKeyPrefix": "istation-eta-core", |
| | | "VibrationKeyPrefix": "istation-vibration-core" |
| | | }, |
| | | |
| | | "Queue": { |
| | | "DataDockingQueueName": "data_docking_queue_test", |
| | | "StoreQueueName": "store_queue_test", |
| | | "RunExChangeName": "run_exchange_test" |
| | | "DataDockingQueueName": "data_docking_queue", |
| | | "StoreQueueName": "store_queue", |
| | | "RunExChangeName": "run_exchange" |
| | | }, |
| | | |
| | | "Basic": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_basic_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Basic;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Bimface": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_bimface_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Bimface;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | }, |
| | | "Account": { |
| | | "AppKey": "GPg7TMfOJxF10QHm2PirACyI21nv0qJX", |
| | |
| | | |
| | | "Dma": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_dma_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Dma;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Main": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_main_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Main;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Map": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_map_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Map;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Monitor": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_monitor_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Monitor;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | }, |
| | | "Flag": "monitor" |
| | | }, |
| | | |
| | | "Organize": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_organize_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Organize;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Product": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_product_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Product;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "User": { |
| | | "DefaultLoginPwd": "123456", |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_user_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "UserLoginConnectString": "PORT=5432;DATABASE=istation_user_login_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4User;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "UserLoginConnectString": "PORT=5432;DATABASE=IStation4UserLogin;HOST=172.19.4.118;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Run": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_run_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "MonitorRecordConnectString": "PORT=5432;DATABASE=istation_monitor_record_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Run;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "MonitorRecordConnectString": "PORT=5432;DATABASE=IStation4MonitorRecord;HOST=172.19.4.118;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Eta": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_eta_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "RecordConnectString": "PORT=5432;DATABASE=istation_eta_record_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Eta;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "RecordConnectString": "PORT=5432;DATABASE=IStation4EtaRecord;HOST=172.19.4.118;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | }, |
| | | "Debug": { |
| | | "IsDebug": true, |
| | |
| | | "ResetFrequency": 60 |
| | | }, |
| | | "Sum": { |
| | | "HourCron": "0 20 00 * * ?", //ÿ�� 20��ִ�� |
| | | "DayCron": "0 40 00 * * ?", // ÿ������ 00��40 ִ�� |
| | | "WeekCron": "0 40 1 ? * MON", //ÿ��һ���� 1��40 ��ִ�� |
| | | "MonthCron": "0 40 2 1 * ?", //ÿ��1������ 2��40 ִ�� |
| | | "YearCron": "0 40 3 1 1 ?" //ÿ��1������3��40ִ�� |
| | | "HourCron": "0 20 * * * ?", //æ¯æ¶ 20åæ§è¡ |
| | | "DayCron": "0 40 00 * * ?", // æ¯å¤©ä¸å 00ï¼40 æ§è¡ |
| | | "WeekCron": "0 40 1 ? * MON", //æ¯å¨ä¸ä¸å 1ç¹40 åæ§è¡ |
| | | "MonthCron": "0 40 2 1 * ?", //æ¯æ1å·ä¸å 2ï¼40 æ§è¡ |
| | | "YearCron": "0 40 3 1 1 ?" //æ¯å¹´1æä¸å3ï¼40æ§è¡ |
| | | }, |
| | | "Accord": { |
| | | "HourCron": "0 25 00 * * ?", //ÿ�� 25��ִ�� |
| | | "DayCron": "0 45 00 * * ?", // ÿ������ 00��45 ִ�� |
| | | "WeekCron": "0 45 1 ? * MON", //ÿ��һ���� 1��45 ��ִ�� |
| | | "MonthCron": "0 45 2 1 * ?", //ÿ��1������ 2��45 ִ�� |
| | | "YearCron": "0 45 3 1 1 ?" //ÿ��1������3��45ִ�� |
| | | "HourCron": "0 25 * * * ?", //æ¯æ¶ 25åæ§è¡ |
| | | "DayCron": "0 45 00 * * ?", // æ¯å¤©ä¸å 00ï¼45 æ§è¡ |
| | | "WeekCron": "0 45 1 ? * MON", //æ¯å¨ä¸ä¸å 1ç¹45 åæ§è¡ |
| | | "MonthCron": "0 45 2 1 * ?", //æ¯æ1å·ä¸å 2ï¼45 æ§è¡ |
| | | "YearCron": "0 45 3 1 1 ?" //æ¯å¹´1æä¸å3ï¼45æ§è¡ |
| | | }, |
| | | "Standard": { |
| | | "HourCron": "0 30 00 * * ?", //ÿ�� 30��ִ�� |
| | | "DayCron": "0 50 00 * * ?", // ÿ������ 00��50 ִ�� |
| | | "WeekCron": "0 50 1 ? * MON", //ÿ��һ���� 1��50 ��ִ�� |
| | | "MonthCron": "0 50 2 1 * ?", //ÿ��1������ 2��50 ִ�� |
| | | "YearCron": "0 50 3 1 1 ?" //ÿ��1������3��50ִ�� |
| | | "HourCron": "0 30 * * * ?", //æ¯æ¶ 30åæ§è¡ |
| | | "DayCron": "0 50 00 * * ?", // æ¯å¤©ä¸å 00ï¼50 æ§è¡ |
| | | "WeekCron": "0 50 1 ? * MON", //æ¯å¨ä¸ä¸å 1ç¹50 åæ§è¡ |
| | | "MonthCron": "0 50 2 1 * ?", //æ¯æ1å·ä¸å 2ï¼50 æ§è¡ |
| | | "YearCron": "0 50 3 1 1 ?" //æ¯å¹´1æä¸å3ï¼50æ§è¡ |
| | | } |
| | | }, |
| | | "Analy": { |
| | |
| | | |
| | | "Repair": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_repair_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Job": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_job_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | }, |
| | | "Execution": { |
| | | "CustomRealResetThreshold": 60, |
| | | "CustomCronResetThreshold": 1440 |
| | | } |
| | | }, |
| | | |
| | | "Epanet": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_epanet_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Repair;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Inspect": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_inspect_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "RecordConnectString": "PORT=5432;DATABASE=istation_inspect_record_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Inspect;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "RecordConnectString": "PORT=5432;DATABASE=IStation4InspectRecord;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Job": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Job;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Epanet": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Epanet;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | |
| | | "ResetFrequency": 60 |
| | | }, |
| | | "Target": { |
| | | "CorpIds": [ 3 ], |
| | | "ContainsChildren": false |
| | | "CorpIds": [ 1 ], |
| | | "ContainsChildren": true |
| | | } |
| | | }, |
| | | |
| | |
| | | |
| | | "Analy": { |
| | | "Target": { |
| | | "CorpIds": [ 4 ], |
| | | "ContainsChildren": false |
| | | "CorpIds": [ 1 ], |
| | | "ContainsChildren": true |
| | | }, |
| | | "Fluct": { |
| | | "Cron": "0 00 02 * * ?" //ÿ�� 02��00 ִ�� |
| | | "Cron": "0 00 02 * * ?" //æ¯æ¥ 02ï¼00 æ§è¡ |
| | | }, |
| | | "General": { |
| | | "RealResetFrequency": 60, |
| | | "HourCron": "0 20 * * * ?", //ÿʱ 00:20 ִ�� |
| | | "DayCron": "0 00 01 * * ?", //ÿ�� 01��00 ִ�� |
| | | "WeekCron": "0 30 1 ? * MON", //ÿ��һ���� 1��30 ��ִ�� |
| | | "MonthCron": "0 00 2 1 * ?", //ÿ��1��2��00ִ�� |
| | | "YearCron": "0 0 6 1 1 ? *" //ÿ�� 1��1�� 6��00ִ�� |
| | | "HourCron": "0 20 * * * ?", //æ¯æ¶ 00:20 æ§è¡ |
| | | "DayCron": "0 00 01 * * ?", //æ¯æ¥ 01ï¼00 æ§è¡ |
| | | "WeekCron": "0 30 1 ? * MON", //æ¯å¨ä¸ä¸å 1ç¹30 åæ§è¡ |
| | | "MonthCron": "0 00 2 1 * ?", //æ¯æ1å·2ç¹00æ§è¡ |
| | | "YearCron": "0 0 6 1 1 ? *" //æ¯å¹´ 1æ1æ¥ 6ï¼00æ§è¡ |
| | | }, |
| | | "Alarm": { |
| | | "InterruptAnalyFrequency": 120 |
| | |
| | | }, |
| | | |
| | | "WebApi": { |
| | | "EnableJwt": false, |
| | | "EnableJwt": true, |
| | | "OpenApi": { |
| | | "SanGaoDispatchUrl": "http://192.168.60.228:8821/Api/wsmp/v1/Chengtou/factoryCalc", |
| | | "SanGaoPlanUrl": "http://192.168.60.228:8821/Api/wsmp/v1/Chengtou/factoryCalc_New" |
| | | "SanGaoDispatchUrl": "http://192.168.60.228:8821/Api/wsmp/v1/Chengtou/factoryCalc" |
| | | } |
| | | |
| | | }, |
| | |
| | | "ServerPort": 9988, |
| | | "TransferUrl": "http://172.100.17.23:8081/smi/vibration/zept" |
| | | } |
| | | }, |
| | | "HangTian801": { |
| | | "TransferUrl": "http://172.100.17.23:8081/smi/vibration/hangtian" |
| | | }, |
| | | "SZJTKT": { |
| | | "Prefix": "AT+Data=", |
| | | "ProductId": "10001313", |
| | | "ServerPort": 8805, |
| | | "TransferUrl": "http://172.100.17.23:8081/smi/vibration/hangtian" |
| | | } |
| | | }, |
| | | |
| | |
| | | "Expert": { |
| | | "IsWriteLog": true, |
| | | "CorpID": 5, |
| | | "ConfigureID": 1532223215940800512 |
| | | "ConfigureID": 0 |
| | | }, |
| | | "HangTian": { |
| | | "IsWriteLog": true, |
| | |
| | | } |
| | | }, |
| | | |
| | | "LinuxTest": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_linux_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | }, |
| | | "Queue": { |
| | | "StoreQueueName": "linux_text_queue_name" |
| | | } |
| | | |
| | | }, |
| | | |
| | | "Operating": { |
| | | "Operating": { |
| | | "NT": { |
| | | "Password": "666666", |
| | | "Password": "666666" |
| | | } |
| | | }, |
| | | |
| | | "DataFile": { |
| | | "SaveFileUrl": "http://101.133.133.173:9019/", |
| | | "PdfFolder":"Report" |
| | | } |
| | | |
| | | } |
| | | |
| | | |
| | | } |
| | |
| | | }, |
| | | |
| | | "MemoryCache": { |
| | | "KeepTime": 30, //���� |
| | | "RandomTime": 300, //�� |
| | | "Level1": 600, //�� |
| | | "Level2": 300, //�� |
| | | "Level3": 160, //�� |
| | | "Level4": 120, //�� |
| | | "Level5": 60 //�� |
| | | "KeepTime": 30, //åé |
| | | "RandomTime": 300, //ç§ |
| | | "Level1": 600, //ç§ |
| | | "Level2": 300, //ç§ |
| | | "Level3": 160, //ç§ |
| | | "Level4": 120, //ç§ |
| | | "Level5": 60 //ç§ |
| | | }, |
| | | |
| | | "RabbitMq": { |
| | | "HostName": "47.116.64.138", |
| | | "HostName": "172.19.69.10", |
| | | "UserName": "admin", |
| | | "Password": "admin" |
| | | }, |
| | | |
| | | "Redis": { |
| | | "Url": "47.116.97.43:6379" |
| | | "Url": "172.19.29.54:6379" |
| | | }, |
| | | |
| | | "SqlSugar": { |
| | |
| | | }, |
| | | |
| | | "RedisCache": { |
| | | "RunKeyPrefix": "istation-run-core-test", |
| | | "EtaKeyPrefix": "istation-eta-core-test", |
| | | "VibrationKeyPrefix": "istation-vibration-core-test" |
| | | "RunKeyPrefix": "istation-run-core", |
| | | "EtaKeyPrefix": "istation-eta-core", |
| | | "VibrationKeyPrefix": "istation-vibration-core" |
| | | }, |
| | | |
| | | "Queue": { |
| | | "DataDockingQueueName": "data_docking_queue_test", |
| | | "StoreQueueName": "store_queue_test", |
| | | "RunExChangeName": "run_exchange_test" |
| | | "DataDockingQueueName": "data_docking_queue", |
| | | "StoreQueueName": "store_queue", |
| | | "RunExChangeName": "run_exchange" |
| | | }, |
| | | |
| | | "Basic": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_basic_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Basic;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Bimface": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_bimface_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Bimface;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | }, |
| | | "Account": { |
| | | "AppKey": "GPg7TMfOJxF10QHm2PirACyI21nv0qJX", |
| | |
| | | |
| | | "Dma": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_dma_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Dma;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Main": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_main_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Main;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Map": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_map_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Map;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Monitor": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_monitor_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Monitor;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | }, |
| | | "Flag": "monitor" |
| | | }, |
| | | |
| | | "Organize": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_organize_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Organize;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Product": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_product_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Product;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "User": { |
| | | "DefaultLoginPwd": "123456", |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_user_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "UserLoginConnectString": "PORT=5432;DATABASE=istation_user_login_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4User;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "UserLoginConnectString": "PORT=5432;DATABASE=IStation4UserLogin;HOST=172.19.4.118;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Run": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_run_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "MonitorRecordConnectString": "PORT=5432;DATABASE=istation_monitor_record_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Run;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "MonitorRecordConnectString": "PORT=5432;DATABASE=IStation4MonitorRecord;HOST=172.19.4.118;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Eta": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_eta_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "RecordConnectString": "PORT=5432;DATABASE=istation_eta_record_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Eta;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "RecordConnectString": "PORT=5432;DATABASE=IStation4EtaRecord;HOST=172.19.4.118;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | }, |
| | | "Debug": { |
| | | "IsDebug": true, |
| | |
| | | "ResetFrequency": 60 |
| | | }, |
| | | "Sum": { |
| | | "HourCron": "0 20 00 * * ?", //ÿ�� 20��ִ�� |
| | | "DayCron": "0 40 00 * * ?", // ÿ������ 00��40 ִ�� |
| | | "WeekCron": "0 40 1 ? * MON", //ÿ��һ���� 1��40 ��ִ�� |
| | | "MonthCron": "0 40 2 1 * ?", //ÿ��1������ 2��40 ִ�� |
| | | "YearCron": "0 40 3 1 1 ?" //ÿ��1������3��40ִ�� |
| | | "HourCron": "0 20 * * * ?", //æ¯æ¶ 20åæ§è¡ |
| | | "DayCron": "0 40 00 * * ?", // æ¯å¤©ä¸å 00ï¼40 æ§è¡ |
| | | "WeekCron": "0 40 1 ? * MON", //æ¯å¨ä¸ä¸å 1ç¹40 åæ§è¡ |
| | | "MonthCron": "0 40 2 1 * ?", //æ¯æ1å·ä¸å 2ï¼40 æ§è¡ |
| | | "YearCron": "0 40 3 1 1 ?" //æ¯å¹´1æä¸å3ï¼40æ§è¡ |
| | | }, |
| | | "Accord": { |
| | | "HourCron": "0 25 00 * * ?", //ÿ�� 25��ִ�� |
| | | "DayCron": "0 45 00 * * ?", // ÿ������ 00��45 ִ�� |
| | | "WeekCron": "0 45 1 ? * MON", //ÿ��һ���� 1��45 ��ִ�� |
| | | "MonthCron": "0 45 2 1 * ?", //ÿ��1������ 2��45 ִ�� |
| | | "YearCron": "0 45 3 1 1 ?" //ÿ��1������3��45ִ�� |
| | | "HourCron": "0 25 * * * ?", //æ¯æ¶ 25åæ§è¡ |
| | | "DayCron": "0 45 00 * * ?", // æ¯å¤©ä¸å 00ï¼45 æ§è¡ |
| | | "WeekCron": "0 45 1 ? * MON", //æ¯å¨ä¸ä¸å 1ç¹45 åæ§è¡ |
| | | "MonthCron": "0 45 2 1 * ?", //æ¯æ1å·ä¸å 2ï¼45 æ§è¡ |
| | | "YearCron": "0 45 3 1 1 ?" //æ¯å¹´1æä¸å3ï¼45æ§è¡ |
| | | }, |
| | | "Standard": { |
| | | "HourCron": "0 30 00 * * ?", //ÿ�� 30��ִ�� |
| | | "DayCron": "0 50 00 * * ?", // ÿ������ 00��50 ִ�� |
| | | "WeekCron": "0 50 1 ? * MON", //ÿ��һ���� 1��50 ��ִ�� |
| | | "MonthCron": "0 50 2 1 * ?", //ÿ��1������ 2��50 ִ�� |
| | | "YearCron": "0 50 3 1 1 ?" //ÿ��1������3��50ִ�� |
| | | "HourCron": "0 30 * * * ?", //æ¯æ¶ 30åæ§è¡ |
| | | "DayCron": "0 50 00 * * ?", // æ¯å¤©ä¸å 00ï¼50 æ§è¡ |
| | | "WeekCron": "0 50 1 ? * MON", //æ¯å¨ä¸ä¸å 1ç¹50 åæ§è¡ |
| | | "MonthCron": "0 50 2 1 * ?", //æ¯æ1å·ä¸å 2ï¼50 æ§è¡ |
| | | "YearCron": "0 50 3 1 1 ?" //æ¯å¹´1æä¸å3ï¼50æ§è¡ |
| | | } |
| | | }, |
| | | "Analy": { |
| | |
| | | |
| | | "Repair": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_repair_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Job": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_job_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | }, |
| | | "Execution": { |
| | | "CustomRealResetThreshold": 60, |
| | | "CustomCronResetThreshold": 1440 |
| | | } |
| | | }, |
| | | |
| | | "Epanet": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_epanet_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Repair;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Inspect": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_inspect_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "RecordConnectString": "PORT=5432;DATABASE=istation_inspect_record_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Inspect;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;", |
| | | "RecordConnectString": "PORT=5432;DATABASE=IStation4InspectRecord;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Job": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Job;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | | "Epanet": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=IStation4Epanet;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | } |
| | | }, |
| | | |
| | |
| | | "ResetFrequency": 60 |
| | | }, |
| | | "Target": { |
| | | "CorpIds": [ 3 ], |
| | | "ContainsChildren": false |
| | | "CorpIds": [ 1 ], |
| | | "ContainsChildren": true |
| | | } |
| | | }, |
| | | |
| | |
| | | |
| | | "Analy": { |
| | | "Target": { |
| | | "CorpIds": [ 4 ], |
| | | "ContainsChildren": false |
| | | "CorpIds": [ 1 ], |
| | | "ContainsChildren": true |
| | | }, |
| | | "Fluct": { |
| | | "Cron": "0 00 02 * * ?" //ÿ�� 02��00 ִ�� |
| | | "Cron": "0 00 02 * * ?" //æ¯æ¥ 02ï¼00 æ§è¡ |
| | | }, |
| | | "General": { |
| | | "RealResetFrequency": 60, |
| | | "HourCron": "0 20 * * * ?", //ÿʱ 00:20 ִ�� |
| | | "DayCron": "0 00 01 * * ?", //ÿ�� 01��00 ִ�� |
| | | "WeekCron": "0 30 1 ? * MON", //ÿ��һ���� 1��30 ��ִ�� |
| | | "MonthCron": "0 00 2 1 * ?", //ÿ��1��2��00ִ�� |
| | | "YearCron": "0 0 6 1 1 ? *" //ÿ�� 1��1�� 6��00ִ�� |
| | | "HourCron": "0 20 * * * ?", //æ¯æ¶ 00:20 æ§è¡ |
| | | "DayCron": "0 00 01 * * ?", //æ¯æ¥ 01ï¼00 æ§è¡ |
| | | "WeekCron": "0 30 1 ? * MON", //æ¯å¨ä¸ä¸å 1ç¹30 åæ§è¡ |
| | | "MonthCron": "0 00 2 1 * ?", //æ¯æ1å·2ç¹00æ§è¡ |
| | | "YearCron": "0 0 6 1 1 ? *" //æ¯å¹´ 1æ1æ¥ 6ï¼00æ§è¡ |
| | | }, |
| | | "Alarm": { |
| | | "InterruptAnalyFrequency": 120 |
| | |
| | | }, |
| | | |
| | | "WebApi": { |
| | | "EnableJwt": false, |
| | | "EnableJwt": true, |
| | | "OpenApi": { |
| | | "SanGaoDispatchUrl": "http://192.168.60.228:8821/Api/wsmp/v1/Chengtou/factoryCalc", |
| | | "SanGaoPlanUrl": "http://192.168.60.228:8821/Api/wsmp/v1/Chengtou/factoryCalc_New" |
| | | "SanGaoDispatchUrl": "http://192.168.60.228:8821/Api/wsmp/v1/Chengtou/factoryCalc" |
| | | } |
| | | |
| | | }, |
| | |
| | | "ServerPort": 9988, |
| | | "TransferUrl": "http://172.100.17.23:8081/smi/vibration/zept" |
| | | } |
| | | }, |
| | | "HangTian801": { |
| | | "TransferUrl": "http://172.100.17.23:8081/smi/vibration/hangtian" |
| | | } |
| | | }, |
| | | |
| | |
| | | "Expert": { |
| | | "IsWriteLog": true, |
| | | "CorpID": 5, |
| | | "ConfigureID": 1532223215940800512 |
| | | "ConfigureID": 0 |
| | | }, |
| | | "HangTian": { |
| | | "IsWriteLog": true, |
| | |
| | | } |
| | | }, |
| | | |
| | | "LinuxTest": { |
| | | "DataBase": { |
| | | "ConnectString": "PORT=5432;DATABASE=istation_linux_test;HOST=101.133.223.111;PASSWORD=Eventech2010;USER ID=postgres;" |
| | | }, |
| | | "Queue": { |
| | | "StoreQueueName": "linux_text_queue_name" |
| | | } |
| | | |
| | | }, |
| | | |
| | | "Operating": { |
| | | "NT": { |
| | | "Password": "666666" |
| | | } |
| | | }, |
| | | |
| | | "DataFile": { |
| | | "SaveFileUrl": "http://101.133.133.173:9019/", |
| | | "PdfFolder": "Report" |
| | | } |
| | | |
| | | |
| | | } |