summaryrefslogtreecommitdiff
path: root/3785/CH6/EX6.6/Ex6_6.sce
blob: 8bd416b173048bcfda6422f5b159ef91c5bfd8ea (plain)
1
2
3
4
5
6
7
8
9
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);