From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3864/CH2/EX2.41/Ex2_41.sce | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 3864/CH2/EX2.41/Ex2_41.sce (limited to '3864/CH2/EX2.41/Ex2_41.sce') 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) -- cgit