Update ChangeLog
[gss-tcad.git] / src / material / Ag / Ag_thermal.cc
blob032715ade7f6df4c921306941a6579fe3edd09c4
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: Ag
25 #include "PMI.h"
27 class GSS_Ag_Thermal : public PMIC_Thermal
29 public:
30 PetscScalar HeatCapacity (const PetscScalar &Tl) const
32 return 2.44*J/(K*pow(cm,3));
34 PetscScalar HeatConduction(const PetscScalar &Tl) const
36 return 4.18*W/(K*cm);
38 GSS_Ag_Thermal(const PMIC_Environment &env):PMIC_Thermal(env)
42 ~GSS_Ag_Thermal()
48 extern "C"
50 PMIC_Thermal* PMIC_Ag_Thermal_Default (const PMIC_Environment& env)
52 return new GSS_Ag_Thermal(env);