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 /3705/CH6/EX6.9/Ex6_9.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 '3705/CH6/EX6.9/Ex6_9.sce')
-rw-r--r-- | 3705/CH6/EX6.9/Ex6_9.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3705/CH6/EX6.9/Ex6_9.sce b/3705/CH6/EX6.9/Ex6_9.sce new file mode 100644 index 000000000..f41c2bd7d --- /dev/null +++ b/3705/CH6/EX6.9/Ex6_9.sce @@ -0,0 +1,23 @@ + +clear//
+
+//Variable Declaration
+P=300 //Force in N
+L1=1 //Length in m
+L2=2 //Length in m
+R_a=100 //Reaction at A in N
+R_c=200 //Reaction at C in N
+EI=20.48*10**3 //Flexural Rigidity in N.m^2
+
+//Calculations
+//Part 1
+tC_A=(0.5*(L1+L2)*P*L1-(0.5*L1*P*(L1+L2)**-1))*EI**-1 //First Moment in m
+theta_A=tC_A/(L1+L2) //Angle in radians
+
+//Part 2
+tD_A=0.5*L1*R_a*(L1+L2)**-1*EI**-1 //First Moment in m
+delta_D=(theta_A*L1-tD_A) //Displacement in m
+
+//Result
+printf("\n The angle in part 1 is %0.3f Degrees",theta_A*180*%pi**-1)
+printf("\n The displacement in part 2 is %0.2f mm downward",delta_D*1000)
|