devices/*, move kind of `enum' defines out of struct definition
This commit is contained in:
parent
8fddbfc1ba
commit
cf7c554c74
|
|
@ -14,6 +14,18 @@ Author: 1985 Thomas L. Quarles
|
||||||
|
|
||||||
/* structures to describe Bipolar Junction Transistors */
|
/* structures to describe Bipolar Junction Transistors */
|
||||||
|
|
||||||
|
/* indices to array of BJT noise sources */
|
||||||
|
|
||||||
|
#define BJTRCNOIZ 0
|
||||||
|
#define BJTRBNOIZ 1
|
||||||
|
#define BJT_RE_NOISE 2
|
||||||
|
#define BJTICNOIZ 3
|
||||||
|
#define BJTIBNOIZ 4
|
||||||
|
#define BJTFLNOIZ 5
|
||||||
|
#define BJTTOTNOIZ 6
|
||||||
|
|
||||||
|
#define BJTNSRCS 7 /* the number of BJT noise sources */
|
||||||
|
|
||||||
/* data needed to describe a single instance */
|
/* data needed to describe a single instance */
|
||||||
|
|
||||||
typedef struct sBJTinstance {
|
typedef struct sBJTinstance {
|
||||||
|
|
@ -266,17 +278,6 @@ typedef struct sBJTinstance {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* indices to array of BJT noise sources */
|
|
||||||
|
|
||||||
#define BJTRCNOIZ 0
|
|
||||||
#define BJTRBNOIZ 1
|
|
||||||
#define BJT_RE_NOISE 2
|
|
||||||
#define BJTICNOIZ 3
|
|
||||||
#define BJTIBNOIZ 4
|
|
||||||
#define BJTFLNOIZ 5
|
|
||||||
#define BJTTOTNOIZ 6
|
|
||||||
|
|
||||||
#define BJTNSRCS 7 /* the number of BJT noise sources */
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double BJTnVar[NSTATVARS][BJTNSRCS];
|
double BJTnVar[NSTATVARS][BJTNSRCS];
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,14 @@ Modified by Paolo Nenzi 2003 and Dietmar Warning 2012
|
||||||
|
|
||||||
/* data structures used to describe diodes */
|
/* data structures used to describe diodes */
|
||||||
|
|
||||||
|
/* indices to array of diode noise sources */
|
||||||
|
|
||||||
|
#define DIORSNOIZ 0
|
||||||
|
#define DIOIDNOIZ 1
|
||||||
|
#define DIOFLNOIZ 2
|
||||||
|
#define DIOTOTNOIZ 3
|
||||||
|
|
||||||
|
#define DIONSRCS 4
|
||||||
|
|
||||||
/* information needed per instance */
|
/* information needed per instance */
|
||||||
|
|
||||||
|
|
@ -132,15 +140,6 @@ typedef struct sDIOinstance {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* indices to array of diode noise sources */
|
|
||||||
|
|
||||||
#define DIORSNOIZ 0
|
|
||||||
#define DIOIDNOIZ 1
|
|
||||||
#define DIOFLNOIZ 2
|
|
||||||
#define DIOTOTNOIZ 3
|
|
||||||
|
|
||||||
#define DIONSRCS 4
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double DIOnVar[NSTATVARS][DIONSRCS];
|
double DIOnVar[NSTATVARS][DIONSRCS];
|
||||||
#else /* NONOISE */
|
#else /* NONOISE */
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,15 @@ Sydney University mods Copyright(c) 1989 Anthony E. Parker, David J. Skellern
|
||||||
|
|
||||||
/* structures used to describe Junction Field Effect Transistors */
|
/* structures used to describe Junction Field Effect Transistors */
|
||||||
|
|
||||||
|
/* indices to an array of JFET noise sources */
|
||||||
|
|
||||||
|
#define JFETRDNOIZ 0
|
||||||
|
#define JFETRSNOIZ 1
|
||||||
|
#define JFETIDNOIZ 2
|
||||||
|
#define JFETFLNOIZ 3
|
||||||
|
#define JFETTOTNOIZ 4
|
||||||
|
|
||||||
|
#define JFETNSRCS 5
|
||||||
|
|
||||||
/* information used to describe a single instance */
|
/* information used to describe a single instance */
|
||||||
|
|
||||||
|
|
@ -111,16 +120,6 @@ typedef struct sJFETinstance {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* indices to an array of JFET noise sources */
|
|
||||||
|
|
||||||
#define JFETRDNOIZ 0
|
|
||||||
#define JFETRSNOIZ 1
|
|
||||||
#define JFETIDNOIZ 2
|
|
||||||
#define JFETFLNOIZ 3
|
|
||||||
#define JFETTOTNOIZ 4
|
|
||||||
|
|
||||||
#define JFETNSRCS 5
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double JFETnVar[NSTATVARS][JFETNSRCS];
|
double JFETnVar[NSTATVARS][JFETNSRCS];
|
||||||
#else /* NONOISE */
|
#else /* NONOISE */
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,15 @@ Modified to add PS model and new parameter definitions ( Anthony E. Parker )
|
||||||
|
|
||||||
/* structures used to describe Junction Field Effect Transistors */
|
/* structures used to describe Junction Field Effect Transistors */
|
||||||
|
|
||||||
|
/* indices to an array of JFET2 noise sources */
|
||||||
|
|
||||||
|
#define JFET2RDNOIZ 0
|
||||||
|
#define JFET2RSNOIZ 1
|
||||||
|
#define JFET2IDNOIZ 2
|
||||||
|
#define JFET2FLNOIZ 3
|
||||||
|
#define JFET2TOTNOIZ 4
|
||||||
|
|
||||||
|
#define JFET2NSRCS 5
|
||||||
|
|
||||||
/* information used to describe a single instance */
|
/* information used to describe a single instance */
|
||||||
|
|
||||||
|
|
@ -116,16 +125,6 @@ typedef struct sJFET2instance {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* indices to an array of JFET2 noise sources */
|
|
||||||
|
|
||||||
#define JFET2RDNOIZ 0
|
|
||||||
#define JFET2RSNOIZ 1
|
|
||||||
#define JFET2IDNOIZ 2
|
|
||||||
#define JFET2FLNOIZ 3
|
|
||||||
#define JFET2TOTNOIZ 4
|
|
||||||
|
|
||||||
#define JFET2NSRCS 5
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double JFET2nVar[NSTATVARS][JFET2NSRCS];
|
double JFET2nVar[NSTATVARS][JFET2NSRCS];
|
||||||
#else /* NONOISE */
|
#else /* NONOISE */
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,15 @@ Author: 1985 S. Hwang
|
||||||
|
|
||||||
/* structures used to describe MESFET Transistors */
|
/* structures used to describe MESFET Transistors */
|
||||||
|
|
||||||
|
/* indices to the array of MESFET noise sources */
|
||||||
|
|
||||||
|
#define MESRDNOIZ 0
|
||||||
|
#define MESRSNOIZ 1
|
||||||
|
#define MESIDNOIZ 2
|
||||||
|
#define MESFLNOIZ 3
|
||||||
|
#define MESTOTNOIZ 4
|
||||||
|
|
||||||
|
#define MESNSRCS 5 /* the number of MESFET noise sources */
|
||||||
|
|
||||||
/* information used to describe a single instance */
|
/* information used to describe a single instance */
|
||||||
|
|
||||||
|
|
@ -128,16 +137,6 @@ int MESmode;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* indices to the array of MESFET noise sources */
|
|
||||||
|
|
||||||
#define MESRDNOIZ 0
|
|
||||||
#define MESRSNOIZ 1
|
|
||||||
#define MESIDNOIZ 2
|
|
||||||
#define MESFLNOIZ 3
|
|
||||||
#define MESTOTNOIZ 4
|
|
||||||
|
|
||||||
#define MESNSRCS 5 /* the number of MESFET noise sources */
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double MESnVar[NSTATVARS][MESNSRCS];
|
double MESnVar[NSTATVARS][MESNSRCS];
|
||||||
#else /* NONOISE */
|
#else /* NONOISE */
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,15 @@ Author: Trond Ytterdal
|
||||||
|
|
||||||
/* structures used to describe MESFET Transistors */
|
/* structures used to describe MESFET Transistors */
|
||||||
|
|
||||||
|
/* indices to the array of MESAFET noise sources */
|
||||||
|
|
||||||
|
#define MESARDNOIZ 0
|
||||||
|
#define MESARSNOIZ 1
|
||||||
|
#define MESAIDNOIZ 2
|
||||||
|
#define MESAFLNOIZ 3
|
||||||
|
#define MESATOTNOIZ 4
|
||||||
|
|
||||||
|
#define MESANSRCS 5 /* the number of MESAFET noise sources */
|
||||||
|
|
||||||
/* information used to describe a single instance */
|
/* information used to describe a single instance */
|
||||||
|
|
||||||
|
|
@ -176,16 +185,6 @@ int MESAmode;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* indices to the array of MESAFET noise sources */
|
|
||||||
|
|
||||||
#define MESARDNOIZ 0
|
|
||||||
#define MESARSNOIZ 1
|
|
||||||
#define MESAIDNOIZ 2
|
|
||||||
#define MESAFLNOIZ 3
|
|
||||||
#define MESATOTNOIZ 4
|
|
||||||
|
|
||||||
#define MESANSRCS 5 /* the number of MESAFET noise sources */
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double MESAnVar[NSTATVARS][MESANSRCS];
|
double MESAnVar[NSTATVARS][MESANSRCS];
|
||||||
#else /* NONOISE */
|
#else /* NONOISE */
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,16 @@ Modified: 2000 AlansFixes
|
||||||
|
|
||||||
/* declarations for level 1 MOSFETs */
|
/* declarations for level 1 MOSFETs */
|
||||||
|
|
||||||
|
/* indices to the array of MOSFET(1) noise sources */
|
||||||
|
|
||||||
|
#define MOS1RDNOIZ 0
|
||||||
|
#define MOS1RSNOIZ 1
|
||||||
|
#define MOS1IDNOIZ 2
|
||||||
|
#define MOS1FLNOIZ 3
|
||||||
|
#define MOS1TOTNOIZ 4
|
||||||
|
|
||||||
|
#define MOS1NSRCS 5 /* the number of MOS1FET noise sources*/
|
||||||
|
|
||||||
/* information needed for each instance */
|
/* information needed for each instance */
|
||||||
|
|
||||||
typedef struct sMOS1instance {
|
typedef struct sMOS1instance {
|
||||||
|
|
@ -142,14 +152,6 @@ typedef struct sMOS1instance {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define MOS1RDNOIZ 0
|
|
||||||
#define MOS1RSNOIZ 1
|
|
||||||
#define MOS1IDNOIZ 2
|
|
||||||
#define MOS1FLNOIZ 3
|
|
||||||
#define MOS1TOTNOIZ 4
|
|
||||||
|
|
||||||
#define MOS1NSRCS 5 /* the number of MOS1FET noise sources*/
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double MOS1nVar[NSTATVARS][MOS1NSRCS];
|
double MOS1nVar[NSTATVARS][MOS1NSRCS];
|
||||||
#else /* NONOISE */
|
#else /* NONOISE */
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,16 @@ Modified: 2000 AlansFIxes
|
||||||
|
|
||||||
/* declarations for level 2 MOSFETs */
|
/* declarations for level 2 MOSFETs */
|
||||||
|
|
||||||
|
/* indices to the array of MOSFET(2) noise sources */
|
||||||
|
|
||||||
|
#define MOS2RDNOIZ 0
|
||||||
|
#define MOS2RSNOIZ 1
|
||||||
|
#define MOS2IDNOIZ 2
|
||||||
|
#define MOS2FLNOIZ 3
|
||||||
|
#define MOS2TOTNOIZ 4
|
||||||
|
|
||||||
|
#define MOS2NSRCS 5 /* the number of MOS2FET noise sources */
|
||||||
|
|
||||||
/* information needed for each instance */
|
/* information needed for each instance */
|
||||||
|
|
||||||
typedef struct sMOS2instance {
|
typedef struct sMOS2instance {
|
||||||
|
|
@ -254,16 +264,6 @@ typedef struct sMOS2instance {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* indices to the array of MOSFET(2) noise sources */
|
|
||||||
|
|
||||||
#define MOS2RDNOIZ 0
|
|
||||||
#define MOS2RSNOIZ 1
|
|
||||||
#define MOS2IDNOIZ 2
|
|
||||||
#define MOS2FLNOIZ 3
|
|
||||||
#define MOS2TOTNOIZ 4
|
|
||||||
|
|
||||||
#define MOS2NSRCS 5 /* the number of MOS2FET noise sources */
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double MOS2nVar[NSTATVARS][MOS2NSRCS];
|
double MOS2nVar[NSTATVARS][MOS2NSRCS];
|
||||||
#else /* NONOISE */
|
#else /* NONOISE */
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,16 @@ Modified: 2000 AlanFixes
|
||||||
|
|
||||||
/* declarations for level 3 MOSFETs */
|
/* declarations for level 3 MOSFETs */
|
||||||
|
|
||||||
|
/* indices to the array of MOSFET(3) noise sources */
|
||||||
|
|
||||||
|
#define MOS3RDNOIZ 0
|
||||||
|
#define MOS3RSNOIZ 1
|
||||||
|
#define MOS3IDNOIZ 2
|
||||||
|
#define MOS3FLNOIZ 3
|
||||||
|
#define MOS3TOTNOIZ 4
|
||||||
|
|
||||||
|
#define MOS3NSRCS 5 /* the number of MOSFET(3) noise sources */
|
||||||
|
|
||||||
/* information needed for each instance */
|
/* information needed for each instance */
|
||||||
|
|
||||||
typedef struct sMOS3instance {
|
typedef struct sMOS3instance {
|
||||||
|
|
@ -253,15 +263,6 @@ typedef struct sMOS3instance {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* end distortion coeffs. */
|
/* end distortion coeffs. */
|
||||||
/* indices to the array of MOSFET(3) noise sources */
|
|
||||||
|
|
||||||
#define MOS3RDNOIZ 0
|
|
||||||
#define MOS3RSNOIZ 1
|
|
||||||
#define MOS3IDNOIZ 2
|
|
||||||
#define MOS3FLNOIZ 3
|
|
||||||
#define MOS3TOTNOIZ 4
|
|
||||||
|
|
||||||
#define MOS3NSRCS 5 /* the number of MOSFET(3) noise sources */
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double MOS3nVar[NSTATVARS][MOS3NSRCS];
|
double MOS3nVar[NSTATVARS][MOS3NSRCS];
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,16 @@ Modified: Alan Gillespie
|
||||||
|
|
||||||
/* declarations for level 9 MOSFETs */
|
/* declarations for level 9 MOSFETs */
|
||||||
|
|
||||||
|
/* indices to the array of MOSFET(9) noise sources */
|
||||||
|
|
||||||
|
#define MOS9RDNOIZ 0
|
||||||
|
#define MOS9RSNOIZ 1
|
||||||
|
#define MOS9IDNOIZ 2
|
||||||
|
#define MOS9FLNOIZ 3
|
||||||
|
#define MOS9TOTNOIZ 4
|
||||||
|
|
||||||
|
#define MOS9NSRCS 5 /* the number of MOSFET(9) noise sources */
|
||||||
|
|
||||||
/* information needed for each instance */
|
/* information needed for each instance */
|
||||||
|
|
||||||
typedef struct sMOS9instance {
|
typedef struct sMOS9instance {
|
||||||
|
|
@ -255,15 +265,6 @@ typedef struct sMOS9instance {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* end distortion coeffs. */
|
/* end distortion coeffs. */
|
||||||
/* indices to the array of MOSFET(3) noise sources */
|
|
||||||
|
|
||||||
#define MOS9RDNOIZ 0
|
|
||||||
#define MOS9RSNOIZ 1
|
|
||||||
#define MOS9IDNOIZ 2
|
|
||||||
#define MOS9FLNOIZ 3
|
|
||||||
#define MOS9TOTNOIZ 4
|
|
||||||
|
|
||||||
#define MOS9NSRCS 5 /* the number of MOSFET(9) noise sources */
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double MOS9nVar[NSTATVARS][MOS9NSRCS];
|
double MOS9nVar[NSTATVARS][MOS9NSRCS];
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,13 @@ Modified: 2000 AlansFixes
|
||||||
|
|
||||||
/* definitions used to describe resistors */
|
/* definitions used to describe resistors */
|
||||||
|
|
||||||
|
/* indices to array of RES noise sources */
|
||||||
|
|
||||||
|
#define RESTHNOIZ 0 /* Thermal noise source */
|
||||||
|
#define RESFLNOIZ 1 /* Flicker noise source */
|
||||||
|
#define RESTOTNOIZ 2 /* Total noise */
|
||||||
|
|
||||||
|
#define RESNSRCS 3 /* the number of RES noise sources */
|
||||||
|
|
||||||
/* information used to describe a single instance */
|
/* information used to describe a single instance */
|
||||||
|
|
||||||
|
|
@ -73,15 +80,6 @@ typedef struct sRESinstance {
|
||||||
int RESsenParmNo; /* parameter # for sensitivity use;
|
int RESsenParmNo; /* parameter # for sensitivity use;
|
||||||
* set equal to 0 if not a design parameter*/
|
* set equal to 0 if not a design parameter*/
|
||||||
|
|
||||||
/* indices to array of RES noise sources */
|
|
||||||
|
|
||||||
#define RESTHNOIZ 0 /* Thermal noise source */
|
|
||||||
#define RESFLNOIZ 1 /* Flicker noise source */
|
|
||||||
#define RESTOTNOIZ 2 /* Total noise */
|
|
||||||
|
|
||||||
#define RESNSRCS 3 /* the number of RES noise sources */
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double RESnVar[NSTATVARS][RESNSRCS];
|
double RESnVar[NSTATVARS][RESNSRCS];
|
||||||
#else /* NONOISE */
|
#else /* NONOISE */
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,16 @@ ngspice integration
|
||||||
|
|
||||||
/* declarations for SOI3 MOSFETs */
|
/* declarations for SOI3 MOSFETs */
|
||||||
|
|
||||||
|
/* indices to the array of SOI(3) noise sources */
|
||||||
|
|
||||||
|
#define SOI3RDNOIZ 0
|
||||||
|
#define SOI3RSNOIZ 1
|
||||||
|
#define SOI3IDNOIZ 2
|
||||||
|
#define SOI3FLNOIZ 3
|
||||||
|
#define SOI3TOTNOIZ 4
|
||||||
|
|
||||||
|
#define SOI3NSRCS 5 /* the number of SOI(3) noise sources */
|
||||||
|
|
||||||
/* information needed for each instance */
|
/* information needed for each instance */
|
||||||
|
|
||||||
typedef struct sSOI3instance {
|
typedef struct sSOI3instance {
|
||||||
|
|
@ -304,17 +314,6 @@ typedef struct sSOI3instance {
|
||||||
double *SOI3TOUT4_tout3Ptr;
|
double *SOI3TOUT4_tout3Ptr;
|
||||||
double *SOI3TOUT4_tout4Ptr;
|
double *SOI3TOUT4_tout4Ptr;
|
||||||
|
|
||||||
|
|
||||||
/* indices to the array of SOI(3) noise sources */
|
|
||||||
|
|
||||||
#define SOI3RDNOIZ 0
|
|
||||||
#define SOI3RSNOIZ 1
|
|
||||||
#define SOI3IDNOIZ 2
|
|
||||||
#define SOI3FLNOIZ 3
|
|
||||||
#define SOI3TOTNOIZ 4
|
|
||||||
|
|
||||||
#define SOI3NSRCS 5 /* the number of SOI(3) noise sources */
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double SOI3nVar[NSTATVARS][SOI3NSRCS];
|
double SOI3nVar[NSTATVARS][SOI3NSRCS];
|
||||||
#else /* NONOISE */
|
#else /* NONOISE */
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,25 @@ Spice3 Implementation: 2003 Dietmar Warning DAnalyse GmbH
|
||||||
|
|
||||||
/* structures to describe Bipolar Junction Transistors */
|
/* structures to describe Bipolar Junction Transistors */
|
||||||
|
|
||||||
|
/* indices to array of VBIC noise sources */
|
||||||
|
|
||||||
|
#define VBICRCNOIZ 0
|
||||||
|
#define VBICRCINOIZ 1
|
||||||
|
#define VBICRBNOIZ 2
|
||||||
|
#define VBICRBINOIZ 3
|
||||||
|
#define VBICRENOIZ 4
|
||||||
|
#define VBICRBPNOIZ 5
|
||||||
|
#define VBICRSNOIZ 6
|
||||||
|
#define VBICICNOIZ 7
|
||||||
|
#define VBICIBNOIZ 8
|
||||||
|
#define VBICIBEPNOIZ 9
|
||||||
|
#define VBICICCPNOIZ 10
|
||||||
|
#define VBICFLBENOIZ 11
|
||||||
|
#define VBICFLBEPNOIZ 12
|
||||||
|
#define VBICTOTNOIZ 13
|
||||||
|
|
||||||
|
#define VBICNSRCS 14 /* the number of VBIC noise sources */
|
||||||
|
|
||||||
/* data needed to describe a single instance */
|
/* data needed to describe a single instance */
|
||||||
|
|
||||||
typedef struct sVBICinstance {
|
typedef struct sVBICinstance {
|
||||||
|
|
@ -219,25 +238,6 @@ typedef struct sVBICinstance {
|
||||||
#define VBICsenCsub VBICsens+45 /* stores the perturbed values of csub */
|
#define VBICsenCsub VBICsens+45 /* stores the perturbed values of csub */
|
||||||
|
|
||||||
|
|
||||||
/* indices to array of VBIC noise sources */
|
|
||||||
|
|
||||||
#define VBICRCNOIZ 0
|
|
||||||
#define VBICRCINOIZ 1
|
|
||||||
#define VBICRBNOIZ 2
|
|
||||||
#define VBICRBINOIZ 3
|
|
||||||
#define VBICRENOIZ 4
|
|
||||||
#define VBICRBPNOIZ 5
|
|
||||||
#define VBICRSNOIZ 6
|
|
||||||
#define VBICICNOIZ 7
|
|
||||||
#define VBICIBNOIZ 8
|
|
||||||
#define VBICIBEPNOIZ 9
|
|
||||||
#define VBICICCPNOIZ 10
|
|
||||||
#define VBICFLBENOIZ 11
|
|
||||||
#define VBICFLBEPNOIZ 12
|
|
||||||
#define VBICTOTNOIZ 13
|
|
||||||
|
|
||||||
#define VBICNSRCS 14 /* the number of VBIC noise sources */
|
|
||||||
|
|
||||||
#ifndef NONOISE
|
#ifndef NONOISE
|
||||||
double VBICnVar[NSTATVARS][VBICNSRCS];
|
double VBICnVar[NSTATVARS][VBICNSRCS];
|
||||||
#else /*NONOISE*/
|
#else /*NONOISE*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue