1 /*****************************************************************************/
2 /* 8888888 88888888 88888888 */
5 /* 8 88888888 88888888 */
8 /* 888888 888888888 888888888 */
10 /* A Two-Dimensional General Purpose Semiconductor Simulator. */
13 /* Last update: Oct 17 2005 */
17 /* NINT, No.69 P.O.Box, Xi'an City, China */
19 /*****************************************************************************/
25 class PhysicalUnitScale
28 // use as fundamental physical unit
29 double s_meter
; // the length unit
30 double s_second
; // the time unit
31 double s_volt
; // potential unit
32 double s_coulomb
; // the charge unit
33 double s_kelvin
; // the temperature unit
35 // set as induced physical unit
38 double s_kg
; // the mass unit
39 double s_joule
,s_eV
; // energy unit
40 double s_W
; // power unit
46 void SetPhysicalUnitScale(double);
47 void SetPhysicalUnitScale(double,double);
48 void SetPhysicalUnitScale(double,double,double,double,double);