1 /*****************************************************************************/
3 /* 8888888 88888888 88888888 */
6 /* 8 88888888 88888888 */
9 /* 888888 888888888 888888888 */
11 /* A Two-Dimensional General Purpose Semiconductor Simulator. */
13 /* GSS material database Version 0.4 */
14 /* Last update: Feb 17, 2006 */
18 /* NINT, No.69 P.O.Box, Xi'an City, China */
20 /*****************************************************************************/
27 class GSS_InN_BasicParameter
: public PMIS_BasicParameter
30 PetscScalar PERMITTI
; // The relative dielectric permittivity of InAs.
31 PetscScalar AFFINITY
; // The electron affinity for the material.
32 PetscScalar PERMEABI
; // The relative megnetic permeability of InAs.
33 PetscScalar DENSITY
; // Specific mass density for the material.
37 //Source: Semiconductors on NSM
41 DENSITY
= 6.81E-03*kg
*pow(cm
,-3);
44 PetscScalar
Density (const PetscScalar
&Tl
) const { return DENSITY
; }
45 PetscScalar
Permittivity () const { return PERMITTI
; }
46 PetscScalar
Permeability () const { return PERMEABI
; }
47 PetscScalar
Affinity (const PetscScalar
&Tl
) const { return AFFINITY
; }
49 GSS_InN_BasicParameter(const PMIS_Environment
&env
):PMIS_BasicParameter(env
)
53 ~GSS_InN_BasicParameter()
61 PMIS_BasicParameter
* PMIS_InN_BasicParameter_Default (const PMIS_Environment
& env
)
63 return new GSS_InN_BasicParameter(env
);