diff options
Diffstat (limited to '3850/CH31/EX31.3')
-rw-r--r-- | 3850/CH31/EX31.3/Ex31_3.sce | 20 | ||||
-rw-r--r-- | 3850/CH31/EX31.3/Ex31_3.txt | 2 |
2 files changed, 22 insertions, 0 deletions
diff --git a/3850/CH31/EX31.3/Ex31_3.sce b/3850/CH31/EX31.3/Ex31_3.sce new file mode 100644 index 000000000..13673936d --- /dev/null +++ b/3850/CH31/EX31.3/Ex31_3.sce @@ -0,0 +1,20 @@ + +//To Calculate the Capacitance of a parallel plate capacitor
+
+//Example 31.3
+
+clear;
+
+clc;
+
+a=20*10^-2;//Length of Side of Parallel Plate Capacitor
+
+A=a^2;//Area of the Capacitor Plate
+
+d=1*10^-3;//Separation between the two plates
+
+e0=8.85*10^-12;//Permitivity in farad/meter
+
+C=e0*A/d;//Formula for finding capacitance of parallel plate capacitor
+
+printf("capacitance of the parallel plate capacitor=%f pF",C*10^12);
diff --git a/3850/CH31/EX31.3/Ex31_3.txt b/3850/CH31/EX31.3/Ex31_3.txt new file mode 100644 index 000000000..1ffb50210 --- /dev/null +++ b/3850/CH31/EX31.3/Ex31_3.txt @@ -0,0 +1,2 @@ + + capacitance of the parallel plate capacitor=354.000000 pF
\ No newline at end of file |