Sunday, August 29, 2021

BJT: RC coupled single stage amplifier

 

Common emitter RC coupled amplifier.

The common emitter RC coupled amplifier is one of the simplest and elementary transistor amplifier that can be made. Don’t expect much boom from this little circuit, the main purpose of this circuit is pre-amplification i.e to make weak signals strong enough for further processing or amplification. If designed properly, this amplifier can provide excellent signal characteristics. The circuit diagram of a single stage common emitter RC coupled amplifier using transistor is shown below.


Capacitor C1 is the input DC decoupling capacitor which blocks any DC component if present in the input signal from reaching the Q1 base. If any external DC voltage reaches the base of Q1, it will alter the biasing conditions and affects the performance of the amplifier.

R1 and R4 are the biasing resistors. This network provides the transistor Q1’s base with the necessary bias voltage to drive it into the active region. The region of operation where the transistor is completely switched of is called cut-off region and the region of operation where the transistor is completely switched ON (like a closed switch) is called saturation region. The region in between cut-off and saturation is called active region. For a transistor amplifier to function properly, it should operate in the active region. 

C3 is the output DC decoupling capacitor. It prevents any DC voltage from entering into the succeeding stage from the present stage. If this capacitor is not used the output of the amplifier (Vout) will be clamped by the DC level present at the transistors collector.

R2 is the collector resistor and R3 is the emitter resistor.

Friday, August 13, 2021

Python: Reminder Alerts program

 This program will give you Attention message for every time interval you set in time.sleep(time_in_seconds)

import os

import time

from plyer import notification

 

if __name__ == "__main__":

    while True:

        notification.notify(title = "ATTENTION!!!",

        message = "Take a break! It has been an hour!",

         timeout = 10)

        time.sleep(3600)


Output:



Some useful parameters

Dielectric constant  Metals have infinite Dielectric constant  As usually metals permittivity is very large than of free space hence its Die...