summaryrefslogtreecommitdiff
path: root/1445/CH7/EX7.11/Ex7_11.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1445/CH7/EX7.11/Ex7_11.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1445/CH7/EX7.11/Ex7_11.sce')
-rw-r--r--1445/CH7/EX7.11/Ex7_11.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/1445/CH7/EX7.11/Ex7_11.sce b/1445/CH7/EX7.11/Ex7_11.sce
new file mode 100644
index 000000000..df17e61c0
--- /dev/null
+++ b/1445/CH7/EX7.11/Ex7_11.sce
@@ -0,0 +1,28 @@
+//CHAPTER 7- SINGLE PHASE TRANSFORMER
+//Example 11
+
+disp("CHAPTER 7");
+disp("EXAMPLE 11");
+
+//2200/220 V 44 kVA transformer with 50 turns in the secondary
+//VARIABLE INITIALIZATION
+va=44000; //
+v1=2200; //primary voltage in Volts
+v2=220; //secondary voltage in Volts
+N2=50; //turns in secondary coil
+
+//SOLUTION
+// N1/N2=V1/V2
+N1=N2*(v1/v2);
+disp("SOLUTION (a)");
+disp(sprintf("The no. of turns on HT side is %f",N1));
+//
+//since losses are negligible, input=output, V1.I1=V2.I2
+I1=va/v1;
+I2=va/v2;
+disp("SOLUTION (b)");
+disp(sprintf("The primary full load current is %.0f Amp",I1));
+disp(sprintf("The secondary full load current is %.0f Amp",I2));
+disp(" ");
+//
+//END