diff options
Diffstat (limited to '1367/CH19/EX19.2/19_2.sce')
-rwxr-xr-x | 1367/CH19/EX19.2/19_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1367/CH19/EX19.2/19_2.sce b/1367/CH19/EX19.2/19_2.sce new file mode 100755 index 000000000..02d0278ae --- /dev/null +++ b/1367/CH19/EX19.2/19_2.sce @@ -0,0 +1,14 @@ +//Determine volume ratio of Al and B in aluminium boron composite
+//Ex:19.2
+clc;
+clear;
+close;
+ec=210;//in GPa
+ea=71;//in GPa
+eb=440;//in GPa
+va=(ec-eb)/(ea-eb);
+disp(va,"Va = ");
+vb=1-va;
+disp(vb,"Vb = ");
+c=vb/va;
+disp(c,"Volume ratio = ");
\ No newline at end of file |