summaryrefslogtreecommitdiff
path: root/698/CH8/EX8.5
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /698/CH8/EX8.5
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '698/CH8/EX8.5')
-rw-r--r--698/CH8/EX8.5/5_dunkerley_method.txt4
-rw-r--r--698/CH8/EX8.5/P5_dunkerley_method.sce31
2 files changed, 35 insertions, 0 deletions
diff --git a/698/CH8/EX8.5/5_dunkerley_method.txt b/698/CH8/EX8.5/5_dunkerley_method.txt
new file mode 100644
index 000000000..a7329ab2b
--- /dev/null
+++ b/698/CH8/EX8.5/5_dunkerley_method.txt
@@ -0,0 +1,4 @@
+w1 = 355.40933 rad/s
+w2 = 531.20460 rad/s
+wc= 295.4 rad/s
+Nc= 2820.8 rad/s \ No newline at end of file
diff --git a/698/CH8/EX8.5/P5_dunkerley_method.sce b/698/CH8/EX8.5/P5_dunkerley_method.sce
new file mode 100644
index 000000000..9b231d6ed
--- /dev/null
+++ b/698/CH8/EX8.5/P5_dunkerley_method.sce
@@ -0,0 +1,31 @@
+clc
+//Example 8.5
+// Dunkerley's Method
+
+//------------------------------------------------------------------------------
+//Given Data:
+
+W1=1250
+a11=6.213e-8
+W2=325
+a22=10.697e-8
+
+res5= mopen(TMPDIR+'5_dunkerley_method.txt','wt')
+
+w1=sqrt(9.81/(W1*a11))
+mfprintf(res5,'w1 = %0.5f rad/s\n',w1)
+
+w2=sqrt(9.81/(W2*a22))
+mfprintf(res5,'w2 = %0.5f rad/s\n',w2)
+
+wc=sqrt((w1^2 * w2^2)/(w1^2 + w2^2))
+mfprintf(res5,'wc= %0.1f rad/s\n',wc)
+
+Nc=(wc*60)/(2*%pi)
+mfprintf(res5,'Nc= %0.1f rad/s',Nc)
+
+mclose(res5);
+editor(TMPDIR+'5_dunkerley_method.txt')
+
+//------------------------------------------------------------------------------
+//--------------------------------End of program-------------------------------- \ No newline at end of file