blob: 0242a9496c3196068929e250c5fe6a8747c0c512 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//chapter22
//example22.9
//page497
R_L=10d3 // ohm
g_fs=3000d-6 // mho
// since rd >> R_L, we can write
Av=g_fs*R_L
printf("voltage amplification of the circuit = %.3f \n",Av)
|