Skip to main content
  1. Resources/
  2. Study Materials/
  3. Electronics & Communication Engineering/
  4. ECE Semester 3/

Electronic Circuits & Networks (4331101) - Summer 2023 Solution

17 mins· ·
Study-Material Solutions Electronic-Circuits Networks 4331101 2023 Summer
Milav Dabgar
Author
Milav Dabgar
Experienced lecturer in the electrical and electronic manufacturing industry. Skilled in Embedded Systems, Image Processing, Data Science, MATLAB, Python, STM32. Strong education professional with a Master’s degree in Communication Systems Engineering from L.D. College of Engineering - Ahmedabad.
Table of Contents

Question 1(a) [3 marks]
#

Define (i) Node (ii) Branch and (iii) Loop for electronic network.

Answer:

TermDefinition
NodeA point where two or more elements are connected together
BranchA single element or path between two nodes
LoopA closed path in a network where no node is traversed more than once

Diagram:

graph LR
    A((Node A)) --- B((Node B)) --- C((Node C)) --- D((Node D)) --- A
    A --- C
    style A fill:#f9f,stroke:#333,stroke-width:2px
    style B fill:#bbf,stroke:#333,stroke-width:2px
    style C fill:#f9f,stroke:#333,stroke-width:2px
    style D fill:#bbf,stroke:#333,stroke-width:2px

Mnemonic: “NBL: Networks Begin with Loops”

Question 1(b) [4 marks]
#

Three resistors of 20 Ω, 30 Ω and 50 Ω are connected in parallel across 60 V supply. Find (i) Current flowing through each resistor and Total current (ii) Equivalent Resistance.

Answer:

Diagram:

graph LR
    A[60V] --- B((+))
    B --- C[20Ω] --- D((-))
    B --- E[30Ω] --- D
    B --- F[50Ω] --- D
    D --- A

CalculationValue
Current through 20 Ω resistor: I₁ = V/R₁ = 60/203 A
Current through 30 Ω resistor: I₂ = V/R₂ = 60/302 A
Current through 50 Ω resistor: I₃ = V/R₃ = 60/501.2 A
Total current: I = I₁ + I₂ + I₃ = 3 + 2 + 1.26.2 A
Equivalent resistance: Req = V/I = 60/6.29.68 Ω

Mnemonic: “PIV: Parallel Increases the current, Voltage remains the same”

Question 1(c) [7 marks]
#

Explain Series and Parallel connection for Capacitors.

Answer:

ConnectionFormulaCharacteristics
Series Connection1/C_eq = 1/C₁ + 1/C₂ + 1/C₃ + …- Equivalent capacitance is less than smallest capacitor
- Same current in each capacitor
- Total voltage divides across capacitors
- Increases effective dielectric strength
Parallel ConnectionC_eq = C₁ + C₂ + C₃ + …- Equivalent capacitance is sum of all capacitors
- Same voltage across each capacitor
- Total charge is sum of individual charges
- Increases effective plate area

Diagram:

graph LR
    subgraph Series
        A[+] --- B[C₁] --- C[C₂] --- D[C₃] --- E[-]
    end

    subgraph Parallel
        F[+] --- G[C₁] --- H[-]
        F --- I[C₂] --- H
        F --- J[C₃] --- H
    end

Mnemonic: “CAPE: Capacitors Add in Parallel, Eliminate in Series”

Question 1(c) OR [7 marks]
#

Explain Series and Parallel connection for Inductors.

Answer:

ConnectionFormulaCharacteristics
Series ConnectionL_eq = L₁ + L₂ + L₃ + …- Equivalent inductance is sum of all inductors
- Same current flows through each inductor
- Total voltage is sum of individual voltages
- Flux linkage adds
Parallel Connection1/L_eq = 1/L₁ + 1/L₂ + 1/L₃ + …- Equivalent inductance is less than smallest inductor
- Same voltage across each inductor
- Total current divides among inductors
- Magnetic coupling affects actual value

Diagram:

graph LR
    subgraph Series
        A[+] --- B((L₁)) --- C((L₂)) --- D((L₃)) --- E[-]
    end

    subgraph Parallel
        F[+] --- G((L₁)) --- H[-]
        F --- I((L₂)) --- H
        F --- J((L₃)) --- H
    end

