diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3850/CH27/EX27.1 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
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 |