summaryrefslogtreecommitdiff
path: root/3850/CH27
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH27')
-rw-r--r--3850/CH27/EX27.1/Ex27_1.sce26
-rw-r--r--3850/CH27/EX27.1/Ex27_1.txt2
-rw-r--r--3850/CH27/EX27.2/Ex27_2.sce26
-rw-r--r--3850/CH27/EX27.2/Ex27_2.txt2
-rw-r--r--3850/CH27/EX27.3/Ex27_3.sce18
-rw-r--r--3850/CH27/EX27.3/Ex27_3.txt2
-rw-r--r--3850/CH27/EX27.4/Ex27_4.sce20
-rw-r--r--3850/CH27/EX27.4/Ex27_4.txt2
-rw-r--r--3850/CH27/EX27.5/Ex27_5.sce22
-rw-r--r--3850/CH27/EX27.5/Ex27_5.txt2
10 files changed, 122 insertions, 0 deletions
diff --git a/3850/CH27/EX27.1/Ex27_1.sce b/3850/CH27/EX27.1/Ex27_1.sce
new file mode 100644
index 000000000..8ae506cc5
--- /dev/null
+++ b/3850/CH27/EX27.1/Ex27_1.sce
@@ -0,0 +1,26 @@
+
+//Find the Amount of Heat needed to raise the temperature from 25 degree celsius to 35 degree celsius.
+
+//Example 27.1
+
+clear;
+
+clc;
+
+Ao=0.32;//Mass of Oxygen kept in gram
+
+W=32;//Molecular weight of Oxygen in g/mol
+
+n=Ao/W;//Number of moles of oxygen
+
+Cv=20;//Molar Heat Capacity of Oxygen at constant volume
+
+T1=25;//Initial Temperature
+
+T2=35;//Final Temperature
+
+delT=T2-T1;//Change in Temperature
+
+Q=n*Cv*delT;//Amount of Heat needed
+
+printf("Amount of Heat required=%d joule",Q);
diff --git a/3850/CH27/EX27.1/Ex27_1.txt b/3850/CH27/EX27.1/Ex27_1.txt
new file mode 100644
index 000000000..88d7a51aa
--- /dev/null
+++ b/3850/CH27/EX27.1/Ex27_1.txt
@@ -0,0 +1,2 @@
+
+ Amount of Heat required=2 joule \ No newline at end of file
diff --git a/3850/CH27/EX27.2/Ex27_2.sce b/3850/CH27/EX27.2/Ex27_2.sce
new file mode 100644
index 000000000..3d6d4e2f5
--- /dev/null
+++ b/3850/CH27/EX27.2/Ex27_2.sce
@@ -0,0 +1,26 @@
+
+//Find the Amount of Heat required to raise the temperature to 400 Kelvin
+
+//Example 27.2
+
+clc;
+
+clear;
+
+V=0.2;//Volume of tank in m^3
+
+p=1*10^5;//Pressure of Helium Gas in N/M^2
+
+T1=300;//Initial Temperature of Helium Gas in Kelvin
+
+T2=400;//Final Temperature of Helium Gas in Kelvin
+
+R=8.31;//Universal Gas Constant in J/mol-K
+
+n=int((p*V)/(R*T1));//Amount of moles of Helium Gas
+
+Cv=3;//Molar Heat Capacity at Constant Volume
+
+Q=n*Cv*(T2-T1);//Amount of Heat Required in calories
+
+printf("The amount of Heat required=%d cal",Q);
diff --git a/3850/CH27/EX27.2/Ex27_2.txt b/3850/CH27/EX27.2/Ex27_2.txt
new file mode 100644
index 000000000..43917d197
--- /dev/null
+++ b/3850/CH27/EX27.2/Ex27_2.txt
@@ -0,0 +1,2 @@
+
+ The amount of Heat required=2400.000000 cal \ No newline at end of file
diff --git a/3850/CH27/EX27.3/Ex27_3.sce b/3850/CH27/EX27.3/Ex27_3.sce
new file mode 100644
index 000000000..0317915f0
--- /dev/null
+++ b/3850/CH27/EX27.3/Ex27_3.sce
@@ -0,0 +1,18 @@
+
+//To Find the ratio of Cp/Cv
+
+//Example 27.3
+
+clc;
+
+clear;
+
+Cv=5;//Molar Heat Capacity of Gas at constant volume
+
+R=2;//Universal Gas constant in cal/mol-K
+
+Cp=Cv+R;//Molar Heat Capacity of Gas at constant pressure
+
+gama=Cp/Cv;//The ratio Cp/Cv
+
+printf("Cp/Cv=%f",gama);
diff --git a/3850/CH27/EX27.3/Ex27_3.txt b/3850/CH27/EX27.3/Ex27_3.txt
new file mode 100644
index 000000000..f4b69efe2
--- /dev/null
+++ b/3850/CH27/EX27.3/Ex27_3.txt
@@ -0,0 +1,2 @@
+
+ Cp/Cv=1.400000 \ No newline at end of file
diff --git a/3850/CH27/EX27.4/Ex27_4.sce b/3850/CH27/EX27.4/Ex27_4.sce
new file mode 100644
index 000000000..9d3933266
--- /dev/null
+++ b/3850/CH27/EX27.4/Ex27_4.sce
@@ -0,0 +1,20 @@
+
+//To calculate the Final Temperature of the air
+
+//Example 27.4
+
+clc;
+
+clear;
+
+T1=288;//Initial Temperature of Dry Air in Kelvin
+
+p1=10;//Initial pressure of Dry Air in atm
+
+p2=1;//Final pressure of Dry Air in atm
+
+gama=1.41;//The ratio Cp/Cv
+
+T2=T1*(p2/p1)^((gama-1)/gama);//Final Temperature of Gas
+
+printf("The final temperature of gas=%f K",T2);
diff --git a/3850/CH27/EX27.4/Ex27_4.txt b/3850/CH27/EX27.4/Ex27_4.txt
new file mode 100644
index 000000000..6a034620d
--- /dev/null
+++ b/3850/CH27/EX27.4/Ex27_4.txt
@@ -0,0 +1,2 @@
+
+ The final temperature of gas=147.438990 K \ No newline at end of file
diff --git a/3850/CH27/EX27.5/Ex27_5.sce b/3850/CH27/EX27.5/Ex27_5.sce
new file mode 100644
index 000000000..5664a75de
--- /dev/null
+++ b/3850/CH27/EX27.5/Ex27_5.sce
@@ -0,0 +1,22 @@
+
+//To Calculate the Internal Energy of 1 gram of oxygen at STP.
+
+//Example 27.5
+
+clc;
+
+clear;
+
+m=1;//Mass of Oxygen taken in grams
+
+M=32;//Molecular Weight of Oxygen in g/mol
+
+n=m/M;//Number of moles of Oxygen
+
+R=8.31;//Universal Gas Constant in J/mol-K
+
+T=273;//Temperature in Kelvin at STP
+
+U=int(n*((5/2)*R*T));//Internal Energy of Oxygen
+
+printf("Internal Energy of Oxygen=%d J",U);
diff --git a/3850/CH27/EX27.5/Ex27_5.txt b/3850/CH27/EX27.5/Ex27_5.txt
new file mode 100644
index 000000000..1bbc3b738
--- /dev/null
+++ b/3850/CH27/EX27.5/Ex27_5.txt
@@ -0,0 +1,2 @@
+
+ Internal Energy of Oxygen=177.000000 J \ No newline at end of file