summaryrefslogtreecommitdiff
path: root/2345/CH6/EX6.5/Ex6_5.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2345/CH6/EX6.5/Ex6_5.sce
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 '2345/CH6/EX6.5/Ex6_5.sce')
-rwxr-xr-x2345/CH6/EX6.5/Ex6_5.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2345/CH6/EX6.5/Ex6_5.sce b/2345/CH6/EX6.5/Ex6_5.sce
new file mode 100755
index 000000000..647dd2622
--- /dev/null
+++ b/2345/CH6/EX6.5/Ex6_5.sce
@@ -0,0 +1,14 @@
+//Finding loss and frequency
+//Example 6.5(pg 214)
+clc
+clear
+P=4//no of poles
+N=1600// Speed in rpm
+f=P*N/120//Frequency of magnetic reversal
+V=5400//volume
+d=7.5//density
+m=(V*d)/1000//Mass of armature in kg
+L=1.76//Loss in W/kg
+Cl=L*m//Core loss in Watts
+printf('Thus Frequency of magnetic reversal is %3.2f c/s',f)
+printf('\n and Core loss is %3.2f Watts',Cl)