blob: 28b8960f2b14a52054ae1b65b145bf16fbf80c62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Calculating Efficiency using Sumpner test
clc;
clear;
P=200*(10^3);
W1= 4*(10^3); // Total iron loss for both the transformers
W2= 6*(10^3); // Total copper loss for both the transformers
n=P*100/(P+(W1/2)+(W2/2));// Efficiency
printf('The Efficiency of each transformer at full load = %f percent \n',n)
|