summaryrefslogtreecommitdiff
path: root/3863/CH12/EX12.4/Ex12_4.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3863/CH12/EX12.4/Ex12_4.sce
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3863/CH12/EX12.4/Ex12_4.sce')
-rw-r--r--3863/CH12/EX12.4/Ex12_4.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/3863/CH12/EX12.4/Ex12_4.sce b/3863/CH12/EX12.4/Ex12_4.sce
new file mode 100644
index 000000000..365ae9017
--- /dev/null
+++ b/3863/CH12/EX12.4/Ex12_4.sce
@@ -0,0 +1,25 @@
+clear
+//
+
+//Given
+//Variable declaration
+L=5*1000 //Length in mm
+W=5*1000 //Point load in N
+a=3*1000 //Distance between point load and left end in mm
+E=2e5 //Young's modulus in N/sq.mm
+I=1e8 //Moment of Inertia in mm^4
+
+//Calculation
+b=L-a //Width in mm
+//case(i):The slope at the left support
+thetaA=-(W*a*b)/(6*E*I*L)*(a+2*b)
+//case(iii): The deflection under the load
+yc=(W*a**2*b**2)/(3*E*I*L)
+//case(iii):The maximum deflection
+y_max=((W*b)/(9*sqrt(3)*E*I*L)*(((a**2)+(2*a*b))**(3/2)))
+
+
+//Result
+printf("\n slope at the left support = %0.3f radians",thetaA)
+printf("\n Deflection under the load = %0.3f mm",yc)
+printf("\n Maximum deflection = %0.3f mm",y_max)