summaryrefslogtreecommitdiff
path: root/2024/CH11/EX11.3/11_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '2024/CH11/EX11.3/11_3.sce')
-rwxr-xr-x2024/CH11/EX11.3/11_3.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2024/CH11/EX11.3/11_3.sce b/2024/CH11/EX11.3/11_3.sce
new file mode 100755
index 000000000..f073ee5c1
--- /dev/null
+++ b/2024/CH11/EX11.3/11_3.sce
@@ -0,0 +1,15 @@
+clc
+//Initialization of variables
+M=29
+m1=8.74
+m2=32.85
+fuel=100 //lbm
+//calculations
+mass=M*(m1+m2)
+AF=mass/fuel
+a2=9.75
+b2=12.19
+AF2=mass/(fuel+a2+b2)
+//results
+printf("Air fuel ratio = %.2f lbm air/lbm fuel",AF)
+printf("\n In dry air, Air-fuel ratio = %.1f lbm air/lbm fuel as fired",AF2)