Mnemonic: “LIPS: inductors Link in Series, Partition in Parallel”

Question 2(a) [3 marks]
#

Define (i) Transform impedance, (ii) Driving point impedance, (iii) Transfer impedance.

Answer:

TermDefinition
Transform impedanceImpedance seen by signal passing from primary to secondary of a transformer
Driving point impedanceRatio of voltage to current at the same pair of terminals or port
Transfer impedanceRatio of voltage at one port to the current at another port

Diagram:

graph LR
    A[Input] --- B[Two Port Network] --- C[Output]
    D[Z11: Driving point impedance] -.-> B
    E[Z21: Transfer impedance] -.-> B
    F[Z12: Transfer impedance] -.-> B
    G[Z22: Driving point impedance] -.-> B

Mnemonic: “TDT: Transformers Drive Transfers”

Question 2(b) [4 marks]
#

Three resistances of 30, 50 and 90 ohms are connected in star. Find equivalent resistances in delta connection.

Answer:

Diagram:

graph TD
    A((A)) --- B[R₁=30Ω] --- D((D))
    B((B)) --- C[R₂=50Ω] --- D
    C((C)) --- E[R₃=90Ω] --- D

    subgraph Equivalent Delta
        A --- F[R₁₂] --- B
        B --- G[R₂₃] --- C
        C --- H[R₃₁] --- A
    end

Star to Delta Conversion FormulaCalculationResult
R₁₂ = (R₁×R₂ + R₂×R₃ + R₃×R₁)/R₃(30×50 + 50×90 + 90×30)/90105 Ω
R₂₃ = (R₁×R₂ + R₂×R₃ + R₃×R₁)/R₁(30×50 + 50×90 + 90×30)/30315 Ω
R₃₁ = (R₁×R₂ + R₂×R₃ + R₃×R₁)/R₂(30×50 + 50×90 + 90×30)/50189 Ω

Mnemonic: “PSR: Product over Sum of Resistors”

Question 2(c) [7 marks]
#

Explain π network.

Answer:

ConceptDescription
DefinitionA three-terminal network formed by three impedances - one in series and two in parallel
StructureTwo impedances connected from input and output to common point, one between input and output
ParametersCan be defined using Z, Y, h, or ABCD parameters
ApplicationsMatching networks, filters, attenuators, phase shifters

Diagram:

graph LR
    A[Input] --- C[Z₂] --- B[Output]
    A --- D[Z₁] --- E[Common/Ground]
    B --- F[Z₃] --- E

    style D fill:#bbf,stroke:#333,stroke-width:2px
    style C fill:#f96,stroke:#333,stroke-width:2px
    style F fill:#bbf,stroke:#333,stroke-width:2px

Mnemonic: “PIE: Pi Impedances connected at Ends”

Question 2(a) OR [3 marks]
#

List the types of network.

Answer:

Network TypesExamples
Based on LinearityLinear networks, Non-linear networks
Based on ComponentsPassive networks, Active networks
Based on StructureLumped networks, Distributed networks
Based on BehaviorBilateral networks, Unilateral networks
Based on TopologyT-networks, π-networks, Lattice networks
Based on PortsOne-port networks, Two-port networks, Multi-port networks

Diagram:

graph TD
    A[Network Types] --> B[Linear/Non-linear]
    A --> C[Passive/Active]
    A --> D[Lumped/Distributed]
    A --> E[Bilateral/Unilateral]
    A --> F[T/π/Lattice]
    A --> G[One-port/Two-port/Multi-port]

Mnemonic: “PLAN-TB: Passive-Linear-Active-Network-Topology-Bilateral”

Question 2(b) OR [4 marks]
#

Three resistances of 40, 60 and 80 ohms are connected in delta. Find equivalent resistances in star connection.

Answer:

Diagram:

graph TD
    A((A)) --- B[R₁₂=40Ω] --- B((B))
    B --- C[R₂₃=60Ω] --- C((C))
    C --- D[R₃₁=80Ω] --- A

    subgraph Equivalent Star
        A --- E[R₁] --- G((D))
        B --- F[R₂] --- G
        C --- H[R₃] --- G
    end

