Advantages and Disadvantages of DC and AC Transmission

Manish Kumar Saini
Updated on 11-Feb-2022 11:04:03

31K+ Views

Electric power can be transmitted either by AC transmission system (i.e. the voltage and current are alternating) or DC transmission system (i.e. the voltage and current are direct or unidirectional). Each transmission system has its own advantages and disadvantages. Therefore, we need to discuss the technical advantages and disadvantages of the AC and DC transmission systems so that we can select the right system for the electric power transmission.AC Transmission SystemThe AC transmission system is the one in which the alternating current is employed for the transmission of electric power. Nowadays, electric power is almost generated, transmitted and distributed in ... Read More

Find the Number of Islands Using Disjoint Set in C++

sudhir sharma
Updated on 11-Feb-2022 10:58:15

590 Views

In this problem, we are given a 2D binary matrix. Our task is to find the number of islands Using DFS.Island is a ground of 1 or more connected 1’s in the matrix.Let’s take an example to understand the problem, Inputbin[][] = {{ 1 0 0 0}    {0 1 0 1}    {0 0 0 0}    {0 0 1 0}}Output3 ExplanationIslands are :    bin00 - bin11    bin13    bin32Solution ApproachTo find the island from a binary matrix using a disjoint set data structure. To find island count, we will traverse the matrix and do union of ... Read More

Components of a Typical Gas Turbine Power Plant

Manish Kumar Saini
Updated on 11-Feb-2022 10:56:28

9K+ Views

A gas turbine power plant is the type of power generating station in which gas turbine is used as the prime mover for the generation of electrical energy.The schematic diagram of a gas turbine power plant is shown in the figure.The main components of a typical gas turbine power plant are as follows −CompressorRegeneratorCombustion ChamberGas TurbineAlternatorStarting MotorCompressorThe compressor is an apparatus used to increase the pressure of air taken from the atmosphere. In gas turbine power plants, rotatory type compressors are generally used.The air at atmospheric pressure is drawn by the compressor through an air filter which removes the dust ... Read More

What is Electricity Tariff

Manish Kumar Saini
Updated on 11-Feb-2022 10:53:41

14K+ Views

Electricity TariffThe electricity tariff is defined as the rate at which the electrical energy is sold to a consumer.However, the tariff should include the total cost of producing and supplying electrical energy plus the profit to the power company. In practice, the tariff cannot be same for all types of consumers because the cost of production of electrical energy depends upon the magnitude of electrical energy consumed by the user and his load conditions. Therefore, the tariff is fixed by considering the different types of consumers such as domestic, industrial and commercial, etc.Objective of TariffLike any other product, the electrical ... Read More

Effect of Load Power Factor on Efficiency and Regulation

Manish Kumar Saini
Updated on 11-Feb-2022 10:51:53

5K+ Views

The power factor of the load connected to the power system considerably affects the voltage regulation and efficiency of a transmission line.Effect of Load Power Factor on Voltage RegulationThe expression for percentage voltage regulation of a transmission line, when a load of lagging power factor is connected to the system, is given by, $$\mathrm{\%\:Voltage \:Regulation\:=\:\frac{\mathit{IR}\:cos\:\phi _{\mathit{R}}\:+\:\mathit{IX_{\mathit{L}}}cos\:\phi _{\mathit{R}} }{\mathit{V_{\mathit{R}}}}\:\times \:100\%\:\:\:...\left ( 1 \right )}$$Where, suffix R denotes the receiving end quantities.Also, the percentage voltage regulation for leading power factor is given by, $$\mathrm{\%\:Voltage \:Regulation\:=\:\frac{\mathit{IR}\:cos\:\phi _{\mathit{R}}\:-\:\mathit{IX_{\mathit{L}}}cos\:\phi _{\mathit{R}} }{\mathit{V_{\mathit{R}}}}\:\times \:100\%\:\:\:...\left ( 2 \right )}$$Therefore, from equations (1) and (2), the following points can ... Read More

Effects of Variable Load on Power Stations

Manish Kumar Saini
Updated on 11-Feb-2022 10:38:24

3K+ Views

Variable Load on Power StationThe load on an electric power system changes from time to time due to uncertain demands of the consumers, this variation in load of a power station is termed as variable load on power station.An electric power station is designed to meet the load requirements of the consumers. From the standpoint of equipment needed and operating routine, an ideal load on a power station would be of constant magnitude and of steady duration.However, in actual practice, such a steady load on the power station cannot be realised. It is because the consumers require different blocks of ... Read More

Causes and Disadvantages of Low Power Factor

Manish Kumar Saini
Updated on 11-Feb-2022 10:35:30

10K+ Views

Power FactorThe cosine of angle between voltage and current in an AC circuit is called the power factor of the circuit. In other words, the power factor is defined as the ratio of active power to the apparent power in the circuit, i.e., $$\mathrm{Power\: factor, cos\:\phi\:=\:\frac{Active\: power\: (in \:Watts)}{Apparent\: power\: (in\: VA)}}$$Where, $\phi$ is the power factor angle.Causes of Low Power FactorFrom the economic point of view, the low power factor of the load connected to a power system is undesirable. The main causes of low power factor are given as follows −The AC electric motors consist of inductive winding. ... Read More

Find the Number of Islands Using DFS in C++

sudhir sharma
Updated on 11-Feb-2022 10:27:51

344 Views

In this problem, we are given a 2D binary matrix. Our task is to Find the number of islands Using DFS.Island is a ground of 1 or more connected 1’s in the matrix.Let’s take an example to understand the problem, Input : bin[][] = {{ 1 0 0 0}    {0 1 0 1}    {0 0 0 0}    {0 0 1 0}} Output : 3 ExplanationIslands are −bin00 - bin11bin13bin32 Solution ApproachTo solve the problem using DFS, we will use the DFS technique for exploring all the neighbours (maximum possible 8 of a number in the matrix) and ... Read More

Find Nth Even Fibonacci Number in C++

sudhir sharma
Updated on 11-Feb-2022 07:17:27

616 Views

In this problem, we are given an integer value N. Our task is to find Nth Even Fibonacci Number.Fibonacci Series generates subsequent number by adding two previous numbers. The Fibonacci series starts from two numbers − F0 & F1. The initial values of F0 & F1 can be taken 0, 1 or 1, 1 respectively.Let’s take an example to understand the problem, Input : N = 4 Output : 144Solution ApproachA simple solution to the problem is using the fact that every third number in the fibonacci sequence is even and the sequence of even numbers also follows the recursive ... Read More

Numpy Matrix Method in Python

Syed Abeed
Updated on 11-Feb-2022 06:41:54

204 Views

The numpy.matrix method is used to interpret a given input as a matrix. It returns a matrix from an array-like object. Its syntax is as follows −numpy.matrix(data, dtype=None, copy=bool)where, data - It is the input data.dtype - It represents the data type of the output matrix.copy - If the input data is already an ndarray, then this flag copy determines whether the data is to be copied (default behavior), or whether a view is to be constructed.Example 1Let us consider the following example −# import numpy library import numpy as np # matrix function y = np.matrix([[4, 5], [7, ... Read More

Advertisements