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: May 27, 2007 */
18 /* NINT, No.69 P.O.Box, Xi'an City, China */
20 /*****************************************************************************/
27 class GSS_Ag_Thermal
: public PMIC_Thermal
30 PetscScalar
HeatCapacity (const PetscScalar
&Tl
) const
32 return 2.44*J
/(K
*pow(cm
,3));
34 PetscScalar
HeatConduction(const PetscScalar
&Tl
) const
38 GSS_Ag_Thermal(const PMIC_Environment
&env
):PMIC_Thermal(env
)
50 PMIC_Thermal
* PMIC_Ag_Thermal_Default (const PMIC_Environment
& env
)
52 return new GSS_Ag_Thermal(env
);