initial checkin, based on GSS 0.46 CVS
[gss-tcad.git] / src / material / InSb / InSb_basic.cc
blobbafd9b4cd53041ab23fcffdb8d6cf168b0318782
1 /*****************************************************************************/
2 /* */
3 /* 8888888 88888888 88888888 */
4 /* 8 8 8 */
5 /* 8 8 8 */
6 /* 8 88888888 88888888 */
7 /* 8 8888 8 8 */
8 /* 8 8 8 8 */
9 /* 888888 888888888 888888888 */
10 /* */
11 /* A Two-Dimensional General Purpose Semiconductor Simulator. */
12 /* */
13 /* GSS material database Version 0.4 */
14 /* Last update: Feb 17, 2006 */
15 /* */
16 /* Gong Ding */
17 /* gdiso@ustc.edu */
18 /* NINT, No.69 P.O.Box, Xi'an City, China */
19 /* */
20 /*****************************************************************************/
22 // Material Type: InSb
25 #include "PMI.h"
27 class GSS_InSb_BasicParameter : public PMIS_BasicParameter
29 private:
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.
35 void Basic_Init()
37 //Source: Semiconductors on NSM
38 PERMITTI = 16.8;
39 AFFINITY = 4.59*eV;
40 PERMEABI = 1.0;
41 DENSITY = 5.77E-03*kg*pow(cm,-3);
43 public:
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_InSb_BasicParameter(const PMIS_Environment &env):PMIS_BasicParameter(env)
51 Basic_Init();
53 ~GSS_InSb_BasicParameter()
59 extern "C"
61 PMIS_BasicParameter* PMIS_InSb_BasicParameter_Default (const PMIS_Environment& env)
63 return new GSS_InSb_BasicParameter(env);