summaryrefslogtreecommitdiff
path: root/1052/CH23/EX23.2/232.sce
diff options
context:
space:
mode:
Diffstat (limited to '1052/CH23/EX23.2/232.sce')
-rwxr-xr-x1052/CH23/EX23.2/232.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1052/CH23/EX23.2/232.sce b/1052/CH23/EX23.2/232.sce
new file mode 100755
index 000000000..1782871f5
--- /dev/null
+++ b/1052/CH23/EX23.2/232.sce
@@ -0,0 +1,8 @@
+clc;
+//Example 23.2 page no 323
+printf("Example 23.2 page no 323\n\n");
+//calculation of aerodynamic diameter of irregular saped sphere
+d_e=1.3//eq. diameter,micron
+sg=2.35
+d_pa=d_e*sqrt(sg)//aerodynamic diameter
+printf("\n aerodynamic diameter d_pa=%f micron",d_pa);