diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1388/CH2 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1388/CH2')
-rwxr-xr-x | 1388/CH2/EX2.1/2_1.sce | 10 | ||||
-rwxr-xr-x | 1388/CH2/EX2.10/2_10.sce | 15 | ||||
-rwxr-xr-x | 1388/CH2/EX2.11/2_11.sce | 11 | ||||
-rwxr-xr-x | 1388/CH2/EX2.2/2_2.sce | 10 | ||||
-rwxr-xr-x | 1388/CH2/EX2.3/2_3.sce | 9 | ||||
-rwxr-xr-x | 1388/CH2/EX2.4/2_4.sce | 8 | ||||
-rwxr-xr-x | 1388/CH2/EX2.5/2_5.sce | 12 | ||||
-rwxr-xr-x | 1388/CH2/EX2.6/2_6.sce | 14 | ||||
-rwxr-xr-x | 1388/CH2/EX2.7/2_7.sce | 7 | ||||
-rwxr-xr-x | 1388/CH2/EX2.8/2_8.sce | 14 | ||||
-rwxr-xr-x | 1388/CH2/EX2.9/2_9.sce | 12 |
11 files changed, 122 insertions, 0 deletions
diff --git a/1388/CH2/EX2.1/2_1.sce b/1388/CH2/EX2.1/2_1.sce new file mode 100755 index 000000000..ee417aa7b --- /dev/null +++ b/1388/CH2/EX2.1/2_1.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+l= 1.5418 //A
+a= 19.076 //degrees
+d2= 1.444 //A
+//CALCULATIONS
+d= l/(2*sind(a))
+a= sqrt(8*d2^2)
+//RESULTS
+printf (' size of cubic unit cell = %.4f A',a)
diff --git a/1388/CH2/EX2.10/2_10.sce b/1388/CH2/EX2.10/2_10.sce new file mode 100755 index 000000000..68dd5f636 --- /dev/null +++ b/1388/CH2/EX2.10/2_10.sce @@ -0,0 +1,15 @@ +clc
+//initialisation of variables
+g= 10 //gm
+d= 1.038 //gm/mol
+M= 100 //gm
+x= 66.412
+y= 0.127
+z= 0.038
+l= 20 //cm
+//CALCULATIONS
+p= g/(M/d)
+X= x+y-z
+ar= X*l*p/10
+//RESULTS
+printf (' angle ofrotation= %.2f degrees ',ar)
diff --git a/1388/CH2/EX2.11/2_11.sce b/1388/CH2/EX2.11/2_11.sce new file mode 100755 index 000000000..59e87000e --- /dev/null +++ b/1388/CH2/EX2.11/2_11.sce @@ -0,0 +1,11 @@ +clc
+//initialisation of variables
+t= 68.9 //sec
+t1= 102.2 //sec
+p1= 0.866 //g/cm^3
+p2= 0.998 //gm/cm^3
+n= 0.01009 //dynesc/cm^2
+//CALCULATIONS
+N= n*t*p1/(t1*p2)
+//RESULTS
+printf (' viscosity of toulene= %.5f dyne sec/cm^2 ',N)
diff --git a/1388/CH2/EX2.2/2_2.sce b/1388/CH2/EX2.2/2_2.sce new file mode 100755 index 000000000..14b539e4e --- /dev/null +++ b/1388/CH2/EX2.2/2_2.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+M= 107.88 //gm
+z= 4
+v= 4.086 //A
+N= 6.023*10^23
+//CALCULATIONS
+d= z*M/(v^3*10^-24*N)
+//RESULTS
+printf (' Density of silver = %.3f gm cm^-3',d)
diff --git a/1388/CH2/EX2.3/2_3.sce b/1388/CH2/EX2.3/2_3.sce new file mode 100755 index 000000000..a49ae7666 --- /dev/null +++ b/1388/CH2/EX2.3/2_3.sce @@ -0,0 +1,9 @@ +clc
+//initialisation of variables
+d= 1.287 //g cm^-3
+a= 123 //A
+z= 4
+//CALCULATIONS
+M= d*6.023*10^23*a^3*10^-24/z
+//RESULTS
+printf (' molecular weight = %.1e gm ',M)
diff --git a/1388/CH2/EX2.4/2_4.sce b/1388/CH2/EX2.4/2_4.sce new file mode 100755 index 000000000..85495155e --- /dev/null +++ b/1388/CH2/EX2.4/2_4.sce @@ -0,0 +1,8 @@ +clc
+//initialisation of variables
+a= 4.086 //A
+//CALCULATIONS
+d= a*sqrt(2)
+r= d/4
+//RESULTS
+printf (' radius of silver atom= %.3f A ',r)
diff --git a/1388/CH2/EX2.5/2_5.sce b/1388/CH2/EX2.5/2_5.sce new file mode 100755 index 000000000..64b5ef8cf --- /dev/null +++ b/1388/CH2/EX2.5/2_5.sce @@ -0,0 +1,12 @@ +clc
+//initialisation of variables
+M= 38.3 //mg cm^-1
+d= 13.55 //g cm^-3
+p= 0.9982 //g cm^-3
+g= 980.7 //cm/sec^2
+l= 4.96 //cm
+//CALCULATIONS
+r= sqrt(M*10^-3/(d*%pi))
+R= r*p*g*l/2
+//RESULTS
+printf (' surface tension = %.1f ergs cm^-2 ',R)
diff --git a/1388/CH2/EX2.6/2_6.sce b/1388/CH2/EX2.6/2_6.sce new file mode 100755 index 000000000..3f2397d54 --- /dev/null +++ b/1388/CH2/EX2.6/2_6.sce @@ -0,0 +1,14 @@ +clc
+//initialisation of variables
+r= 1.333
+d= 0.9982 //g cm^-3
+m= 18.02 //gm
+Pm= 74.22 //cc
+k= 8.314*10^7
+N= 6.023*10^23
+T= 293 //k
+//CALCULATIONS
+Rm= ((r^2-1)/(r^2+2))*m/d
+u= sqrt(9*k*T*(Pm-Rm)/(4*%pi*N^2))
+//RESULTS
+printf (' dipole moment of water = %.2e e.s.u ',u)
diff --git a/1388/CH2/EX2.7/2_7.sce b/1388/CH2/EX2.7/2_7.sce new file mode 100755 index 000000000..e6f69bf7c --- /dev/null +++ b/1388/CH2/EX2.7/2_7.sce @@ -0,0 +1,7 @@ +clc
+//initialisation of variables
+a= 1.66*10^-24 //cm^3
+//CALCULATIONS
+r= a^(1/3)/10^-8
+//RESULTS
+printf (' radius = %.2f A ',r)
diff --git a/1388/CH2/EX2.8/2_8.sce b/1388/CH2/EX2.8/2_8.sce new file mode 100755 index 000000000..3a1588b59 --- /dev/null +++ b/1388/CH2/EX2.8/2_8.sce @@ -0,0 +1,14 @@ +clc
+//initialisation of variables
+N= 6.023*10^23 //molecules
+a= 10^-24
+k= 0.89
+cl= 3.60
+M= 74.56 //gms
+d= 1.989 //g/cm^3
+//CACLULATIONS
+Rm= 4*%pi*N*(k+cl)*a/3
+r= Rm*d/M
+n= sqrt((2*r+1)/(1-r))
+//RESULTS
+printf (' index of refraction= %.3f ',n)
diff --git a/1388/CH2/EX2.9/2_9.sce b/1388/CH2/EX2.9/2_9.sce new file mode 100755 index 000000000..b5a8aa740 --- /dev/null +++ b/1388/CH2/EX2.9/2_9.sce @@ -0,0 +1,12 @@ +clc
+//initialisation of variables
+v= 3.6 //cc
+v1= 0.89 //cc
+s= 3.146 //A
+//CALCULATIONS
+r= (v/v1)^(1/3)
+r1 = s/(1+r)
+r2 = s-r1
+//RESULTS
+printf (' radius of k+= %.3f A ',r1)
+printf (' \n radius of cl-= %.3f A ',r2)
|