diff options
Diffstat (limited to '3802/CH11/EX11.2/Ex11_2.sce')
-rw-r--r-- | 3802/CH11/EX11.2/Ex11_2.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3802/CH11/EX11.2/Ex11_2.sce b/3802/CH11/EX11.2/Ex11_2.sce new file mode 100644 index 000000000..12f2b680b --- /dev/null +++ b/3802/CH11/EX11.2/Ex11_2.sce @@ -0,0 +1,20 @@ +//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex11_2.sce
+
+clc;
+clear;
+t=0.5; //pole pitch
+f=50;
+vmp=162;
+fd=100e3;
+vm=vmp*1e3/(60*60);
+pd=fd*vm;
+vs=2*t*f;
+s=(vs-vm)/vs;
+pcu=s*fd*vs;
+printf("\n The developed power by the motor=%d kw \n",pd/1000)
+printf("\n Secondary copper loss=%d kw \n",pcu/1000)
|