PWM_driver

Simple PWM driver made with a 555 timer and a MOSFET
Index Commits Files Refs README LICENSE
   1 *
   2 *******************************************
   3 *
   4 *1N4148
   5 *
   6 *NXP Semiconductors
   7 *
   8 *High-speed diodes
   9 *
  10 *
  11 *
  12 *
  13 * 
  14 *
  15 *
  16 *
  17 *
  18 *
  19 *
  20 *VRRM = 100V
  21 *IFRM = 450 mA 
  22 *trr  = 4ns
  23 *
  24 *
  25 *Package pinning does not match Spice model pinning.
  26 *Package: SOD 27
  27 *
  28 *Package Pin 1 : Cathode
  29 *Package Pin 2 : Anode
  30 *
  31 *
  32 *
  33 *
  34 *Simulator: PSPICE
  35 *
  36 *******************************************
  37 *#
  38 .SUBCKT 1N4148 1 2 
  39 *
  40 * The resistor R1 does not reflect 
  41 * a physical device. Instead it
  42 * improves modeling in the reverse 
  43 * mode of operation.
  44 *
  45 R1 1 2 5.827E+9 
  46 D1 1 2 1N4148
  47 *
  48 .MODEL 1N4148 D 
  49 + IS = 4.352E-9 
  50 + N = 1.906 
  51 + BV = 110 
  52 + IBV = 0.0001 
  53 + RS = 0.6458 
  54 + CJO = 7.048E-13 
  55 + VJ = 0.869 
  56 + M = 0.03 
  57 + FC = 0.5 
  58 + TT = 3.48E-9 
  59 .ENDS
  60 *
  61