diff options
Diffstat (limited to '1388/CH4/EX4.3')
-rwxr-xr-x | 1388/CH4/EX4.3/4_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1388/CH4/EX4.3/4_3.sce b/1388/CH4/EX4.3/4_3.sce new file mode 100755 index 000000000..baac444cc --- /dev/null +++ b/1388/CH4/EX4.3/4_3.sce @@ -0,0 +1,14 @@ +clc
+//initialisation of variables
+T= 1000 //K
+T1= 400 ///K
+w= 1000 //cal
+E= 0 //cal
+//CALCULATIONS
+q= w-E
+W= q*(T-T1)/T
+q1= W-q
+W1= -q1
+//RESULTS
+printf (' net work done by gas= %.1f cal',w)
+printf (' \n net work done on gas = %.f cal',W1)
|