diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2345/CH15/EX15.30/Ex15_30.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2345/CH15/EX15.30/Ex15_30.sce')
-rwxr-xr-x | 2345/CH15/EX15.30/Ex15_30.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2345/CH15/EX15.30/Ex15_30.sce b/2345/CH15/EX15.30/Ex15_30.sce new file mode 100755 index 000000000..c33ebde03 --- /dev/null +++ b/2345/CH15/EX15.30/Ex15_30.sce @@ -0,0 +1,14 @@ +//Finding K and flux density
+//Example 15.30(pg. 411)
+clc
+clear
+V=15*(10^3)//potential difference applied in V
+A=0.02//surface area of plate in m^2
+d=0.001//distance between plates in m
+C=4.5*(10^-10)//Capacitance of capacitor in F
+Ko=8.854*(10^-12)//constant
+K=(C*d)/(Ko*A)//dielectric constant
+q=C*V//charge on condenser in C
+D=q/A//Electric flux density in C/m^2
+printf('Thus the Charge of condenser is %e Coulomb\n',q)
+printf('And the electric flux density of condenser is %e microF',D)
|