summaryrefslogtreecommitdiff
path: root/181/CH7/EX7.34/example7_34.sce
blob: e37a604748bc29dfef0b980c9c4b576dde0350b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Determine Zo,draw small signal model
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 7-34 in page 338

clear; clc; close;

// Given data
gm=1; // Transconductance in m-mho
rd=50*10^3; // Dynamic resistance in K-ohms
Rd=5*10^3; // Drain resistance in K-ohms

// Calculation
printf("The equivalent circuit at low-frequency small signal model is as shown in the figure\n");
Zo=(rd*Rd)/(Rd+rd);
printf("Zo = %0.2e ohms",Zo);

// Result
// Zo = 4.54 K-ohms