diff options
Diffstat (limited to '2024/CH7/EX7.3/7_3.sce')
-rwxr-xr-x | 2024/CH7/EX7.3/7_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2024/CH7/EX7.3/7_3.sce b/2024/CH7/EX7.3/7_3.sce new file mode 100755 index 000000000..7c5d2eafa --- /dev/null +++ b/2024/CH7/EX7.3/7_3.sce @@ -0,0 +1,11 @@ +clc
+//Initialization of variables
+P=14.7 //psi
+t=60+460 //R
+R0=10.73 //psia ft^3/mol R
+//calculations
+v=R0*t/P
+m=28.96
+//results
+printf("volume = %d ft^3/mol",v)
+printf("\n Mass = %.2f lbm",m)
|