Skip to main content

GE SR750/760 Relay Tutorials - Part 1: Download and Install EnerVista 750/760 Setup

Welcome to the first part of GE SR750/760 Relay Tutorial series. In this tutorial, I will show you how to download and install EnerVista 750/760 Setup. Click the link below to see the introduction about the tutorial series.
GE SR750/760 Relay Tutorials
EnerVista 750/760 Setup is the main required software when connecting or testing the GE SR750/760 relay. In this software, the users are able to:
  • Program or configure the I/O of the relay
  • Enable and disable the protection elements depend on the requirements of the system
  • Monitor or check the actual data values when online and offline
  • Program of configure setting file when offline
  • Write the setting file into the relay
  • Simulate the operation of the I/O of the relay
  • Download or extract the relay settings and save to file
  • Modify single or multiple settings of the protection element online and offline
To download the software, GE website (www.gegridsolutions.com) will require you to register on their website. To get approved quickly, you must use your corporate/company email address.

Search it from google or any search engine that available in your computer and click "Enervista 750/760 Setup Software" to download the software


Or navigate to https://www.gegridsolutions.com/app/ViewFiles.aspx?prod=750&type=7 then click the link to download.


If you are not logged in, sign in to their website or create a new account to have an access


Click the download button and save to file.


The file name should be similar to this "750Setup7xx.exe" in this tutorial "750Setup746.exe".


Run the installer and follow the instruction.







Once installed, run "EnerVista 750 Setup" software located in you desktop or in your start menu.

Summary:

In this tutorial, you have learned how to download and install the EnerVista 750 Setup software.

In the next part, I will show you how to use EnerVista 750 Setup software. I will show you how to connect to the relay and change the current settings or upload/download the relay settings.

That's it. See you next time.


Part 2: Connect laptop to GE Multilin 750/760 Relay and Upload/Download Relay Settings

Comments

Popular posts from this blog

Install And Use Newly Created Import Filter In Omicron Test Universe

Welcome to my page. This is the second part of the Omicron Import Filter tutorial series. In this tutorial, I will show you how install  and use the Import Filter that we've created in the previous tutorial in this series using two methods.  The first one via Test Object and the second one is via script. Open the Visual Studio project called MyImportFilter that we created in the first part of tutorial which can be found here ( Omicron Import Filter - Create New Filter ). Once the project opened, right click on the project at the solution explorer the click Open Folder in File Explorer. The project file directory will open. Open the  bin\Debug folder and you will find the two files in that folder ( MyImportFilter.dll and  SampleFilter.xriofilter ). Create new folder in that directory and set the folder name to  MyImportFilter . Move the  MyImportFilter.dll file to the  MyImportFilter folder then, copy the  MyImportFilter folder and the  Sa...

Processing The Relay Setting Parameters In Omicron Import Filter

Welcome to my page and welcome to the fifth part of Omicron Import Filter tutorial series. In this tutorial, I will show you how to process the relay setting parameters that to be import in the Xrio converter. 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 ...

Micom SE Studio1 Import Filter - Creating Class Module For Setting File Process

Welcome back to  Micom SE Studio1 Import Filter tutorial series. In the previous tutorial, I've shown you how to create user interface. Click this link  Micom SE Studio1 Import Filter - Creating User Interface (UI) In this series, I will show you how to add class module that responsible for setting file processing. Meaning, the relay has a setting configuration which can be exported in readable file like text file, xml file or csv file & etc. In this tutorial, I'm going to use text file (.txt). Now, add new class in the SEStudio1 folder and name it with SEStudio1Import.vb . All the data from setting file will be process in this class. Copy the code below and paste it it to import section. Imports System.IO Imports OMXRioData Next,  we need to declare some names, functions and procedures to be used in this class module. Copy the codes below and paste them inside the SEStudio1Import.vb . Private _Document As OMXRioData.IAutoXRioDocument 'Storage of XRIO document...