blob: f11228f319423b12f5ac2607fa96a3c49a01d09c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Calculate dynamic resistance
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 7-21 in page 328
clear; clc; close;
// Given data
mu=80; // Amplification factor
gm=400*10^-6; // Transconductance in micro-mho
// Calculation
rd=mu/gm;
printf("Dynamic resistance Rd = %0.1e ohm",rd);
// Result
// Rd = 0.2*10^6 ohm
|