Delta to Star Conversion FormulaCalculationResult
R₁ = (R₁₂×R₃₁)/(R₁₂+R₂₃+R₃₁)(40×80)/(40+60+80)17.78 Ω
R₂ = (R₁₂×R₂₃)/(R₁₂+R₂₃+R₃₁)(40×60)/(40+60+80)13.33 Ω
R₃ = (R₂₃×R₃₁)/(R₁₂+R₂₃+R₃₁)(60×80)/(40+60+80)26.67 Ω

Mnemonic: “DPS: Delta Product over Sum”

Question 2(c) OR [7 marks]
#

Explain characteristic impedance of symmetrical T – network. Also derive the equation of ZOT in terms of ZOC and ZSC.

Answer:

ConceptDescription
Characteristic impedance (Z₀)Impedance that when connected at output port causes input impedance to equal Z₀
Symmetrical T-networkT-network where the series impedances on both sides are equal
ZOC and ZSCOpen-circuit and short-circuit impedances of the network

Diagram:

graph LR
    A[Input] --- B[Z₁] --- C((Middle)) --- D[Z₁] --- E[Output]
    C --- F[Z₂] --- G[Ground]
    H[Z₀] -.-> E

For a symmetrical T-network:

  • Series impedances (Z₁) are equal
  • Z₂ is the shunt impedance

The characteristic impedance (Z₀ᵀ) is given by: Z₀ᵀ = √(Z₀ᶜ × Z₀ˢᶜ)

Where:

  • Z₀ᶜ = Open circuit impedance = Z₁ + Z₂ + (Z₁×Z₂)/Z₁ = Z₁ + Z₂
  • Z₀ˢᶜ = Short circuit impedance = Z₁²/Z₂

Therefore: Z₀ᵀ = √[(Z₁ + Z₂) × Z₁²/Z₂] = √[Z₁² + Z₁×Z₂]

Mnemonic: “TOSS: T-network’s Open and Short circuit Square-root”

Question 3(a) [3 marks]
#

Explain Kirchhoff’s law.

Answer:

LawStatementApplication
Kirchhoff’s Current Law (KCL)Sum of currents entering a node equals sum of currents leaving itUsed for nodal analysis
Kirchhoff’s Voltage Law (KVL)Sum of voltages around any closed loop equals zeroUsed for mesh analysis

Diagram:

graph TD
    subgraph "Current Law"
        A((Node)) --- B[I₁]
        A --- C[I₂]
        A --- D[I₃]
        A --- E[I₄]
    end

    subgraph "Voltage Law"
        F[V₁] --- G[V₂] --- H[V₃] --- I[V₄] --- F
    end

Mnemonic: “KVC: Kirchhoff Verifies Current and Voltage laws”

Question 3(b) [4 marks]
#

Explain Mesh analysis.

Answer:

ConceptDescription
DefinitionMethod to solve circuit problems by applying KVL to each independent closed loop (mesh)
Procedure1. Assign mesh currents to each loop
2. Write KVL equations for each mesh
3. Solve the resulting system of equations
Advantages- Reduces number of equations
- Works well with circuits having many branches
- Suitable for problems with voltage sources

Diagram:

graph TD
    A((+)) --- B[R₁] --- C((B)) --- D[R₂] --- E((C))
    E --- F[R₃] --- G((D)) --- H[R₄] --- A
    C --- I[R₅] --- G

    J[I₁] -.-> B
    K[I₂] -.-> D
    L[I₃] -.-> I

Mnemonic: “MAIL: Mesh Analysis uses Independent Loops”

Question 3(c) [7 marks]
#

Use Thevenin’s theorem to find current through the 5 Ω resistor for given circuit.

Answer:

Diagram:

100V10Ω6ΩA5Ω8Ω15ΩB

Step 1: Remove 5Ω resistor and find open circuit voltage (Vₜₕ) Step 2: Find Thevenin’s equivalent resistance (Rₜₕ) Step 3: Calculate current through 5Ω resistor

