diff options
Diffstat (limited to '3850/CH27/EX27.3/Ex27_3.sce')
-rw-r--r-- | 3850/CH27/EX27.3/Ex27_3.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3850/CH27/EX27.3/Ex27_3.sce b/3850/CH27/EX27.3/Ex27_3.sce new file mode 100644 index 000000000..0317915f0 --- /dev/null +++ b/3850/CH27/EX27.3/Ex27_3.sce @@ -0,0 +1,18 @@ + +//To Find the ratio of Cp/Cv
+
+//Example 27.3
+
+clc;
+
+clear;
+
+Cv=5;//Molar Heat Capacity of Gas at constant volume
+
+R=2;//Universal Gas constant in cal/mol-K
+
+Cp=Cv+R;//Molar Heat Capacity of Gas at constant pressure
+
+gama=Cp/Cv;//The ratio Cp/Cv
+
+printf("Cp/Cv=%f",gama);
|