diff options
Diffstat (limited to '3871/CH6/EX6.13/Ex6_13.sce')
-rw-r--r-- | 3871/CH6/EX6.13/Ex6_13.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3871/CH6/EX6.13/Ex6_13.sce b/3871/CH6/EX6.13/Ex6_13.sce new file mode 100644 index 000000000..b37087a45 --- /dev/null +++ b/3871/CH6/EX6.13/Ex6_13.sce @@ -0,0 +1,19 @@ +//===========================================================================
+//chapter 6 example 13
+clc;clear all;
+
+//variable declaration
+Cv = 70*10^-12; //capacitance in F
+V =10000; //electrostatic measurement in V
+Vv = 100; //reading in V
+
+//calculations
+Vc = V-Vv; //voltage across series capacitor in V
+//since the capacitors are connected in series ,te charge on each is same
+//Vv*Cv = Vc*C
+C = (Vv*Cv)/(Vc); //capacitance in uuF
+
+//result
+mprintf("capacitance of the condenser = %3.4f uuF ",(C*10^12));
+
+
|