summaryrefslogtreecommitdiff
path: root/2288/CH1/EX1.18.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2288/CH1/EX1.18.3
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2288/CH1/EX1.18.3')
-rwxr-xr-x2288/CH1/EX1.18.3/ex1_18_3.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2288/CH1/EX1.18.3/ex1_18_3.sce b/2288/CH1/EX1.18.3/ex1_18_3.sce
new file mode 100755
index 000000000..235b52dc3
--- /dev/null
+++ b/2288/CH1/EX1.18.3/ex1_18_3.sce
@@ -0,0 +1,16 @@
+// Exa 1.18.3
+clc;
+clear;
+close;
+// Given data
+At = 28;// Atomic weight
+n = 4;
+N_A = 6.023*10^23;
+a = 5.3;// in Å
+a = a * 10^-10;// in m
+m = At/N_A;// in gm
+m = m*10^-3;// in kg
+V = (a)^3;// in m^3
+Rho = (m*n)/V;// in gm/m^3
+Rho = Rho * 10^-3;// in kg/m^3
+disp(Rho,"The volume density in kg/m^3 is");