ngspice/src/ciderlib/oned
Holger Vogt c05a6398b7 Reserve enough memory 2024-12-15 10:27:04 +01:00
..
Makefile.am introduce AM_CFLAGS = $(STATIC) 2012-07-07 14:51:39 +02:00
notes Cider simulator (simulator routines) Import. 2003-08-11 19:25:28 +00:00
oneadmit.c Replace all BOOLEAN, BOOL, _Bool by bool 2024-12-15 10:25:28 +01:00
oneaval.c Replace all BOOLEAN, BOOL, _Bool by bool 2024-12-15 10:25:28 +01:00
onecond.c Replace all BOOLEAN, BOOL, _Bool by bool 2024-12-15 10:25:28 +01:00
onecont.c Replace all BOOLEAN, BOOL, _Bool by bool 2024-12-15 10:25:28 +01:00
oneddefs.h Reserve enough memory 2024-12-15 10:27:04 +01:00
onedest.c First KLU support of CIDER ONED simulations 2023-08-16 11:14:16 +02:00
onedext.h Replace all BOOLEAN, BOOL, _Bool by bool 2024-12-15 10:25:28 +01:00
onedopng.c Replace all BOOLEAN, BOOL, _Bool by bool 2024-12-15 10:25:28 +01:00
onefreez.c #1/4 #include <ngspice/...> --> #include "ngspice/..." 2011-12-11 18:05:00 +00:00
onemesh.c Replace all BOOLEAN, BOOL, _Bool by bool 2024-12-15 10:25:28 +01:00
onepoiss.c Getting rid of SPARSE for Initial Circuit Matrix creation. Now KLU is totally independent from SPARSE. This opens up the interface for other solvers as well 2023-08-16 11:14:18 +02:00
oneprint.c Replace all BOOLEAN, BOOL, _Bool by bool 2024-12-15 10:25:28 +01:00
oneproj.c Replace all BOOLEAN, BOOL, _Bool by bool 2024-12-15 10:25:28 +01:00
oneread.c remove CVS `Id',`log' etc. keyword incantations 2011-12-13 19:57:45 +00:00
onesetup.c src/ciderlib/oned/onesetup.c, bug fix, access beyond array bounds 2015-12-17 18:51:21 +01:00
onesolve.c Re-formatting for readability 2024-12-15 10:26:51 +01:00
readme Cider simulator (simulator routines) Import. 2003-08-11 19:25:28 +00:00

readme

Directory: oned
---------------
This directory contains the files that are primarily responsible for
implementing the 1D device simulator.  It also contains files that help
interface the circuit simulator to the device simulator.  Most functions
that are common to all 1D device simulations start with the prefix ONE,
e.g. ONEbiasSolve.  The device-specific routines start with either
NUMD or NBJT, e.g. NUMDadmittance or NBJTproject.  The simulator contains
both a Poisson Solver for equilibrium and a three-equation solver for bias
solutions.  An attempt has been made to keep the function names parallel
in the two portions.  Poisson routines are identified with a 'Q' (for charge
only) after the ONE, and Full solver routines are identified with an
underscore '_'.