summaryrefslogtreecommitdiff
path: root/Working_Examples/2777/CH3/EX3.4
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/2777/CH3/EX3.4')
-rwxr-xr-xWorking_Examples/2777/CH3/EX3.4/Ex3_4.sce31
1 files changed, 31 insertions, 0 deletions
diff --git a/Working_Examples/2777/CH3/EX3.4/Ex3_4.sce b/Working_Examples/2777/CH3/EX3.4/Ex3_4.sce
new file mode 100755
index 0000000..337d1dc
--- /dev/null
+++ b/Working_Examples/2777/CH3/EX3.4/Ex3_4.sce
@@ -0,0 +1,31 @@
+
+// ELECTRICAL MACHINES
+// R.K.Srivastava
+// First Impression 2011
+// CENGAGE LEARNING INDIA PVT. LTD
+
+// CHAPTER : 3 : TRANSFORMERS
+
+// EXAMPLE : 3.4
+
+clear ; clc ; close ; // Clear the work space and console
+
+
+// GIVEN DATA
+
+S = 1.5; // Transformer Rating in KVA
+E1 = 220; // HV side voltage in volts
+E2 = 40; // LV side voltage in volts
+
+
+// CALCULATION
+
+Ihv = (S * 10 ^ 3)/E1; // Rated HV side Curent in Amphere
+Ilv = (S * 10 ^ 3)/E2; // Rated lV side Curent in Amphere
+
+
+// DISPLAY RESULTS
+
+disp("EXAMPLE : 3.4 : SOLUTION :-") ;
+printf("\n (a) Rated HV side Curent , Ihv = %.2f A \n ",Ihv);
+printf("\n (b) Rated LV side Curent , Ilv = %.1f A \n",Ilv);