diff options
Diffstat (limited to '1736/CH3/EX3.2/Ch03Ex2.sce')
-rwxr-xr-x | 1736/CH3/EX3.2/Ch03Ex2.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1736/CH3/EX3.2/Ch03Ex2.sce b/1736/CH3/EX3.2/Ch03Ex2.sce new file mode 100755 index 000000000..5cfc8a0f0 --- /dev/null +++ b/1736/CH3/EX3.2/Ch03Ex2.sce @@ -0,0 +1,11 @@ +// Scilab Code Ex3.2: Page-79 (2006)
+clc; clear;
+V0 = 11e-05; // Atomic volume of Cu, metre cube per kg
+K = 0.75e-011; // Compressibility of Cu, metre square per newton
+alpha = 49e-06; // Coefficient of thermal expansion, per K
+gama = 1.9; // The Grunesien parameter for Cu = 2.4
+Cv = alpha*V0/(K*gama); // Specific heat of Cu at constant volume, J/kg
+printf("\nThe specific heat capacity of Cu = %3.1e J/kg", Cv);
+
+// Result
+// The specific heat capacity of Cu = 3.8e+02 J/kg
|