summaryrefslogtreecommitdiff
path: root/1991/CH9/EX9.2/2.sce
blob: a9f3cafd5f348a1512930937ea8c9c1fb6f946ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clc
clear
//input
v=5.7*10^-4 //velocity
ro=830 //density
d=4*10^-3
V=3.2*10^3 //pd
g=9.8 //acceleration due to gravity
k=4.2*10^-4 //resistive force of air
//calculation
r=sqrt(3*k*v/(4*%pi*ro*g))//equating the forces on drop
q=4*%pi*r^3*ro*g/(3*V/d)//electric firld between plates
//output
printf("the radius of oil drop is %3.3e m",r)
printf("\n the value of electric firld between plates is %3.3e C",q)