summaryrefslogtreecommitdiff
path: root/3159/CH11/EX11.5
diff options
context:
space:
mode:
Diffstat (limited to '3159/CH11/EX11.5')
-rwxr-xr-x3159/CH11/EX11.5/Ex11_5.sce7
-rwxr-xr-x3159/CH11/EX11.5/Ex11_5.txt3
2 files changed, 10 insertions, 0 deletions
diff --git a/3159/CH11/EX11.5/Ex11_5.sce b/3159/CH11/EX11.5/Ex11_5.sce
new file mode 100755
index 000000000..c6950a0dc
--- /dev/null
+++ b/3159/CH11/EX11.5/Ex11_5.sce
@@ -0,0 +1,7 @@
+// Estimate the change in yield strength
+clc
+n1 = 1e6 // initial number of particles
+n2 = 1e3 // final number of particle
+printf("\n Example 11.5")
+k = (n1/n2)^(1/3)
+printf("\n Yield strength would have decreased to %d%% of its initial value.",100/k)
diff --git a/3159/CH11/EX11.5/Ex11_5.txt b/3159/CH11/EX11.5/Ex11_5.txt
new file mode 100755
index 000000000..643dff95e
--- /dev/null
+++ b/3159/CH11/EX11.5/Ex11_5.txt
@@ -0,0 +1,3 @@
+
+ Example 11.5
+ Yield strength would have decreased to 10% of its initial value. \ No newline at end of file