diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2135/CH5/EX5.14/Exa_5_14.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2135/CH5/EX5.14/Exa_5_14.sce')
-rwxr-xr-x | 2135/CH5/EX5.14/Exa_5_14.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2135/CH5/EX5.14/Exa_5_14.sce b/2135/CH5/EX5.14/Exa_5_14.sce new file mode 100755 index 000000000..8de1208cb --- /dev/null +++ b/2135/CH5/EX5.14/Exa_5_14.sce @@ -0,0 +1,22 @@ +//Exa 5.14
+clc;
+clear;
+close;
+format('v',6);
+
+//Given Data :
+m=3;//Kg
+p1=3;//bar
+T1=450;//Kelvin
+Q=600;//KJ
+Cv=0.81;//KJ/Kg
+T0=300;//Kelvin
+T=1500;//Kelvin
+deltaSsource=Q/T;//KJ/K
+//Q=m*Cv*(T2-T1)
+T2=Q/m/Cv+T1;//Kelvin
+A1=Q-T0*deltaSsource;//KJ
+deltaSg=m*Cv*log(T2/T1);//KJ/K
+A2=Q-T0*deltaSg;//KJ
+Loss=A1-A2;//KJ
+disp(Loss,"Loss in available energy due to heat transfer in KJ : ");
|