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 /3647/CH9/EX9.6/Ex9_6.sce | |
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 '3647/CH9/EX9.6/Ex9_6.sce')
-rw-r--r-- | 3647/CH9/EX9.6/Ex9_6.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3647/CH9/EX9.6/Ex9_6.sce b/3647/CH9/EX9.6/Ex9_6.sce new file mode 100644 index 000000000..0f0ab5ec5 --- /dev/null +++ b/3647/CH9/EX9.6/Ex9_6.sce @@ -0,0 +1,24 @@ +//Solutions to Problems In applied mechanics +//A N Gobby +clear; + +clc +//initialisation of variables +d=30//in +w=50//lbf ft +d1=10//in +G=12*10^6//lbf/in^2 +T1=50//lbf ft +T2=16.7//lbf ft +J=4810//lbf ft +TA=w/3//lbf ft +Tab=w-TA//lbf ft +//CALCULATIONS +Ta=Tab-TA//lbf ft +T3=Tab-TA //lbf ft +Qmax=T3*G*(3/8)/(%pi/32)*(3/4)^4//lbf/in^2 +M=(T3*12*d1)/(%pi/4*(3/4)^4*G)*(180/%pi)//degree +//RESULTS +printf('The couples required to hold the ends=% f lbf ft',Ta) +printf('The magnitude of the greatest shear stress set up in the shaft=% f lbf/in^2',Qmax) +printf('the angular rotation in degree of the section=% f degree',M)
\ No newline at end of file |