python project
python project
LOAD, MAXIMUM
AND ALL-DAY
EFFICIENCY OF A
TRANSFORMER
TEAM MEMBERS :
VISHWA R (21126)
YUVARAJ S (21318)
SANTHOSH KUMAR S (21316)
S.no Contents Page
No
3
1 Problem Description
3
2 Algorithm
4
3 Formula Used for the problem
5
4 Python Program
7
5 Input / Output
8
6 Inference
8
7 Result
PROBLEM DESCRIPTION :
Transformers are essential components in electrical power
systems, used for Efficient transmission and distribution of electrical
energy. The performance of a transformer is commonly evaluated
using efficiency metrics, particularly load efficiency, maximum
efficiency, and all-day efficiency.
The objective of this study is to analyze and compare
these three types of transformer efficiencies under different loading
conditions, determine the conditions for maximum efficiency, and
evaluate how load patterns influence all-day efficiency.
ALGORITHM:
Get the input parameters like rated power of transformer(kVA),
power factor, load percent, core and copper losses at full
load(kW).
Determine the load percent value for the both load and
maximum efficiency.
Get the input of load periods, factor and period time in hours
to calculate the all day efficiency in kilowatt hour(kWh).
Use the formula for each efficiency method which is given
below.
Perform calculations for given efficiency parameters and
complete the program execution.
FORMULA USED FOR THE PROBLEM:
Load efficiency:
Input = Rated of a transformer * power factor
Efficiency = (Output/Input) *100 = ((Input- total losses)/Input) *100
Total losses = Iron loss+ Copper loss
x = load percent value
Copper losses = (load percent value**2) * full load copper losses
Maximum efficiency:
Conditions for maximum efficiency:
k = Load factor = sqrt (Iron loss/copper loss)
Load kVA corresponding to max efficiency = Load factor * Full
Load kVA
All Day Efficiency:
Find the Copper loss for different load periods = (k **2) * full
load copper loss
Output energy = k* input * hours
All day efficiency = (Total output energy /(total output energy +
Total loss))* 100
PYTHON PROGRAM:
INPUT & OUTPUT:
INFERENCE:
1.Load Efficiency:
2. Maximum Efficiency:
3. All-Day Efficiency:
RESULT: