diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /431/CH3/EX3.3/EX3_3.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '431/CH3/EX3.3/EX3_3.sce')
-rwxr-xr-x | 431/CH3/EX3.3/EX3_3.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/431/CH3/EX3.3/EX3_3.sce b/431/CH3/EX3.3/EX3_3.sce new file mode 100755 index 000000000..cd3da852a --- /dev/null +++ b/431/CH3/EX3.3/EX3_3.sce @@ -0,0 +1,18 @@ +//calculating induced emf and maximium flux density
+//Chapter 3
+//Example 3.3
+//page 197
+clear;
+clc;
+disp("Example 3.3")
+V1=230; //primary voltage in volts
+f=50; //frequency in hertz
+N1=100; //number of primary turns
+N2=400; //number of secondary turns
+A=250*10^(-4); //cross section area of core in m^2
+disp("since at no-load E2=V2")
+E2=(V1*N2)/N1;
+printf("induced secondary winding,E2=%dV",E2);
+phi=E2/(4.44*f*N2);
+Bm=phi/A;
+printf("\nMaximium flux density in the core=%fWb/m^2",Bm)
\ No newline at end of file |