summaryrefslogtreecommitdiff
path: root/1301/CH26
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1301/CH26
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 '1301/CH26')
-rwxr-xr-x1301/CH26/EX26.1/ex26_1.sce2
-rwxr-xr-x1301/CH26/EX26.10/ex26_10.sce2
-rwxr-xr-x1301/CH26/EX26.2/ex26_2.sce3
-rwxr-xr-x1301/CH26/EX26.3/ex26_3.sce3
-rwxr-xr-x1301/CH26/EX26.4/26_4.sce9
-rwxr-xr-x1301/CH26/EX26.5/26_5.sce8
-rwxr-xr-x1301/CH26/EX26.6/26_6.sce11
-rwxr-xr-x1301/CH26/EX26.7/26_7.sce9
-rwxr-xr-x1301/CH26/EX26.8/ex26_8.sce7
-rwxr-xr-x1301/CH26/EX26.9/26_9.sce11
-rwxr-xr-x1301/CH26/EX27.7/ex27_7.sce2
11 files changed, 67 insertions, 0 deletions
diff --git a/1301/CH26/EX26.1/ex26_1.sce b/1301/CH26/EX26.1/ex26_1.sce
new file mode 100755
index 000000000..0b2d13187
--- /dev/null
+++ b/1301/CH26/EX26.1/ex26_1.sce
@@ -0,0 +1,2 @@
+clc;
+disp((3/2)*100,"Volume of O2 = "); //displaying result \ No newline at end of file
diff --git a/1301/CH26/EX26.10/ex26_10.sce b/1301/CH26/EX26.10/ex26_10.sce
new file mode 100755
index 000000000..8e3b96da1
--- /dev/null
+++ b/1301/CH26/EX26.10/ex26_10.sce
@@ -0,0 +1,2 @@
+clc;
+disp(28.1/0.214,"Molecular mass = ") //displaying result \ No newline at end of file
diff --git a/1301/CH26/EX26.2/ex26_2.sce b/1301/CH26/EX26.2/ex26_2.sce
new file mode 100755
index 000000000..e31ef01f3
--- /dev/null
+++ b/1301/CH26/EX26.2/ex26_2.sce
@@ -0,0 +1,3 @@
+clc;
+disp(200/122.56,"Moles = "); //displaying result
+disp(2.45*22.4,"Volume = "); //displaying result \ No newline at end of file
diff --git a/1301/CH26/EX26.3/ex26_3.sce b/1301/CH26/EX26.3/ex26_3.sce
new file mode 100755
index 000000000..1e23fa2ea
--- /dev/null
+++ b/1301/CH26/EX26.3/ex26_3.sce
@@ -0,0 +1,3 @@
+clc;
+disp(2/22.4,"Moles = "); //displaying result
+disp(0.179*84,"Mass = "); //displaying result \ No newline at end of file
diff --git a/1301/CH26/EX26.4/26_4.sce b/1301/CH26/EX26.4/26_4.sce
new file mode 100755
index 000000000..2c54671d0
--- /dev/null
+++ b/1301/CH26/EX26.4/26_4.sce
@@ -0,0 +1,9 @@
+clc;
+p=1; //atm
+v=1000; //volume in litres
+t=673; //Kelvin
+R=0.0821; //constant in atm-l/mole-K
+n=(p*v)/(R*t); //calculating n
+disp(n,"n = "); //displaying result
+disp(6.03*159.7,"Mass = "); //displaying result
+disp(12.1*55.85,"Mass of Fe = "); //displaying result \ No newline at end of file
diff --git a/1301/CH26/EX26.5/26_5.sce b/1301/CH26/EX26.5/26_5.sce
new file mode 100755
index 000000000..4b1b466b9
--- /dev/null
+++ b/1301/CH26/EX26.5/26_5.sce
@@ -0,0 +1,8 @@
+clc;
+N=14.01; //mass of N
+H=1.008; //mass of H
+m=N+(3*H); //calculating mass
+moles=1/m //cal moles
+v=moles*22.4; //cal vol
+disp(v,"Volume = "); //displaying result
+disp((1*1.32*373)/(1.2*273),"V2 = "); //displaying result \ No newline at end of file
diff --git a/1301/CH26/EX26.6/26_6.sce b/1301/CH26/EX26.6/26_6.sce
new file mode 100755
index 000000000..8c0e2fb45
--- /dev/null
+++ b/1301/CH26/EX26.6/26_6.sce
@@ -0,0 +1,11 @@
+clc;
+p=4; //atm
+v=40; //volume in litres
+t=773; //Kelvin
+R=0.0821; //constant in atm-l/mole-K
+n=(p*v)/(R*t); //calculating n
+disp(n,"n = "); //displaying result
+u=238.03; //mass of U
+f=19.00; //mass of F
+m=u+(6*f); //cal mass
+disp(m*2.52,"Mass = "); //displaying result
diff --git a/1301/CH26/EX26.7/26_7.sce b/1301/CH26/EX26.7/26_7.sce
new file mode 100755
index 000000000..4a8561d0c
--- /dev/null
+++ b/1301/CH26/EX26.7/26_7.sce
@@ -0,0 +1,9 @@
+clc;
+p=0.263*10^5; //Pascal
+v=120; //volume in m cube
+t=223; //Kelvin
+R=8.31; //constant
+n=(p*v)/(R*t); //calculating n
+disp(n,"n = "); //displaying result
+m=n*4; //cal mass of He
+disp(m,"Mass of He = "); //displaying result
diff --git a/1301/CH26/EX26.8/ex26_8.sce b/1301/CH26/EX26.8/ex26_8.sce
new file mode 100755
index 000000000..c2f7d9e32
--- /dev/null
+++ b/1301/CH26/EX26.8/ex26_8.sce
@@ -0,0 +1,7 @@
+clc;
+c=12.01;
+h=1.008;
+v=22.4; //vol
+m=(2*c)+(4*h); //cal mass
+d=m/v; //cal density
+disp(d,"Density in g/litre = "); //displaying result \ No newline at end of file
diff --git a/1301/CH26/EX26.9/26_9.sce b/1301/CH26/EX26.9/26_9.sce
new file mode 100755
index 000000000..5afc1644e
--- /dev/null
+++ b/1301/CH26/EX26.9/26_9.sce
@@ -0,0 +1,11 @@
+clc;
+p=5; //atm
+v=1; //volume in litres
+t=293; //Kelvin
+R=0.0821; //constant in atm-l/mole-K
+n=(p*v)/(R*t); //calculating n
+disp(n,"n = "); //displaying result
+m=n*32; //moles of O2
+disp(m,"Moles of O2 = "); //displaying result
+d=m/v; //cal density
+disp(d,"Density in g/litre = "); //displaying result \ No newline at end of file
diff --git a/1301/CH26/EX27.7/ex27_7.sce b/1301/CH26/EX27.7/ex27_7.sce
new file mode 100755
index 000000000..2a8f51e3d
--- /dev/null
+++ b/1301/CH26/EX27.7/ex27_7.sce
@@ -0,0 +1,2 @@
+clc;
+disp(0.075*111,"Mass = "); //displaying result \ No newline at end of file