StepCalculationResult
VₜₕVoltage between A and B with 5Ω removed38.46 V
RₜₕEquivalent resistance seen from A and B with 100V source shorted3.6 Ω
CurrentI = Vₜₕ/(Rₜₕ + 5) = 38.46/(3.6 + 5)4.47 A

Mnemonic: “TVR: Thevenin replaces Voltage and Resistance”

Question 3(a) OR [3 marks]
#

State and explain Superposition Theorem.

Answer:

ConceptDescription
StatementIn a linear circuit with multiple sources, the response at any point equals the sum of responses caused by each source acting alone
Procedure1. Consider one source at a time
2. Replace other voltage sources with short circuits
3. Replace other current sources with open circuits
4. Find individual responses
5. Add all responses algebraically
LimitationOnly applicable to linear circuits and for voltage/current responses

Diagram:

graph LR
    A[Original Circuit] --> B[Circuit with V₁ only]
    A --> C[Circuit with V₂ only]
    B --> D[Response R₁]
    C --> E[Response R₂]
    D --> F[Total Response = R₁ + R₂]
    E --> F

Mnemonic: “SUPER: Sources Used Progressively Equals Response”

Question 3(b) OR [4 marks]
#

Explain method of drawing dual network using any circuit.

Answer:

StepDescription
Convert to graphDraw the circuit as a planar graph
Draw dual graphPlace a node in each region of original graph
Connect nodesDraw edges crossing each edge of original graph
Replace elements- Resistance R becomes conductance 1/R
- Voltage source becomes current source
- Series becomes parallel
- Impedance Z becomes admittance 1/Z

Diagram:

OriVg1ina--lRR13C--i--r-R-c2uitDIu1al--CGGi13r--c--u-G-i2t

Mnemonic: “DVSG: Dual transforms Voltage to Series to Graphs”

Question 3(c) OR [7 marks]
#

Find out Norton’s equivalent circuit for the given network. Find out load current if (i) RL = 3 KΩ (ii) RL = 1.5 Ω

Answer:

Diagram:

C10B2VkΩDB2kBΩ2kΩEB2kBΩ2kΩABRL

Step 1: Find Norton’s current (IN) Step 2: Find Norton’s resistance (RN) Step 3: Calculate load currents

StepCalculationResult
INShort circuit current from A to B1.25 mA
RNEquivalent resistance seen from A to B with 10V source shorted1 kΩ
IL (RL = 3 KΩ)IL = IN × RN/(RN + RL) = 1.25 × 1/(1 + 3)0.31 mA
IL (RL = 1.5 Ω)IL = IN × RN/(RN + RL) = 1.25 × 1000/(1000 + 1.5)1.25 mA

Mnemonic: “NICE: Norton’s circuit Is Current Equivalent”

Question 4(a) [3 marks]
#

Derive the equation of Quality factor Q for a coil.

Answer:

ParameterRelationship
Q factor definitionRatio of energy stored to energy dissipated per cycle
Coil impedanceZ = R + jωL
ReactanceXL = ωL
Quality factorQ = XL/R = ωL/R

Diagram:

--LR-------

For a coil, the energy stored is in the magnetic field (in the inductor), while energy dissipated is in the resistance. From this:

Q = 2π × (Energy stored)/(Energy dissipated per cycle) Q = ωL/R

Mnemonic: “QREL: Quality Relates Energy to Loss”

Question 4(b) [4 marks]
#

A series RLC circuit has R = 30 Ω, L = 0.5 H and C = 5 µF. Calculate (i) Q factor, (ii) BW, (iii) Upper cut off and lower cut off frequencies.

Answer:

Diagram:

graph LR
    A[Input] --- B[R=30Ω] --- C[L=0.5H] --- D[C=5µF] --- E[Output]

ParameterFormulaCalculationResult
Resonant frequency (f₀)f₀ = 1/(2π√LC)1/(2π√(0.5×5×10⁻⁶))100.53 Hz
Q factorQ = (1/R)√(L/C)(1/30)√(0.5/(5×10⁻⁶))105.57
Bandwidth (BW)BW = f₀/Q100.53/105.570.952 Hz
Lower cutoff (f₁)f₁ = f₀ - BW/2100.53 - 0.952/2100.05 Hz
Upper cutoff (f₂)f₂ = f₀ + BW/2100.53 + 0.952/2101.01 Hz

