diff options
Diffstat (limited to '3836/CH20/EX20.1/Ex20_1.sce')
-rw-r--r-- | 3836/CH20/EX20.1/Ex20_1.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3836/CH20/EX20.1/Ex20_1.sce b/3836/CH20/EX20.1/Ex20_1.sce new file mode 100644 index 000000000..e8fdf531d --- /dev/null +++ b/3836/CH20/EX20.1/Ex20_1.sce @@ -0,0 +1,19 @@ +clear +// + +//Introduction +gm=2*10**-3 +rd=2*10**3 //resistance in ohm +C=10**-6 //capacitance in farad +R=10**6 //resistance in ohm + + +//Calculation +G=-gm*rd //Small signal voltage gain +fc=1/(2*%pi*C*R) //frequency in Hz + +//Result +printf("\n Small signal voltage gain = %d ",G) + +printf("\n Low frequency cut off = %.2f Hz",fc) + |