summaryrefslogtreecommitdiff
path: root/2732/CH7/EX7.23/Ex7_23.sce
diff options
context:
space:
mode:
Diffstat (limited to '2732/CH7/EX7.23/Ex7_23.sce')
-rwxr-xr-x2732/CH7/EX7.23/Ex7_23.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2732/CH7/EX7.23/Ex7_23.sce b/2732/CH7/EX7.23/Ex7_23.sce
new file mode 100755
index 000000000..777aaf6cd
--- /dev/null
+++ b/2732/CH7/EX7.23/Ex7_23.sce
@@ -0,0 +1,12 @@
+clc
+//initialization of variables
+clear
+h=40 //cm
+b=10 //cm
+t1=1.4 //cm
+t2=0.8 //cm
+Ixx=13989.5 //cm^4
+//calculations
+e=b^2*h^2*t1/(4*Ixx)*(1-t1/h-t1/b+t1^2/(b*h))*(1-t1/h)
+//Results
+printf('Shear center: \n e = %.2f cm',e)