summaryrefslogtreecommitdiff
path: root/695/CH3/EX3.3/Ex3_3.txt
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /695/CH3/EX3.3/Ex3_3.txt
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 '695/CH3/EX3.3/Ex3_3.txt')
-rwxr-xr-x695/CH3/EX3.3/Ex3_3.txt13
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