diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3760/CH1/EX1.2 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3760/CH1/EX1.2')
-rw-r--r-- | 3760/CH1/EX1.2/Ex1_2.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3760/CH1/EX1.2/Ex1_2.sce b/3760/CH1/EX1.2/Ex1_2.sce new file mode 100644 index 000000000..dce16da4e --- /dev/null +++ b/3760/CH1/EX1.2/Ex1_2.sce @@ -0,0 +1,15 @@ +clc;
+f=50; // frequency in hertz
+B=1.2; // maximum flux density in Tesla
+A=75*10^-4; // net core area in m^2
+E1=220; // primary side voltage in volts
+E2=600; // secondary side voltage in volts
+E3=11; // tertiary side voltage in volts
+n3=round(E3/2); // number of turns in half of the tertiary winding
+Et=round(sqrt(2)*%pi*50*B*A); // calculating emf per turn
+N3=Et*n3; // total number of turns in tertiary winding
+printf('total number of turns in tertiary winding is %f\n',N3);
+N2=round(E2*(n3/E3)); // total number of turns in secondary winding
+printf('total number of turns in secondary winding is %f\n',N2);
+N1=round(E1*(n3/E3)); // total number of turns in secondary winding
+printf('total number of turns in primary winding is %f',N1);
|