initial checkin, based on GSS 0.46 CVS
[gss-tcad.git] / src / material / SiO2 / SiO2_basic.cc
blobef611670732b9927adbb8a9cb35eb4cf27f541ae
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: SiO2
25 #include "PMI.h"
27 class GSS_SiO2_BasicParameter : public PMII_BasicParameter
29 private:
30 PetscScalar PERMITTI; // The relative dielectric permittivity of SiO2.
31 PetscScalar PERMEABI; // The relative megnetic permeability of SiO2.
32 PetscScalar AFFINITY; // The electron affinity for the material.
33 PetscScalar DENSITY; // Specific mass density for the material.
34 void Basic_Init()
36 PERMITTI = 3.900000e+00;
37 PERMEABI = 1.0;
38 AFFINITY = 0.970000e+00*eV;
39 DENSITY = 2.260000e-03*kg*pow(cm,-3);
41 public:
42 PetscScalar Density (const PetscScalar &Tl) const { return DENSITY; }
43 PetscScalar Permittivity () const { return PERMITTI; }
44 PetscScalar Permeability () const { return PERMEABI; }
45 PetscScalar Affinity (const PetscScalar &Tl) const { return AFFINITY; }
46 GSS_SiO2_BasicParameter(const PMII_Environment &env):PMII_BasicParameter(env)
48 Basic_Init();
50 ~GSS_SiO2_BasicParameter()
56 extern "C"
58 PMII_BasicParameter* PMII_SiO2_BasicParameter_Default (const PMII_Environment& env)
60 return new GSS_SiO2_BasicParameter(env);