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 /695/CH3/EX3.3/Ex3_3.txt | |
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 '695/CH3/EX3.3/Ex3_3.txt')
-rwxr-xr-x | 695/CH3/EX3.3/Ex3_3.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/695/CH3/EX3.3/Ex3_3.txt b/695/CH3/EX3.3/Ex3_3.txt new file mode 100755 index 000000000..dcff2f31e --- /dev/null +++ b/695/CH3/EX3.3/Ex3_3.txt @@ -0,0 +1,13 @@ +//Caption:Determine the number of turns of primary and secondary windings
+//Exa:3.3
+clc;
+clear;
+close;
+Phy_max=7.82*10^-3;//in webers
+f=50;//in Hz
+E_1=5000;//in volts
+E_2=500;//in volts
+N_1=int(E_1/(4.44*f*Phy_max));
+disp(N_1,'Number of turns in primary winding=');
+N_2=int(E_2*N_1/E_1);
+disp(N_2,'Number of turns in secondary winding=');
\ No newline at end of file |