From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1319/CH5/EX5.13/5_13.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 1319/CH5/EX5.13/5_13.sce (limited to '1319/CH5/EX5.13') diff --git a/1319/CH5/EX5.13/5_13.sce b/1319/CH5/EX5.13/5_13.sce new file mode 100644 index 000000000..28b8960f2 --- /dev/null +++ b/1319/CH5/EX5.13/5_13.sce @@ -0,0 +1,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) -- cgit