diff options
Diffstat (limited to '3705/CH14/EX14.1')
-rw-r--r-- | 3705/CH14/EX14.1/Ex14_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3705/CH14/EX14.1/Ex14_1.sce b/3705/CH14/EX14.1/Ex14_1.sce new file mode 100644 index 000000000..1dcedf9b5 --- /dev/null +++ b/3705/CH14/EX14.1/Ex14_1.sce @@ -0,0 +1,16 @@ + +clear//
+
+//Variable Declaration
+A=2000 //Area of the plane in mm^2
+Ix=40*10**6 //Momnet of Inertia in mm^4
+d1=90 //Distance in mm
+d2=70 //Distance in mm
+
+//Calculations
+Ix_bar=Ix-(A*d1**2) //Moment of Inertia along x_bar axis in mm^4
+Iu=Ix_bar+A*d2**2 //Moment of Inertia along U-axis in mm^4
+
+//Result
+printf("\n Ix_bar")
+printf("\n The moment of inertia along u-axis is %0.1f mm^4",Iu)
|