diff options
Diffstat (limited to '3159/CH11/EX11.5/Ex11_5.sce')
-rwxr-xr-x | 3159/CH11/EX11.5/Ex11_5.sce | 7 |
1 files changed, 7 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)
|