Mnemonic: “QBCUT: Quality Bandwidth Cutoff Uniquely Related”

Question 4(c) [7 marks]
#

Explain Mutual Inductance along with Co-efficient of mutual inductance. Also derive the equation of K.

Answer:

ConceptDescription
Mutual Inductance (M)Property where current change in one coil induces voltage in adjacent coil
DefinitionRatio of induced voltage in secondary to rate of change of current in primary
FormulaM = k√(L₁L₂)
Coefficient of coupling (k)Measure of magnetic coupling between coils (0 ≤ k ≤ 1)

Diagram:

graph LR
    A[I₁] --- B[L₁] --- C
    D[I₂] --- E[L₂] --- F

    G[Mutual Inductance M] -.-> B
    G -.-> E

For two inductors L₁ and L₂, mutual inductance M is: M = k√(L₁L₂)

Where coefficient of coupling k is: k = M/√(L₁L₂)

k represents fraction of magnetic flux from one coil linking with another coil. For perfectly coupled coils, k = 1 For no coupling, k = 0

Mnemonic: “MKL: Mutual coupling K Links inductors”

Question 4(a) OR [3 marks]
#

Explain the types of coupling for coupled circuit.

Answer:

Type of CouplingCharacteristicsApplications
Tight/Close Coupling (k≈1)- Nearly all flux links both coils
- High transfer efficiency
- k value close to 1
Transformers, Power transfer
Loose Coupling (k≪1)- Small fraction of flux links second coil
- Lower transfer efficiency
- k value much less than 1
RF circuits, Tuned filters
Critical Coupling (k=kc)- Optimum coupling for bandpass response
- Maximum power transfer at resonance
Bandpass filters, IF transformers
Inductive Coupling- Coupling via magnetic fieldTransformers, Wireless charging
Capacitive Coupling- Coupling via electric fieldSignal coupling, Capacitive sensors

Diagram:

graph LR
    subgraph "Tight Coupling"
        A1[Primary] --- B1[k ≈ 1] --- C1[Secondary]
    end

    subgraph "Loose Coupling"
        A2[Primary] --- B2[k ≪ 1] --- C2[Secondary]
    end
    
    subgraph "Critical Coupling"
        A3[Primary] --- B3[k = kc] --- C3[Secondary]
    end

Mnemonic: “TLC: Tight, Loose, Critical couplings”

Question 4(b) OR [4 marks]
#

A parallel resonant circuit having inductance of 1 mH with quality factor Q = 100, resonant frequency Fr = 100 KHz. Find out (i) Required capacitance C, (ii) Resistance R of the coil, (iii) BW.

Answer:

Diagram:

graph TD
    A[Input] --- B((Node))
    B --- C[L=1mH]
    B --- D[C=?]
    B --- E[Output]
    C --- F[R=?]

ParameterFormulaCalculationResult
Capacitance (C)C = 1/(4π²f²L)1/(4π²×(100×10³)²×1×10⁻³)2.533 nF
Coil Resistance (R)R = ωL/Q2π×100×10³×1×10⁻³/1006.28 Ω
Bandwidth (BW)BW = fr/Q100×10³/1001 kHz

Mnemonic: “RCB: Resonance needs Capacitance and Bandwidth”

Question 4(c) OR [7 marks]
#

Explain Band width and Selectivity of a series RLC circuit. Also establish the relation between Q factor and BW for series resonance circuit.

Answer:

ParameterDefinitionRelationship
Bandwidth (BW)Frequency range between half-power pointsBW = f₂ - f₁ = ω₂ - ω₁ = R/L
SelectivityAbility to differentiate between signals of different frequenciesInversely proportional to BW
Q factorRatio of resonant frequency to bandwidthQ = ω₀/BW = ω₀L/R

Diagram:

