summaryrefslogtreecommitdiff
path: root/3257/CH7/EX7.10/Ex7_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3257/CH7/EX7.10/Ex7_10.sce')
-rwxr-xr-x3257/CH7/EX7.10/Ex7_10.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3257/CH7/EX7.10/Ex7_10.sce b/3257/CH7/EX7.10/Ex7_10.sce
new file mode 100755
index 000000000..b14c97ba8
--- /dev/null
+++ b/3257/CH7/EX7.10/Ex7_10.sce
@@ -0,0 +1,9 @@
+// Estimating diameter of expansion
+clc
+
+D_0 = 300 // original diameter in mm
+e = 40 // allowable strain in %
+printf("\n Example 7.10")
+D_f = (1+e/100)*D_0
+printf("\n Maximum diameter to which object can be safely expanded is %d mm.",D_f)
+