Exemplo n.º 1
0
        // Got from AlpacaFinal / OSIPI.cs
        public void connect_Server(string Piservername)
        {
            PISDK.PISDK SDK = new PISDK.PISDK();            //Creates new instance of PI SDK
            PI_SERVER = SDK.Servers["ESMARTSERVER-PC"];     //Assign PI server to local machine [Piservername]
            PI_SERVER.Open(PI_SERVER.DefaultUser);          //Open connection through default user

            PISDK.PIValue PIconnect = new PISDK.PIValue();  //Create new instance of PI value
            PIconnect = (PISDK.PIValue)PI_SERVER.PIPoints["SP14VICE_Connection"].Data;
            rpiCONNECT = PIconnect.ToString();
        }
Exemplo n.º 2
0
        public void connect_Server(string Piservername)     // Got from AlpacaFinal / OSIPI.cs
        {
            PISDK.PISDK SDK = new PISDK.PISDK();            //Creates new instance of PI SDK
            PI_SERVER = SDK.Servers["ESMARTSERVER-PC"];     //Assign PI server to local machine [Piservername]
            PI_SERVER.Open(PI_SERVER.DefaultUser);          //Open connection through default user

            PISDK.PIValue PIconnect = new PISDK.PIValue();  //Create new instance of PI value
            PIconnect  = (PISDK.PIValue)PI_SERVER.PIPoints["SP14VICE_Connection"].Data;
            rpiCONNECT = PIconnect.ToString();
        }
Exemplo n.º 3
0
        /// <summary>
        /// Запись значения в тэг на временную метку.
        /// </summary>
        /// <param name="Tag">Тэг.</param>
        /// <param name="Timestamp">Временная метка.</param>
        /// <param name="Value">Значение.</param>
        private void Write(string Tag, string Timestamp, string Value)
        {
            if (WriteMode == "On" || WriteMode == "on" || WriteMode == "ON")
            {
                Log.Information("Запись значения в тэг: {Tag}", Tag);
                try
                {
                    PISDK.PISDK   PiSDK     = new PISDK.PISDK();
                    PISDK.Server  PiServer  = PiSDK.Servers[Program.IniFile["Service"]["PIServer"].StringValue];
                    PISDK.PIPoint PiPoint   = PiServer.PIPoints[Tag];
                    DateTime      timeStamp = DateTime.Parse(Timestamp);
                    PISDK.PIValue PiValue   = PiPoint.Data.Snapshot;
                    if (PiValue.Value.GetType().IsCOMObject)
                    {
                        switch (Value)
                        {
                        case "Конденсат":
                            Value = "СК";
                            break;

                        case "Дистиллят":
                            Value = "ДГКЛ";
                            break;

                        case "ТД":
                            Value = "Топливо дизельное";
                            break;
                        }
                    }
                    PiPoint.Data.UpdateValue(Value, timeStamp, PISDK.DataMergeConstants.dmReplaceDuplicates, null);
                    Log.Information("Записано значение: {Value}", Value);
                }
                catch (System.Exception Ex)
                {
                    Log.Error(Ex, "Ошибка записи значения: {Value} в тэг: {Tag}", Value, Tag);
                }
            }
            else
            {
                Log.Information("Запись отключена, в тэг: {Tag} значение {Value} не записано!", Tag, Value);
            }
        }
Exemplo n.º 4
0
        static void Main(string[] args)
        {
            bool ISDEBUGGING = Properties.Settings.Default.IS_DEBUG;

            Console.WriteLine("is debug set to: {0}", ISDEBUGGING);

            string piservername        = Properties.Settings.Default.pi_server_to_alter;
            string monitorPIPointName  = Properties.Settings.Default.monitor_tag_pending_events;
            string monitorPISErverNAme = Properties.Settings.Default.monitor_tag_pi_server;

            PISDK.PISDK    pisdk  = new PISDK.PISDK();
            PISDK.Server   piserv = pisdk.Servers[piservername];
            PISDK.PIPoints pips   = piserv.PIPoints;

            int i     = 0;
            int thisI = 0;


            //get the pending events pi point (have to connect to another PI server for this)
            PISDK.PISDK   moni_PISDK           = new PISDK.PISDK();
            PISDK.Server  moni_PIServer        = moni_PISDK.Servers[monitorPISErverNAme];
            PISDK.PIPoint pendingEventsPIPoint = moni_PIServer.PIPoints[monitorPIPointName];


            int pendingEvents = (int)pendingEventsPIPoint.Data.Snapshot.Value;

            Console.WriteLine("There are currently {0} pending events in the PI update manager", pendingEvents);
            System.Threading.Thread.Sleep(TimeSpan.FromSeconds(1));


            foreach (PISDK.PIPoint pipnt in pips)
            {
                try
                {
                    //Console.WriteLine(pipnt.Name);

                    PISDK.PointTypeConstants pt = pipnt.PointType;

                    if (pt == PISDK.PointTypeConstants.pttypFloat32 || pt == PISDK.PointTypeConstants.pttypFloat64 ||
                        pt == PISDK.PointTypeConstants.pttypInt16 || pt == PISDK.PointTypeConstants.pttypInt32)
                    {
                        //if integer then 0 else 3
                        int replacementVal = (pt == PISDK.PointTypeConstants.pttypFloat32 ||
                                              pt == PISDK.PointTypeConstants.pttypFloat64) ? 3 : 0;

                        Console.WriteLine("iteration {0}", i);

                        //only change tags which habe the defaulty setting (-5). OR if we are debugging, do all tags (for ease of development).
                        if (pipnt.PointAttributes["displaydigits"].Value == -5 || ISDEBUGGING)
                        {
                            Console.WriteLine("point type is of type, {0}, converting value to {1}, tagname:{2}", pt, replacementVal, pipnt.Name);
                            pipnt.PointAttributes.ReadOnly = false;
                            pipnt.PointAttributes["displaydigits"].Value = replacementVal;
                            thisI++;
                        }


                        if (thisI >= 200)
                        {
                            int pending_events_max = Properties.Settings.Default.pending_events_max;

                            Console.WriteLine(border_string);

                            Console.WriteLine("there have been 200 changes, check PIupdate manager pending events is less than {0}", pending_events_max);

                            bool leaveWhile = false;

                            while (!leaveWhile)
                            {
                                pendingEvents = (int)pendingEventsPIPoint.Data.Snapshot.Value;
                                Console.WriteLine("There are currently {0} pending events in the PI update manager, (max set to {1})", pendingEvents, pending_events_max);

                                //leave the while loop if there are less than X events pending
                                leaveWhile = (pendingEvents < pending_events_max);

                                System.Threading.Thread.Sleep(TimeSpan.FromSeconds(1));
                            }

                            Console.WriteLine(border_string);

                            thisI = 0;
                        }

                        i++;
                    }
                }

                catch (Exception e)
                {
                    Console.WriteLine("exception caused: {0}", e.Message);
                }

                i++;
            }
        }