graph LR
    A[Input] --- B[R] --- C[L] --- D[C] --- E[Output]

    subgraph "Frequency Response"
        F[Amplitude] --- G[f₀]
        H[BW = f₂ - f₁] -.-> G
    end

For a series RLC circuit:

  • At resonance (f₀), impedance is minimum (= R)
  • Half-power points occur when impedance = √2×R
  • At these points, power is half of maximum power

Bandwidth (BW) = ω₂ - ω₁ = R/L Q factor = ω₀L/R = ω₀/BW

Therefore, BW = ω₀/Q = 2πf₀/Q

This shows Q factor and bandwidth are inversely related: Higher Q → Narrower bandwidth → Better selectivity

Mnemonic: “BQS: Bandwidth and Q determine Selectivity”

Question 5(a) [3 marks]
#

Design a symmetrical T type attenuator to give attenuation of 40 dB and work in to the load of 300 Ω resistance.

Answer:

Diagram:

graph LR
    A[Input] --- B[Z₁/2] --- C((Node)) --- D[Z₁/2] --- E[Output]
    C --- F[Z₂] --- G[Ground]
    H[300Ω] -.-> E

ParameterFormulaCalculationResult
Attenuation (N)N = 10^(dB/20)10^(40/20)100
Impedance ratio (K)K = (N+1)/(N-1)(100+1)/(100-1)1.02
Z₁Z₁ = R₀[(K-1)/K]300[(1.02-1)/1.02]5.88 Ω
Z₂Z₂ = R₀[2K/(K²-1)]300[2×1.02/(1.02²-1)]594.12 Ω

Mnemonic: “TANZ: T-Attenuator Needs Z-parameters”

Question 5(b) [4 marks]
#

Give classification of filters.

Answer:

ClassificationTypesCharacteristics
Based on Frequency Response- Low Pass
- High Pass
- Band Pass
- Band Stop
- Passes frequencies below cutoff
- Passes frequencies above cutoff
- Passes frequencies within a band
- Blocks frequencies within a band
Based on Components- Passive Filters
- Active Filters
- Uses R, L, C elements
- Uses active devices with RC
Based on Design Approach- Constant-k Filters
- m-derived Filters
- Composite Filters
- Simplest design
- Better cutoff characteristics
- Combines advantages
Based on Technology- LC Filters
- Crystal Filters
- Ceramic Filters
- Digital Filters
- Uses inductors and capacitors
- Uses piezoelectric crystals
- Uses piezoelectric ceramics
- Implemented in software

Diagram:

graph TD
    A[Filters] --> B[Frequency Response]
    A --> C[Components]
    A --> D[Design Approach]
    A --> E[Technology]

    B --> F[Low Pass]
    B --> G[High Pass]
    B --> H[Band Pass]
    B --> I[Band Stop]

Mnemonic: “FLAC: Filters: Low-pass, Active, Constant-k”

Question 5(c) [7 marks]
#

Explain constant K Low Pass Filter.

Answer:

ConceptDescription
DefinitionFilter where impedance product Z₁Z₂ = k² (constant) at all frequencies
Circuit TypesT-section and π-section
T-section componentsSeries inductors (L/2) and shunt capacitor (C)
π-section componentsSeries inductor (L) and shunt capacitors (C/2)
Cutoff frequencyfc = 1/π√(LC)
Characteristic impedanceR₀ = √(L/C)

Diagram:

graph LR
    subgraph "T-section"
        A1[Input] --- B1[L/2] --- C1((Node)) --- D1[L/2] --- E1[Output]
        C1 --- F1[C] --- G1[Ground]
    end

    subgraph "π-section"
        A2[Input] --- B2((Node))
        B2 --- C2[C/2] --- G2[Ground]
        B2 --- D2[L] --- E2((Node)) --- F2[Output]
        E2 --- H2[C/2] --- G2
    end

The constant-k low pass filter has:

  • Cutoff frequency: fc = 1/π√(LC)
  • Design impedance: R₀ = √(L/C)
  • Pass band: 0 to fc
  • Attenuation band: Above fc
  • Gradual transition from pass band to stop band

Mnemonic: “CLPT: Constant-k Low Pass needs T-section”

Question 5(a) OR [3 marks]
#

