diff options
Diffstat (limited to '3850/CH31/EX31.3/Ex31_3.sce')
-rw-r--r-- | 3850/CH31/EX31.3/Ex31_3.sce | 20 |
1 files changed, 20 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);
|