VDMOS change name of some matrix entries to make life easier
This commit is contained in:
parent
17497eddec
commit
3f4b24be89
|
|
@ -230,9 +230,9 @@ typedef struct sVDMOSinstance {
|
|||
double *VDMOSSPtempPtr;
|
||||
|
||||
double *VDIOTempposPrimePtr; /* Diode thermal contribution */
|
||||
double *VDIOTempnegPtr;
|
||||
double *VDMOSTempdPtr;
|
||||
double *VDIOPosPrimetempPtr;
|
||||
double *VDIONegtempPtr;
|
||||
double *VDMOSDtempPtr;
|
||||
|
||||
double *VDMOSTcasetcasePtr; /* for Rthjc */
|
||||
double *VDMOSTcasetempPtr;
|
||||
|
|
|
|||
|
|
@ -893,10 +893,10 @@ load:
|
|||
*(here->VDIORPdPtr) -= gd;
|
||||
if (selfheat) {
|
||||
(*(here->VDIOTempposPrimePtr) += -dIth_dVdio);
|
||||
(*(here->VDIOTempnegPtr) += dIth_dVdio);
|
||||
(*(here->VDMOSTempdPtr) += dIth_dVdio);
|
||||
(*(here->VDMOSTemptempPtr) += -dIth_dT);
|
||||
(*(here->VDIOPosPrimetempPtr) += dIdio_dT);
|
||||
(*(here->VDIONegtempPtr) += -dIdio_dT);
|
||||
(*(here->VDMOSDtempPtr) += -dIdio_dT);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -378,9 +378,9 @@ do { if((here->ptr = SMPmakeElt(matrix, here->first, here->second)) == NULL){\
|
|||
TSTALLOC(VDMOSSPtempPtr, VDMOSsNodePrime, VDMOStempNode);
|
||||
|
||||
TSTALLOC(VDIOTempposPrimePtr, VDMOStempNode, VDIOposPrimeNode);/* Diode thermal contribution */
|
||||
TSTALLOC(VDIOTempnegPtr, VDMOStempNode, VDMOSdNode);
|
||||
TSTALLOC(VDMOSTempdPtr, VDMOStempNode, VDMOSdNode);
|
||||
TSTALLOC(VDIOPosPrimetempPtr, VDIOposPrimeNode, VDMOStempNode);
|
||||
TSTALLOC(VDIONegtempPtr, VDMOSdNode, VDMOStempNode);
|
||||
TSTALLOC(VDMOSDtempPtr, VDMOSdNode, VDMOStempNode);
|
||||
|
||||
TSTALLOC(VDMOSTcasetcasePtr, VDMOStcaseNode, VDMOStcaseNode); /* Rthjc between tj and tcase*/
|
||||
TSTALLOC(VDMOSTcasetempPtr, VDMOStcaseNode, VDMOStempNode);
|
||||
|
|
|
|||
Loading…
Reference in New Issue