summaryrefslogtreecommitdiff
path: root/3764/CH6/EX6.03/Ex6_03.sce
diff options
context:
space:
mode:
Diffstat (limited to '3764/CH6/EX6.03/Ex6_03.sce')
-rw-r--r--3764/CH6/EX6.03/Ex6_03.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3764/CH6/EX6.03/Ex6_03.sce b/3764/CH6/EX6.03/Ex6_03.sce
new file mode 100644
index 000000000..15b76f86e
--- /dev/null
+++ b/3764/CH6/EX6.03/Ex6_03.sce
@@ -0,0 +1,18 @@
+clc
+//
+//
+//Variable declaration
+l=0.020 // Length(m)
+b=0.100 // Breadth(m)
+V=500 // Vertical shear(N)
+y=0.060 // Distance(m)
+
+//Calculation
+A=l*b // Area(m**2)
+Q=A*y // First moment of an area with respect to a given axis
+I=(1/12.0)*(0.020)*(0.1**3) + 2*((1/12.0)*(0.1)*(0.02**3) + (0.020*0.1)*(0.06**2)) // Moment of inertia(m**4)
+q=(V*Q)/(I)
+F=(0.025)*q // Shearing force in each nail(N)
+
+// Result
+printf("\n Shearing force in each nail is = %0.3f N' ,F)