• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..08-Aug-2021-

Makefile.amH A D08-Aug-2021608 3530

Makefile.inH A D08-Aug-202120.7 KiB687602

readmeH A D08-Aug-2021923 1615

twoadmit.cH A D08-Aug-202144.5 KiB1,3211,121

twoaval.cH A D08-Aug-20215.8 KiB209176

twocond.cH A D08-Aug-202118 KiB612472

twocont.cH A D08-Aug-202135.4 KiB1,049904

twocurr.cH A D08-Aug-20214.9 KiB186161

twoddefs.hH A D08-Aug-20211.2 KiB5834

twodest.cH A D08-Aug-20211.8 KiB7760

twodext.hH A D08-Aug-20216.6 KiB170115

twodopng.cH A D08-Aug-20215.2 KiB237215

twoelect.cH A D08-Aug-20215.1 KiB181121

twofield.cH A D08-Aug-20213.2 KiB128107

twomesh.cH A D08-Aug-202116.2 KiB627527

twomobdv.cH A D08-Aug-202150.9 KiB1,4001,155

twomobfn.cH A D08-Aug-202112.3 KiB420374

twomobil.cH A D08-Aug-20214.5 KiB13280

twoncont.cH A D08-Aug-202127.8 KiB889742

twopcont.cH A D08-Aug-202127.8 KiB888743

twopoiss.cH A D08-Aug-20218.6 KiB284207

twoprint.cH A D08-Aug-202117.3 KiB590539

twoproj.cH A D08-Aug-202119.8 KiB680581

tworead.cH A D08-Aug-20213.1 KiB11691

twosetbc.cH A D08-Aug-20212.3 KiB9574

twosetup.cH A D08-Aug-20219.3 KiB314250

twosolve.cH A D08-Aug-202137.1 KiB1,2231,016

readme

1Directory: twod
2---------------
3This directory contains the files that are primarily responsible for
4implementing the 2D device simulator. It also contains files that help
5interface the circuit simulator to the device simulator. Most functions
6that are common to all 2D device simulations start with the prefix TWO,
7e.g. TWObiasSolve. The device-specific routines start with either NUMD2,
8NBJT2 or NUMOS, e.g. NUMD2admittance, NBJTproject or NUMOSconductance. The
9simulator contains a Poisson Solver for equilibrium, and a Two-carrier
10solver and One-carrier solvers for bias solutions. An attempt has been
11made to keep the function names parallel in the four portions. Poisson
12routines are identified with a 'Q' (for charge only) after the TWO, Full
13solver routines are identified with an underscore '_',
14Electron-current-only routines are identified with an 'N', and
15Hole-current-only routines are identified with a 'P'.
16