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 /3131/CH19/EX19.1 | |
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 '3131/CH19/EX19.1')
-rw-r--r-- | 3131/CH19/EX19.1/Ex19_1.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/3131/CH19/EX19.1/Ex19_1.sce b/3131/CH19/EX19.1/Ex19_1.sce new file mode 100644 index 000000000..95fd683c5 --- /dev/null +++ b/3131/CH19/EX19.1/Ex19_1.sce @@ -0,0 +1,28 @@ +clear all; clc; +disp("Ex 19_1") +a=8//rad/sec +b=0.25//m +v_G_disk=a*b +printf('\n\nSince the disk is rotating about a fixed axis through point B then v_g = %0.0f m/s',v_G_disk) +m=10//kg +H_G=0.5*m*b^2*a +printf('\n\n(clockwise)+H_G = %0.2f kgm^2/s',H_G) +H_B=H_G+m*v_G*b +printf('\n\n(clockwise)+H_B = %0.2f kgm^2/s',H_B) +disp(" ") +disp("I_B=(3/2)*m*r^2") +H_B_new=(3/2)*m*b^2*a +printf('\n\n(clockwise)+H_B = %0.2f kgm^2/s',H_B_new) +disp(" ") +disp("The bar undergoes General Plane Motion") +//Refer figure 19-c +c=3.464//m +w=v_G_disk/c +printf('\n\nw = %0.4f rad/s',w) +v_G_bar=w*v_G +printf('\n\nFor the bar :- v_G = %0.3f m/s',v_G_bar) +H_G_new=(1/12)*5*4^2*w +printf('\n\nFor the bar :- (clockwise)+H_G = %0.2f kgm^2/s',H_G_new) +//Moments of I_Gw and m.v_G about the IC yield +H_IC=H_G_new+2*5*v_G_bar +printf('\n\n(clockwise)+H_IC = %0.1f kgm^2/s',H_IC) |