home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / maj / 2199 / examples / elec1.plt < prev    next >
Text File  |  1994-07-09  |  446b  |  27 lines

  1. # elec1.plt
  2.  
  3. paper size 11 by 8.5
  4.  
  5. # Electronics demo 1
  6. #
  7. # Bipolar Transistor (NPN) Mutual Characteristic
  8.  
  9. Ie(Vbe)=Ies*exp(Vbe/kT_q)
  10. Ic(Vbe)=alpha*Ie(Vbe)+Ico
  11. alpha = 0.99
  12. Ies = 4e-14
  13. Ico = 1e-09
  14. kT_q = 0.025
  15. dummy Vbe
  16.  
  17. font 3
  18. grid
  19. title "Mutual Characteristic of a Transistor"
  20. map x 0 0.75 y 0 0.005
  21. format y 3
  22. draw x y
  23. frame
  24. xlabel "Vbe (base emitter voltage)"
  25. ylabel "Ic (collector current)"
  26. color lred
  27. plot Ic(Vbe)