blob: 26e79328e3bb2f27b6766bab562e48ffbf64b5d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
clc
disp("Example 3.4")
printf("\n")
printf("Given")
disp("values of two capacitors are 2uF and 10uF")
C1=2*10^-6;C2=10*10^-6;
//For two capacitors in series
disp("Ceq=(C1*C2)/(C1+C2)")
//On solving for Ceq
Ceq=((C1*C2)/(C1+C2))*10^6
printf("Value of equivalent capacitance is %3.2fuF\n",Ceq)
disp("If C2=10pF")
C2=10*10^-12;
Ceq=((C1*C2)/(C1+C2))*10^12
printf("Value of equivalent capacitance is %3.2fpF\n",Ceq)
|