initial checkin, based on GSS 0.46 CVS
[gss-tcad.git] / src / material / Cu / Cu_basic.cc
blob1c45790652c6efe5f57f1eed6091610979060785
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: May 27, 2007 */
15 /* */
16 /* Gong Ding */
17 /* gdiso@ustc.edu */
18 /* NINT, No.69 P.O.Box, Xi'an City, China */
19 /* */
20 /*****************************************************************************/
22 // Material Type: Cu
25 #include "PMI.h"
27 class GSS_Cu_BasicParameter : public PMIC_BasicParameter
29 private:
30 PetscScalar PERMITTI; // The relative dielectric permittivity.
31 PetscScalar PERMEABI; // The relative megnetic permeability.
32 PetscScalar AFFINITY; // The electron affinity for the material.
33 PetscScalar DENSITY; // Specific mass density for the material.
34 void Basic_Init()
36 PERMITTI = 1.0;//corrected by zhangxih
37 PERMEABI = 1.0;
38 AFFINITY = 4.700000e+00*eV;
39 DENSITY = 8.960000e-03*kg*pow(cm,-3);//corrected by zhangxih
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_Cu_BasicParameter(const PMIC_Environment &env):PMIC_BasicParameter(env)
48 Basic_Init();
50 ~GSS_Cu_BasicParameter()
56 extern "C"
58 PMIC_BasicParameter* PMIC_Cu_BasicParameter_Default (const PMIC_Environment& env)
60 return new GSS_Cu_BasicParameter(env);