summaryrefslogtreecommitdiff
path: root/3864/CH2/EX2.41/Ex2_41.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3864/CH2/EX2.41/Ex2_41.sce
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
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)