diff options
Diffstat (limited to '779/CH4/EX4.4/4_4.sce')
-rwxr-xr-x | 779/CH4/EX4.4/4_4.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/779/CH4/EX4.4/4_4.sce b/779/CH4/EX4.4/4_4.sce new file mode 100755 index 000000000..97e44cff0 --- /dev/null +++ b/779/CH4/EX4.4/4_4.sce @@ -0,0 +1,17 @@ +// Part (a)
+m = 3;
+V1 = 0.22;
+P1 = 500e03;
+P2 = 100e03;
+V2 = V1*(P1/P2)^(1/1.2);
+dU = 3.56*(P2*V2-P1*V1);
+gama = 1.2;
+W = (P2*V2-P1*V1)/(1-gama);
+Q = dU+W;
+disp("J respectively",dU,W,Q,"Q,W and dU of the quasi static process are")
+// Part (b)
+Qb = 30e03;
+Wb = Qb-dU;
+disp("Joule",Wb,"Work transfer for the process is")
+// Part (c)
+disp("Wb is not equal to integral(p*dv) since the process is not quasi static")
|