blob: 17c8bb40cbb0d90bc938830f1790ee54bd378617 (
plain)
1
2
3
4
5
6
7
8
|
// Example 5.1:COUPLING CAPACITOR
clc;
clear;
close;
Rs=10;//series resistance in killo ohms
Xc1= Rs/10;//reactance at 20Hz
C1=(1/(2*%pi*20*Xc1*10^3))*10^6;//CAPACITANCE IN MICRO FARAD
disp(C1,"capacitance in micro farad is as this is not a standar value will select 10 micro farad")
|