Design a high pass filter with T section having a cut-off frequency of 1.5 KHz with a load resistance of 400 Ω.

Answer:

Diagram:

graph LR
    A[Input] --- B[C/2] --- C((Node)) --- D[C/2] --- E[Output]
    C --- F[L] --- G[Ground]
    H[400Ω] -.-> E

ParameterFormulaCalculationResult
Design impedance (R₀)R₀ = Load resistanceGiven400 Ω
Cutoff frequency (fc)fc = GivenGiven1.5 kHz
Inductor (L)L = R₀/2πfc400/(2π×1500)42.44 mH
Capacitor (C)C = 1/(2πfcR₀)1/(2π×1500×400)0.265 µF

Mnemonic: “HCL: High-pass needs Capacitor and inductor”

Question 5(b) OR [4 marks]
#

Give classification of attenuators.

Answer:

ClassificationTypesCharacteristics
Based on Configuration- T-attenuator
- π-attenuator
- Bridged-T
- Lattice
- Series-shunt-series
- Shunt-series-shunt
- Balanced bridge
- Balanced network
Based on Symmetry- Symmetrical
- Asymmetrical
- Equal impedance
- Unequal impedance
Based on Control- Fixed
- Variable
- Programmable
- Constant attenuation
- Adjustable attenuation
- Digitally controlled
Based on Technology- Resistive
- Reactive
- Active
- Uses resistors
- Uses reactances
- Uses active devices

Diagram:

graph TD
    A[Attenuators] --> B[Configuration]
    A --> C[Symmetry]
    A --> D[Control]
    A --> E[Technology]

    B --> F[T-type]
    B --> G[π-type]
    B --> H[Bridged-T]
    B --> I[Lattice]

Mnemonic: “CAST: Configuration, Adjustable, Symmetry, Technology”

Question 5(c) OR [7 marks]
#

Explain constant K High Pass Filter.

Answer:

ConceptDescription
DefinitionFilter passing frequencies above cutoff, with Z₁Z₂ = k² (constant)
Circuit TypesT-section and π-section
T-section componentsSeries capacitors (C/2) and shunt inductor (L)
π-section componentsSeries capacitor (C) and shunt inductors (L/2)
Cutoff frequencyfc = 1/π√(LC)
Characteristic impedanceR₀ = √(L/C)

Diagram:

graph LR
    subgraph "T-section"
        A1[Input] --- B1[C/2] --- C1((Node)) --- D1[C/2] --- E1[Output]
        C1 --- F1[L] --- G1[Ground]
    end

    subgraph "π-section"
        A2[Input] --- B2((Node))
        B2 --- C2[L/2] --- G2[Ground]
        B2 --- D2[C] --- E2((Node)) --- F2[Output]
        E2 --- H2[L/2] --- G2
    end

The constant-k high pass filter has:

  • Cutoff frequency: fc = 1/π√(LC)
  • Design impedance: R₀ = √(L/C)
  • Pass band: Above fc
  • Attenuation band: 0 to fc
  • Gradual transition from pass band to stop band
  • Component values are dual of low pass filter (L and C swap places)

Mnemonic: “CHTS: Constant-k High-pass uses T-Section”

Related

Electronic Circuits & Networks (4331101) - Winter 2023 Solution
15 mins
Study-Material Solutions Electronic-Circuits Networks 4331101 2023 Winter
Electronic Circuits & Networks (4331101) - Winter 2022 Solution
18 mins
Study-Material Solutions Electronic-Circuits Networks 4331101 2022 Winter
Linear Integrated Circuit (4341105) - Summer 2023 Solution
18 mins
Study-Material Solutions Linear-Integrated-Circuit 4341105 2023 Summer
Digital Communication (4341102) - Summer 2023 Solution
20 mins
Study-Material Solutions Digital-Communication 4341102 2023 Summer
Microprocessor and Microcontroller (4341101) - Summer 2023 Solution
23 mins
Study-Material Solutions Microprocessor 4341101 2023 Summer
Electronic Circuits & Applications (4321103) - Winter 2023 Solution
16 mins
Study-Material Solutions Electronics 4321103 2023 Winter