summaryrefslogtreecommitdiff
path: root/3850/CH31/EX31.8/Ex31_8.sce
blob: 4daf1a742abc5b5670ee30c259784859c781578b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

//To Calculate the Equivalent Capacitance

//Example 31.8

clear;

clc;

C0=40*10^-6;//Capacitance of the first Capacitor

K=4;//Dielectric Constant

C1=K*C0;//Capacitance of the capacitor C0 with the dielectric

C2=40*10^-6;//Capacitance of the second Capacitor

C=C1*C2/(C1+C2);//formula for finding the equivalent capacitor connected in series

printf("Equivalent capacitance of the system= %f uF",C*10^6);