diff options
Diffstat (limited to '698/CH8/EX8.5')
-rw-r--r-- | 698/CH8/EX8.5/5_dunkerley_method.txt | 4 | ||||
-rw-r--r-- | 698/CH8/EX8.5/P5_dunkerley_method.sce | 31 |
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 |