summaryrefslogtreecommitdiff
path: root/2288/CH1/EX1.18.4/ex1_18_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '2288/CH1/EX1.18.4/ex1_18_4.sce')
-rwxr-xr-x2288/CH1/EX1.18.4/ex1_18_4.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2288/CH1/EX1.18.4/ex1_18_4.sce b/2288/CH1/EX1.18.4/ex1_18_4.sce
new file mode 100755
index 000000000..39b187af2
--- /dev/null
+++ b/2288/CH1/EX1.18.4/ex1_18_4.sce
@@ -0,0 +1,17 @@
+// Exa 1.18.4
+clc;
+clear;
+close;
+// Given data
+r = 1.278;// in Å
+a = (4*r)/(sqrt(2));// in Å
+a = a * 10^-10;// in m
+V = (a)^3;// in m^3
+At = 63.5;// atomic weight
+N_A = 6.023*10^23;
+m = At/N_A;// in gm
+m = m * 10^-3;// in kg
+n = 4;
+Rho = (m*n)/V;// in gm/m^3
+Rho = Rho * 10^-3;// in kg/m^3
+disp(Rho,"The density of copper crystal in kg/m^3 is");