diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3523/CH19/EX19.18.10/Ex19_10.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3523/CH19/EX19.18.10/Ex19_10.sce')
-rw-r--r-- | 3523/CH19/EX19.18.10/Ex19_10.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3523/CH19/EX19.18.10/Ex19_10.sce b/3523/CH19/EX19.18.10/Ex19_10.sce new file mode 100644 index 000000000..bc9d1af21 --- /dev/null +++ b/3523/CH19/EX19.18.10/Ex19_10.sce @@ -0,0 +1,14 @@ +clear all
+clc
+close
+
+a=25*10^-6;//jet radius in m
+b=750*10^-6;//concentric cylinder of radius
+q=50*10^-12;//charge
+l = 120*10^-6;//length of jet inside the cylinder
+Epsilon_o = 8.84*10^-12;
+C=(2*%pi*Epsilon_o*l)/log(b/a);
+printf("capacitance is %e F",C)
+r=50*10^-6;//drop radius
+Vp = (3*a^2*log(b/a)*q)/(8*%pi*Epsilon_o*r^3);
+printf("min voltage required for generating drops %f kV",Vp/1e3)
|