diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3772/CH7/EX7.8 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3772/CH7/EX7.8')
-rw-r--r-- | 3772/CH7/EX7.8/Ex7_8.sce | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/3772/CH7/EX7.8/Ex7_8.sce b/3772/CH7/EX7.8/Ex7_8.sce new file mode 100644 index 000000000..9a99c8d41 --- /dev/null +++ b/3772/CH7/EX7.8/Ex7_8.sce @@ -0,0 +1,40 @@ +// Problem no 7.8,Page no.189 + +clc;clear; +close; + +L_BC=1.8 //m //Length of BC +L_AB=1.2 //m //Length of AB +sigma_s=70 //MPa //shear stress +d_1=0.05 //m //diameter of BC +d_2=0.1 //m //diameter of AB +r_BC=0.025 //cm //Radius of BC + +//Calculations + +I_p_BC=%pi*32**-1*d_1**4 //m**4 //Polar M.I of BC +I_p_AB=%pi*32**-1*d_2**4 //m**4 //Polar M.I od AB + +//For BC +//theta_1=T*L_BC*(G*10**9*I_p_BC)**-1 //Angle of Twist of C relative to B +//After substituting and simplifying value, we get + +//theta_1=3.4923*10**-5*T + +//For AB +//theta_2=T*L_AB*(G*10**9*I_p_AB)**-1 //Angle of Twist of B relative to A +//After substituting and simplifying value, we get + +//theta_2=1.45513*T + +//sigma_s=T*R*(I_P)**-1 //The max shear stress in BC + +//After substituting and simplifying value in above equation, we get + +T=sigma_s*10**6*I_p_BC*r_BC**-1 +theta_1=3.4923*10**-5*T +theta_2=1.45513*10**-6*T +theta_c=theta_1-theta_2 //radian //total angle of twist + +//Result +printf("Total angle of Twist is %.3f radian",theta_c) |