From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2175/CH2/EX2.1/2_1.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 2175/CH2/EX2.1/2_1.sce (limited to '2175/CH2/EX2.1/2_1.sce') diff --git a/2175/CH2/EX2.1/2_1.sce b/2175/CH2/EX2.1/2_1.sce new file mode 100755 index 000000000..9a128ac7a --- /dev/null +++ b/2175/CH2/EX2.1/2_1.sce @@ -0,0 +1,19 @@ +clc; + +x=0.9; +vg=0.1104; +v=x*vg; +disp("specific volume is:"); +disp("m^3/kg",v) + +hf=885; +h_fg=1912; +h=hf+x*h_fg; +disp("specific enthalpy is:"); +disp("kJ/kg",h); + +uf=883; +ug=2598; +u=(1-x)*uf+x*ug; +disp("specific internal energy is:"); +disp("kJ/kg",u); -- cgit