summaryrefslogtreecommitdiff
path: root/3705/CH14/EX14.3/Ex14_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3705/CH14/EX14.3/Ex14_3.sce')
-rw-r--r--3705/CH14/EX14.3/Ex14_3.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3705/CH14/EX14.3/Ex14_3.sce b/3705/CH14/EX14.3/Ex14_3.sce
new file mode 100644
index 000000000..55c316531
--- /dev/null
+++ b/3705/CH14/EX14.3/Ex14_3.sce
@@ -0,0 +1,15 @@
+
+clear//
+
+//Variable Declaration
+t=20 //Thickness in mm
+h=140 //Depth in mm
+w=180 //Width in mm
+
+//Calculations
+Ixy_1=0+(h*t*t*0.5*h*0.5) //product of inertia in mm^4
+Ixy_2=0+((w-t)*t*(w+t)*0.5*t*0.5) //Product of inertia in mm^4
+Ixy=Ixy_1+Ixy_2 //Product of inertia in mm^4
+
+//Result
+printf("\n The Product of inertia is %0.0f mm^4",Ixy)