summaryrefslogtreecommitdiff
path: root/2135/CH1/EX1.39/Exa_1_39.sce
diff options
context:
space:
mode:
Diffstat (limited to '2135/CH1/EX1.39/Exa_1_39.sce')
-rwxr-xr-x2135/CH1/EX1.39/Exa_1_39.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2135/CH1/EX1.39/Exa_1_39.sce b/2135/CH1/EX1.39/Exa_1_39.sce
new file mode 100755
index 000000000..5e4b95568
--- /dev/null
+++ b/2135/CH1/EX1.39/Exa_1_39.sce
@@ -0,0 +1,17 @@
+//Exa 1.39
+clc;
+clear;
+close;
+format('v',7);
+
+//Given Data :
+V=0.01653;//m^3
+m=5.6;//Kg
+M=28;//Kg/Kgmol
+p=200;//bar
+Z=0.605;
+Rdash=8314.3;//J/Kgk
+R=Rdash/M;//J/Kgk
+//p*V=m*Z*R*T
+T=p*10^5*V/m/Z/R;//K
+disp(T,"Temperature in K : ");