diff options
Diffstat (limited to '3648/CH12/EX12.6')
-rw-r--r-- | 3648/CH12/EX12.6/Ex12_6.sce | 10 | ||||
-rw-r--r-- | 3648/CH12/EX12.6/Ex12_6.txt | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/3648/CH12/EX12.6/Ex12_6.sce b/3648/CH12/EX12.6/Ex12_6.sce new file mode 100644 index 000000000..1067a8af5 --- /dev/null +++ b/3648/CH12/EX12.6/Ex12_6.sce @@ -0,0 +1,10 @@ +//Example 12_6
+clc();
+clear;
+//To findout how much electricity is needed
+Tc=278 //Units in K
+Th=293 //Units in K
+COP=Tc/(Th-Tc) //Units in ratio
+Qc=210000 //Units in J
+W=Qc/COP //Units in J
+printf("The amount of Electricity is required is Delta W=%d J",W)
diff --git a/3648/CH12/EX12.6/Ex12_6.txt b/3648/CH12/EX12.6/Ex12_6.txt new file mode 100644 index 000000000..f715d10e0 --- /dev/null +++ b/3648/CH12/EX12.6/Ex12_6.txt @@ -0,0 +1 @@ +The amount of Electricity is required is Delta W=11330 J
\ No newline at end of file |