diff options
Diffstat (limited to '1301/CH10')
-rwxr-xr-x | 1301/CH10/EX10.10/ex10_10.sce | 11 | ||||
-rwxr-xr-x | 1301/CH10/EX10.11/ex10_11.sce | 8 | ||||
-rwxr-xr-x | 1301/CH10/EX10.12/ex10_12.sce | 8 | ||||
-rwxr-xr-x | 1301/CH10/EX10.13/ex10_13.sce | 5 | ||||
-rwxr-xr-x | 1301/CH10/EX10.14/ex10_14.sce | 5 | ||||
-rwxr-xr-x | 1301/CH10/EX10.15/ex10_15.sce | 6 | ||||
-rwxr-xr-x | 1301/CH10/EX10.4/ex10_4.sce | 8 | ||||
-rwxr-xr-x | 1301/CH10/EX10.5/ex10_5.sce | 7 | ||||
-rwxr-xr-x | 1301/CH10/EX10.6/ex10_6.sce | 4 | ||||
-rwxr-xr-x | 1301/CH10/EX10.7/ex10_7.sce | 3 | ||||
-rwxr-xr-x | 1301/CH10/EX10.8/ex10_8.sce | 4 | ||||
-rwxr-xr-x | 1301/CH10/EX10.9/ex10_9.sce | 6 |
12 files changed, 75 insertions, 0 deletions
diff --git a/1301/CH10/EX10.10/ex10_10.sce b/1301/CH10/EX10.10/ex10_10.sce new file mode 100755 index 000000000..ca064c138 --- /dev/null +++ b/1301/CH10/EX10.10/ex10_10.sce @@ -0,0 +1,11 @@ +clc;
+t1=293; //temp in Kelvin
+t2=233; //temp in Kelvin
+v1=0.1; //volume in m cube
+p1=10; //pressure in atm
+p2=1; //pressure in atm
+v2=(p1*v1*t2)/(t1*p2); //calculating v2 using ideal gas law
+p3=1; //pressure in atm
+v3=(p1*v1)/p3; //calculating volume using ideal gas law
+disp(v2-0.1,"(a)Volume of ballon in m cube = "); //displaying result.
+disp(v3-0.1,"(b)Volume of ballon after Helium absorbs heat from air in m cube = "); //displaying result.
\ No newline at end of file diff --git a/1301/CH10/EX10.11/ex10_11.sce b/1301/CH10/EX10.11/ex10_11.sce new file mode 100755 index 000000000..7fafaf7f2 --- /dev/null +++ b/1301/CH10/EX10.11/ex10_11.sce @@ -0,0 +1,8 @@ +clc;
+d1=1.293; //density in kg/m cube
+t1=273; //temperature in Kelvin
+p2=2; //pressure in atm
+t2=373; //temperature in Kelvin
+p1=1; //pressure in atm
+d2=(d1*t1*p2)/(t2*p1); //calculating density using ideal gas law in kg/m cube
+disp(d2,"Density in kg/m cube = "); //displaying result
\ No newline at end of file diff --git a/1301/CH10/EX10.12/ex10_12.sce b/1301/CH10/EX10.12/ex10_12.sce new file mode 100755 index 000000000..4f7a65f1a --- /dev/null +++ b/1301/CH10/EX10.12/ex10_12.sce @@ -0,0 +1,8 @@ +clc;
+o=16.00; //atomic mass of O
+h=1.008; //atomic mass of H
+mh2o=(o+2*h)*1.66*10^-27; //mass of H2O molecule
+disp(mh2o,"Mass of H20 molecule in kg = "); //displaying result
+c=12.01; //atomic mass of carbon
+m=((2*c)+o+(6*h))*1.66*10^-27; //mass of C2H6O molecule
+disp(m,"Mass of Ethyl Alcohol molecule in kg = "); //displaying result
\ No newline at end of file diff --git a/1301/CH10/EX10.13/ex10_13.sce b/1301/CH10/EX10.13/ex10_13.sce new file mode 100755 index 000000000..aafe742a5 --- /dev/null +++ b/1301/CH10/EX10.13/ex10_13.sce @@ -0,0 +1,5 @@ +clc;
+m=1; //mass of H2O in kg
+m1=2.99*10^-26; //mass of H2O molecule in kg
+mo=m/m1; //calculating no. of molecules of H2O using no=mass of H2O/mass of H2) molecule
+disp(mo,"Molecules of H2O = "); //displaying result
\ No newline at end of file diff --git a/1301/CH10/EX10.14/ex10_14.sce b/1301/CH10/EX10.14/ex10_14.sce new file mode 100755 index 000000000..b6e852393 --- /dev/null +++ b/1301/CH10/EX10.14/ex10_14.sce @@ -0,0 +1,5 @@ +clc;
+k=1.38*10^-23; //Boltzmann's constant in J/K
+tk=273+100; //absolute temp (in Kelvin)
+KE=3/2*(k*tk); //calculating average Kinetic Energy in Joule using kinetic theory of gases
+disp(KE,"Average Kinetic Energy in Joule = "); //displaying result
\ No newline at end of file diff --git a/1301/CH10/EX10.15/ex10_15.sce b/1301/CH10/EX10.15/ex10_15.sce new file mode 100755 index 000000000..5b22b01ae --- /dev/null +++ b/1301/CH10/EX10.15/ex10_15.sce @@ -0,0 +1,6 @@ +clc;
+k=1.38*10^-23; //Boltzmann's constant in J/K
+t=100+273; //temperature in Kelvin
+m=5.3*10^-26; //mass of oxygen molecule in kg
+v=sqrt((3*k*t)/m); //calculating average velocity using kinetic theory of gases.
+disp(v,"Average velocity of molecules in m/sec = "); //displaying result
\ No newline at end of file diff --git a/1301/CH10/EX10.4/ex10_4.sce b/1301/CH10/EX10.4/ex10_4.sce new file mode 100755 index 000000000..fd963eb18 --- /dev/null +++ b/1301/CH10/EX10.4/ex10_4.sce @@ -0,0 +1,8 @@ +clc;
+gp=200; //gauge pressure in lb/in square
+atmp=15; //atmospheric pressure in lb/in square
+p1=gp+atmp; //pressure in lb/in square
+v1=3; //volume in ft cube
+p2=15; //pressure at sea-level in lb/in square
+v2=(p1*v1)/p2; //calculating pressure in ft cube using Boyle's law ie. p1*v1=p2*v2 at constant temperature
+disp(v2,"Volume occupied in ft cube = "); //displaying result.
\ No newline at end of file diff --git a/1301/CH10/EX10.5/ex10_5.sce b/1301/CH10/EX10.5/ex10_5.sce new file mode 100755 index 000000000..3cfeaf6cf --- /dev/null +++ b/1301/CH10/EX10.5/ex10_5.sce @@ -0,0 +1,7 @@ +clc;
+p1=300+15; //absolute pressure in lb/in square
+p2=15; //pressure in lb/in square
+v1=3; //volume in ft cube
+v2=(p1*v1)/p2; //calculating v2 using Boyle's law at const. temp.
+disp(v2,"Volume in ft cube = "); //displaying result.
+disp(v2-43,"Additional Volume of air in ft cube = "); //displaying result.
\ No newline at end of file diff --git a/1301/CH10/EX10.6/ex10_6.sce b/1301/CH10/EX10.6/ex10_6.sce new file mode 100755 index 000000000..4ed74b8af --- /dev/null +++ b/1301/CH10/EX10.6/ex10_6.sce @@ -0,0 +1,4 @@ +clc;
+Tc=-196; //Boiling Point of Nitrogen in celcius
+Tk=Tc+273; //calculating B.P. in Kelvin using Kelvin=Celcius+273
+disp(Tk,"Boiling Point of Nitrogen in Kelvin = "); //displaying result.
\ No newline at end of file diff --git a/1301/CH10/EX10.7/ex10_7.sce b/1301/CH10/EX10.7/ex10_7.sce new file mode 100755 index 000000000..b610ff7d5 --- /dev/null +++ b/1301/CH10/EX10.7/ex10_7.sce @@ -0,0 +1,3 @@ +clc;
+tk=6000; //temperature in Kelvin
+disp(tk-273,"Temperature in celcius = "); //displaying result
\ No newline at end of file diff --git a/1301/CH10/EX10.8/ex10_8.sce b/1301/CH10/EX10.8/ex10_8.sce new file mode 100755 index 000000000..342d1394e --- /dev/null +++ b/1301/CH10/EX10.8/ex10_8.sce @@ -0,0 +1,4 @@ +clc;
+t1=273; //temperature in Kelvin
+v2=2; //twice v1
+disp((t1*v2)-273,"Temperature in celcius = "); //displaying result
\ No newline at end of file diff --git a/1301/CH10/EX10.9/ex10_9.sce b/1301/CH10/EX10.9/ex10_9.sce new file mode 100755 index 000000000..cb4c96628 --- /dev/null +++ b/1301/CH10/EX10.9/ex10_9.sce @@ -0,0 +1,6 @@ +clc;
+T1=283; //temperature Kelvin
+T2=322; //temp. in Kelvin
+p1=35; //pressure in lb/in square
+p2=(T2*p1)/T1; //calculating p2 using ideal gas equation since,v1=v2
+disp(p2,"Pressure in lb/in square = "); //displaying result.
\ No newline at end of file |