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 /2345/CH6/EX6.6/Ex6_6.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 '2345/CH6/EX6.6/Ex6_6.sce')
-rwxr-xr-x | 2345/CH6/EX6.6/Ex6_6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2345/CH6/EX6.6/Ex6_6.sce b/2345/CH6/EX6.6/Ex6_6.sce new file mode 100755 index 000000000..0173f3834 --- /dev/null +++ b/2345/CH6/EX6.6/Ex6_6.sce @@ -0,0 +1,16 @@ +//Finding core loss
+//Example 6.6(pg 214)
+clc
+clear
+v=76300//volume in c.c
+P=8// no of poles
+N=375//rpm
+f=P*N/120//freqency in c/s
+Bmax=12000//max. flux density in lines/cm^2
+n=0.002//(assumed)
+d=7.8//densityin gm/c.c
+l=1.7//loss in watts per kg
+Hl=n*v*f*(Bmax^1.6)*(10^-7)//Hysteresis loss in Watts
+Al=v*d*l/1000//Additional loss under particular running conditions
+Tl=Hl+Al//total core loss
+printf('Thus the total core loss is %4.0f Watts',Tl)
|