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.1/Ex3_1.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 '695/CH3/EX3.1/Ex3_1.sce')
-rwxr-xr-x | 695/CH3/EX3.1/Ex3_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/695/CH3/EX3.1/Ex3_1.sce b/695/CH3/EX3.1/Ex3_1.sce new file mode 100755 index 000000000..b84da5f45 --- /dev/null +++ b/695/CH3/EX3.1/Ex3_1.sce @@ -0,0 +1,16 @@ +//Caption:Determine the (a)number of turns of primary and secondary windings (b)emf per turn
+//Exa:3.1
+clc;
+clear;
+close;
+A=500*10^-4;//in m^2
+B_max=1.5;//in tesla
+f=50;//in Hz
+E_1=5000;//in volts
+E_2=500;//in volts
+S_f=0.85;//Stacking factor
+N_1=int(E_1/(4.44*f*B_max*A*S_f));
+disp(N_1,'(a)Number of turns in primary winding=');
+N_2=int(E_2*N_1/E_1);
+disp(N_2,'Number of turns in secondary winding=');
+disp(E_1/N_1,'(b)Emf per turn (in Volts)=');
\ No newline at end of file |