summaryrefslogtreecommitdiff
path: root/2219/CH6/EX6.19/Ex6_19.sce
diff options
context:
space:
mode:
Diffstat (limited to '2219/CH6/EX6.19/Ex6_19.sce')
-rwxr-xr-x2219/CH6/EX6.19/Ex6_19.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2219/CH6/EX6.19/Ex6_19.sce b/2219/CH6/EX6.19/Ex6_19.sce
new file mode 100755
index 000000000..a989b8b85
--- /dev/null
+++ b/2219/CH6/EX6.19/Ex6_19.sce
@@ -0,0 +1,15 @@
+// Chapter 6 example 19
+//------------------------------------------------------------------------------
+clc;
+clear;
+// Given data
+A = 100*100*10^-12; // Area of electrode
+er = 9.6; // relative permitivity
+t = 500*10^-6; // substrate thickness
+eo = 8.85*10^-12; // permitivity
+// Calculations
+C = (eo*er*A)/t; // capacitance in farad
+
+// Output
+mprintf('Capacitance = %3.2e pF',C*10^12);
+//------------------------------------------------------------------------------