diff options
Diffstat (limited to '1985/CH2/EX2.6/Chapter2_example6.sce')
-rwxr-xr-x | 1985/CH2/EX2.6/Chapter2_example6.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1985/CH2/EX2.6/Chapter2_example6.sce b/1985/CH2/EX2.6/Chapter2_example6.sce new file mode 100755 index 000000000..4a83c72f6 --- /dev/null +++ b/1985/CH2/EX2.6/Chapter2_example6.sce @@ -0,0 +1,11 @@ +clc
+clear
+//Input data
+Y=(7.25*10^10)//Youngs modulus of silver in N/m^2
+K=(11*10^10)//Bulk modulus of silver in N/m^2
+
+//Calculations
+s=(3*K-Y)/(6*K)//Poissons ratio
+
+//Output
+printf('Poissons ratio for silver is %3.2f',s)
|