Skip to main content

GE SR750/760 Relay Tutorials


Welcome to another series of tutorials called GE SR750/760 Relay Tutorials. In this tutorial, I will show you how to program, configure and test the relay. I will show also how to test the relay using Omicron CMC test set with step by step procedure.

GE Multilin SR750/760 relay is a multifunction relay for transmission lines or feeders. This relay has a multiple built-in protection elements like overcurrent, over/undervoltage, under/overfrequency, breaker failure, autorecloser and etc.

There are many ways or technique on how to test this type of relay. In this tutorial, I will show you how do I test this relay in my own way to shorten the time of testing or to save time, in short, efficient. I may be disabled some elements during testing but I will try to avoid it by using the right test module on the Omicron Control Center (OCC) document. Yes, I'm going to use OCC because I want to show you how to make XRIO parameters during testing to save it as a test template once I finished the relay testing so that I can use it in the future.

This tutorial will be divided into many parts and detailed procedures. So, to view all parts of this tutorial, goto Categories menu on the left side and click "GE SR750/760 Relay Tutorials". This will display all parts for this tutorial series. Or navigate to this page and click the desired tutorial link listed below.


Comments

Popular posts from this blog

Micom SE Studio1 Import Filter - Creating User Interface (UI)

Welcome to my page and welcome to the continuation of Omicron Import Filter tutorial series. In this tutorial, I will show you how to create the actual import filter fom Micom relays. In this tutorial, we will focus on the Visual Studio program. We're going to modify the codes in our project called MyImportFilter that we've created in the previous tutorial.  Download the project in this link  MyImportFilter - Process Relay Setting Parameters . Extract and open the project. Once the project is loaded, add New Folder inside the project and set the name to SEStudio1. We need this to make organize our project class filter.  SE Studio 1 stands for Schneider Electric Studio 1 which is the software that used in communicating MiCOM relays particularly P12x series. And yes we're going to create a new import filter and user interface form MiCOM P12x series relay. I think this will applied to other MiCOM P series relay. Add a new Form inside the  SEStudio1 folder  and set the name to

Write An Encrypted Text File In Visual Basic

There are many ways to encrypt text or data. In this tutorial, DESCryptoServiceProvider class to encrypt and decrypt strings using the cryptographic service provider version of the Triple Data Encryption Standard algorithm. The use encryption to protect secret data and to make data unreadable by unauthorized users. Creating encryption wrapper Open the previous project from this tutorial  Write Text To File In Visual Basic  then rename it to WriteTextToFileWithEncryptionVB or create a new project. I recommend to open the existing project to easily follow this tutorial. Create the Encryption3DesWrapper class to implement the encryption and decryption methods. 1 2 3 Public NotInheritable Class Encryption3DesWrapper End Class Add an import of the cryptography namespace to the start of the file that contains the Encryption3DesWrapper class. 1 2 3 4 5 Imports System.Security.Cryptography Public Class Encryption3DesWrapper End Class In the Encryption3DesWr