diff options
Diffstat (limited to '3850/CH27/EX27.1')
-rw-r--r-- | 3850/CH27/EX27.1/Ex27_1.sce | 26 | ||||
-rw-r--r-- | 3850/CH27/EX27.1/Ex27_1.txt | 2 |
2 files changed, 28 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 |