summaryrefslogtreecommitdiff
path: root/1808/CH3/EX3.35
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1808/CH3/EX3.35
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1808/CH3/EX3.35')
-rw-r--r--1808/CH3/EX3.35/Chapter3_Exampl35.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/1808/CH3/EX3.35/Chapter3_Exampl35.sce b/1808/CH3/EX3.35/Chapter3_Exampl35.sce
new file mode 100644
index 000000000..da803cfd5
--- /dev/null
+++ b/1808/CH3/EX3.35/Chapter3_Exampl35.sce
@@ -0,0 +1,27 @@
+clc
+clear
+//INPUT DATA
+nt=0.8;//Thermal efficiency in percentage
+nc=0.8;//compressor efficiency in percentage
+cp=1.005;//specific pressure
+cv=0.718;//specific volume
+R=0.287;//gas constant
+g=1.4;//constant
+t1=300;//temperature in K
+t3=1500;//temperature in K
+Rp=10;//pressure ratio
+
+//CALCULATIONS
+t2=t1*((Rp)^((g-1)/g));//temperature in K
+t21=t1+((t2-t1)/(nc));//temperature in K
+t4=t3/((Rp)^((g-1)/g));//temperature in K
+t41=t3-(nt*(t3-t4));//temperature in K
+wna=cp*((t3-t41)-(t21-t1));//net work done in kJ/kg
+ng=wna/(cp*(t3-t21))*100;//Thermal efficiency in percentage
+Rw=wna/(cp*(t3-t41));//work ratio
+
+//OUTPUT
+printf('(i)Net work done is %3.4f kJ/kg \n (ii)Thermal efficiency is %3.2f percentage \n (iii)Work ratio is %3.4f ',wna,ng,Rw)
+
+
+