From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3850/CH27/EX27.1/Ex27_1.sce | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 3850/CH27/EX27.1/Ex27_1.sce (limited to '3850/CH27/EX27.1/Ex27_1.sce') 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); -- cgit