Articles on Trending Technologies

Technical articles with clear explanations and examples

What is a Variable Frequency Drive (VFD)?

Manish Kumar Saini
Manish Kumar Saini
Updated on 10-Jun-2024 908 Views

A VFD (Variable Frequency Drive) is a power electronic device used for controlling the operation of electric motors, especially induction motors. It is a type of motor drive whose working principle is based on the variation of supply voltage and frequency. It is also known by many other names such as variable speed drive, AC drive, adjustable frequency drive, adjustable speed drive, micro-drive, etc. VFD is primarily used for controlling the speed of an induction motor by varying the frequency and voltage of the input supply. In this article, we will discuss the basics, working, advantages, disadvantages, and applications of ...

Read More

What is an Electrical Isolator and why is it used?

Manish Kumar Saini
Manish Kumar Saini
Updated on 10-Jun-2024 3K+ Views

In electrical power systems, an isolator is a type of switchgear device which is mainly used for ensuring that the circuit is completely disconnected from the source of power supply. Since its main function is to provide isolation in the circuit, hence it is termed as an isolator. However, it is also known as a disconnector. It is mainly used in substations, distribution feeders, industrial power supplies, etc. By providing a visible disconnection in the circuit, isolators ensure the safety during maintenance work. Read this article to learn more about isolators, its types, working, advantages, limitations, and applications. ...

Read More

Ring Main Unit (RMU) - Components, Functions, Types and Applications

Manish Kumar Saini
Manish Kumar Saini
Updated on 10-Jun-2024 6K+ Views

Ring Main Unit (RMU) is a switchgear device used in secondary distribution systems, i.e., between the distribution substation and the end consumer to ensure continuous power supply and isolate the faulty section from the network. The main purpose of using a ring main unit is to provide an uninterrupted power supply to consumers even in fault conditions. It is basically a small sized switchgear unit enclosed completely within a cabinet and consists of disconnectors, fuses, and circuit breakers. Read this article to learn the structure, types, advantages, and applications of a ring main unit (RMU). What is a Ring ...

Read More

What is a Capacitor Bank and why is it used?

Manish Kumar Saini
Manish Kumar Saini
Updated on 10-Jun-2024 3K+ Views

In electrical substations, an interconnected system of multiple capacitors is used for improving the power factor of the system, this interconnected system of capacitors is referred to as a capacitor bank. In short, a capacitor bank is device which consists of multiple capacitors connected in parallel or series and provide reactive power for improving the power factor of the electrical system. Capacitor banks are important components in utility and industrial substations as they are useful in improving power factor and efficiency of the power supply system. Read this article to learn the basic concepts related to a capacitor bank, ...

Read More

Difference between AB Switch and Isolator

Manish Kumar Saini
Manish Kumar Saini
Updated on 10-Jun-2024 1K+ Views

In electrical power systems, different types of switchgear devices are used such as circuit breakers, AB switches, isolators for switching and protection purposes. These switching devices play an important role in power systems. There are two common types of switch devices used in electrical power systems are AB Switch (Air Break Switch) and Isolator. Although, the primary purpose of both AB switch and isolator is similar, but they are completely from each other in construction, operation, and many other aspects. For an electrical engineer, it is very essential to understand the differences between AB switch and isolators to design ...

Read More

Residual Current Circuit Breaker (RCCB) - How It Works

Manish Kumar Saini
Manish Kumar Saini
Updated on 10-Jun-2024 1K+ Views

Residual Current Circuit Breaker (RCCB) is a type of circuit breaker used in electrical circuits for protection purposes. The primary function of an RCCB is to detect a leakage in the circuit current. If there is any leakage in the current, the RCCB can interrupt the circuit and prevent the fault to be happened. Read this article to understand the functions, working principle, advantages, and applications of RCCB. What is an RCCB? RCCB (Residual Current Circuit Breaker) is a protecting device that detects any leakage current in the circuit and interrupt the circuit current. When a fault occurs in ...

Read More

How to get ArrayList to ArrayList and vice versa in java?

Maruthi Krishna
Maruthi Krishna
Updated on 07-Jun-2024 1K+ Views

ArrayList to ArrayList Instead of the typed parameter in generics (T) you can also use “?”, representing an unknown type. These are known as wild cards you can use a wild card as − Type of parameter or, a Field or, a Local field. Using wild cards, you can convert ArrayList to ArrayList as − ArrayList stringList = (ArrayList)(ArrayList)(list); Example import java.util.ArrayList; import java.util.Iterator; import java.util.ListIterator; public class ArrayListExample { public static void main(String args[]) { //Instantiating an ArrayList object ...

Read More

Java Program to Sort 2D Array Across Columns

Rudradev Das
Rudradev Das
Updated on 31-May-2024 7K+ Views

In the field of data structure, the vector is a growable class array of a particular object. The vector class falls in the legacy class which is fully compatible with the collections. In java.util package, the List interface can use all the methods listed here. Here is the initial capacity is 10 and the general method is: Vector v = new Vector(); The compare() method accepts two parameters and then compare each other by using Java environment logic. In this article today, we will learn about the sorting process of a 2D array set across the columns. Algorithm to ...

Read More

Java Program to Find out the Area and Perimeter of Rectangle using Class Concept

Shiva Keerthi
Shiva Keerthi
Updated on 31-May-2024 8K+ Views

Java Language is one of the most used popular object - oriented programming language in present world. Class concept is one of the most important feature in Object - oriented languages. A Class is a like a blue print of an object. For example, when we want to build a house we first create a blue print of the house in other words we create a plan showing how we are going to build the house. Based on the plan we can create a number of houses. Similarly using class, we can create a number of objects. A class ...

Read More

Java Program to Implement the RSA Algorithm

Shubham Vora
Shubham Vora
Updated on 31-May-2024 6K+ Views

The RSA name is given by their inventors which is used to encrypt the text with high security. The RSA technique is one of the most used techniques to encrypt text, as it is the asymmetric encryption algorithm. It encrypts the text by utilizing the mathematical properties of the prime numbers. In the RSA algorithm, the sender and receiver have private keys. Also, a common public key exists, which the sender shares with the receiver. The sender encrypts the plain text using their own public and private key, and the receiver decrypts the message using their private and public ...

Read More
Showing 32191–32200 of 61,297 articles
Advertisements