summaryrefslogtreecommitdiff
path: root/2345/CH5/EX5.5/Ex5_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '2345/CH5/EX5.5/Ex5_5.sce')
-rwxr-xr-x2345/CH5/EX5.5/Ex5_5.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/2345/CH5/EX5.5/Ex5_5.sce b/2345/CH5/EX5.5/Ex5_5.sce
new file mode 100755
index 000000000..f719d04d9
--- /dev/null
+++ b/2345/CH5/EX5.5/Ex5_5.sce
@@ -0,0 +1,10 @@
+//Finding capacitance
+//Example 5.5(pg 195)
+clc
+clear
+A=0.2//surface area of plate in m^2
+t=2.5*(10^-5)//thickness of dielectric in m
+K0=8.854*(10^-12)//permittivity of air in F/m
+K=5//relative permittivity of dielectric
+C=(K*K0*A*(10^6))/t//capacitance of condenser in microF
+printf('Thus the Capacitance of condenser is %3.3f microF',C)