blob: 2031c2f776b9e508155f63fb2c574d668acbb34b (
plain)
1
2
3
4
5
6
7
8
9
|
//Ex 3.18
clc;clear;close;
format('v',5);
f=2*1000;//Hz
R=10;//kohm(Assumed)(R1=R2=R)
C=1/(2*%pi*R*1000*f);//F
disp("Value of resistance R1=R2 can be choosen as 10 kohm")
disp(C*10^9,"Cpacitance(nF)");
disp("Value of resistance R4 can be choosen as 10 kohm & R3=2*R4=20 kohm for Beta to be 1/3");
|