diff options
Diffstat (limited to '695/CH2/EX2.3/Ex2_3.sce')
-rwxr-xr-x | 695/CH2/EX2.3/Ex2_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/695/CH2/EX2.3/Ex2_3.sce b/695/CH2/EX2.3/Ex2_3.sce new file mode 100755 index 000000000..bec870e5c --- /dev/null +++ b/695/CH2/EX2.3/Ex2_3.sce @@ -0,0 +1,12 @@ +//Caption:Find the number of conductors
+//Exa:2.3
+clc;
+clear;
+close;
+P=8;//no. of poles
+A=8;
+Phy=40*10^-3;//flux in weber
+N=500;//speed in rpm
+E_g=250;//no-load voltage in volts
+Z=(E_g*60*A)/(P*N*Phy);
+disp(Z,'Number of conductors=')
\ No newline at end of file |