summaryrefslogtreecommitdiff
path: root/2873/CH4/EX4.6
diff options
context:
space:
mode:
Diffstat (limited to '2873/CH4/EX4.6')
-rwxr-xr-x2873/CH4/EX4.6/Ex4_6.jpgbin0 -> 138001 bytes
-rwxr-xr-x2873/CH4/EX4.6/Ex4_6.sce31
2 files changed, 31 insertions, 0 deletions
diff --git a/2873/CH4/EX4.6/Ex4_6.jpg b/2873/CH4/EX4.6/Ex4_6.jpg
new file mode 100755
index 000000000..4be595d06
--- /dev/null
+++ b/2873/CH4/EX4.6/Ex4_6.jpg
Binary files differ
diff --git a/2873/CH4/EX4.6/Ex4_6.sce b/2873/CH4/EX4.6/Ex4_6.sce
new file mode 100755
index 000000000..7475c7704
--- /dev/null
+++ b/2873/CH4/EX4.6/Ex4_6.sce
@@ -0,0 +1,31 @@
+// Display mode
+mode(0);
+// Display warning for floating point exception
+ieee(1);
+clear;
+clc;
+disp("Engineering Thermodynamics by Onkar Singh Chapter 4 Example 6")
+T1=(-15+273.15);//inside temperature in K
+T2=(35+273);//atmospheric temperature in K
+Q2=40;//refrigeration capacity of storage plant in tonnes
+disp("cold storage plant can be considered as refrigerator operating between given temperatures limits")
+disp("capacity of plant=heat to be extracted=Q2 in KW")
+disp("we know that,one ton of refrigeration as 3.52 KW ")
+disp("so Q2=Q2*3.52 in KW")
+Q2=Q2*3.52
+disp("carnot COP of plant(COP_carnot)=1/((T2/T1)-1)")
+COP_carnot=1/((T2/T1)-1)
+disp("performance is 1/4 of its carnot COP")
+disp("COP=COP_carnot/4")
+COP=COP_carnot/4
+disp("also actual COP=Q2/W")
+disp("W=Q2/COP in KW")
+W=Q2/COP
+disp("hence power required(W)in KW")
+W
+
+
+
+
+
+