summaryrefslogtreecommitdiff
path: root/3785/CH6/EX6.6/Ex6_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3785/CH6/EX6.6/Ex6_6.sce')
-rw-r--r--3785/CH6/EX6.6/Ex6_6.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3785/CH6/EX6.6/Ex6_6.sce b/3785/CH6/EX6.6/Ex6_6.sce
new file mode 100644
index 000000000..8bd416b17
--- /dev/null
+++ b/3785/CH6/EX6.6/Ex6_6.sce
@@ -0,0 +1,10 @@
+// Example 6_6
+clc;funcprot(0);
+// Given data
+V=0.1;// The speed of coating liquid in m/s
+nu=1.0*10^-6;// The liquid kinematic viscosity in m^2/s
+g=9.807;// The acceleration due to gravity in m/s^2
+
+// Calculation
+h=sqrt((2*nu*V)/g);// m
+printf("\nThe film thickness h=%1.3e m",h);