summaryrefslogtreecommitdiff
path: root/1445/CH7/EX7.31/Ex7_31.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.31/Ex7_31.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.31/Ex7_31.sce')
-rw-r--r--1445/CH7/EX7.31/Ex7_31.sce29
1 files changed, 29 insertions, 0 deletions
diff --git a/1445/CH7/EX7.31/Ex7_31.sce b/1445/CH7/EX7.31/Ex7_31.sce
new file mode 100644
index 000000000..0150a59be
--- /dev/null
+++ b/1445/CH7/EX7.31/Ex7_31.sce
@@ -0,0 +1,29 @@
+//CHAPTER 7- SINGLE PHASE TRANSFORMER
+//Example 31
+
+disp("CHAPTER 7");
+disp("EXAMPLE 31");
+
+//single phase transformer having 400 primary and 1000 secondary turns
+//VARIABLE INITIALIZATION
+N1=400;
+N2=1000;
+coreA=60; //net core area in cm^2
+v1=500; //primary voltage in Volts
+f=50; //frequency
+
+//
+//SOLUTION
+//v1=E1=4.44.Φm.N1.f Volts
+phiM=v1/(4.44*N1*f);
+//flux density Bm=Φm/area
+Bm=phiM/coreA; //lines per cm
+//voltage per turn
+vpt=v1/N1;
+v2=N2*vpt;
+//
+disp(sprintf("The maximum flux density is %.3fx10^-5 Wb per cm^2",Bm*10^5));//text book anser is 9383 lines per cm^2
+disp(sprintf("The secondary voltage is %.0f V",v2));
+disp(" ");
+//
+//END