I am trying to calculate bode plot of a circuit.
For proteus my frequency at -63dB is 18 kHz as sample the circuit connection and its bode plot is provided.
Using analytical approach I calculate the transfer function as
and its bode plot using matlab code is calculate using
R2=976; R1=(998e3); R3=22; C=8200e-12; num=([R2]); den=([2*C*R3*R1+2*C*R3*R2 (R1+R2)]); G=tf(num,den); options = bodeoptions; options.FreqUnits = 'Hz'; % or 'rad/second', 'rpm', etc. figure(1) bode(G,options); grid on The frequency for -63dB is 441 kHz.
Where am I making mistake please identify it?





