summaryrefslogtreecommitdiff
path: root/3864/CH2/EX2.41/Ex2_41.sce
diff options
context:
space:
mode:
Diffstat (limited to '3864/CH2/EX2.41/Ex2_41.sce')
-rw-r--r--3864/CH2/EX2.41/Ex2_41.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/3864/CH2/EX2.41/Ex2_41.sce b/3864/CH2/EX2.41/Ex2_41.sce
new file mode 100644
index 000000000..c7360546a
--- /dev/null
+++ b/3864/CH2/EX2.41/Ex2_41.sce
@@ -0,0 +1,21 @@
+clear
+//
+
+//Initilization of Variables
+
+E=2.1*10**5 //N/mm**2 //Youngs Modulus
+G=0.78*10**5 //N/mm**2 //Modulus of Rigidity
+
+//Calculations
+
+//Now using the relation
+//E=2*G*(1+mu)
+mu=E*(2*G)**-1-1 //Poissons ratio
+
+//Bulk Modulus
+K=E*(3*(1-2*mu))**-1 //N/mm**2
+
+
+//Result
+printf("\n The Poissons Ratio is %0.2f ",mu)
+printf("\n The modulus of Rigidity %0.2f N/mm**2",K)