home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume13 / chemtab / part02 / element.h next >
C/C++ Source or Header  |  1990-06-18  |  715b  |  26 lines

  1. /*
  2.  * chemtab - a periodic table data base (C) 1989 by Jim King (pulsar@lsrhs)
  3.  *
  4.  * element.h    Contains the structure for all the elements, e[].
  5.  */
  6.  
  7. #include "tune.h"
  8.  
  9. struct elem {
  10.     char    name[15],        /* Atomic Name */
  11.         sym[4];            /* Atomic Symbol */
  12.     float    eneg,            /* Electronegativity */
  13.         spht,            /* Specific Heat */
  14.         arad,            /* Atomic Radius */
  15.         dens;            /* Density of the Solid */
  16.     int    anum,            /* Atomic Number */
  17.         amass,            /* Atomic Mass */
  18.         melt,            /* Melting point, deg C */
  19.         boil,            /* Boiling point, deg C */
  20.         fio,            /* First Ionization Energy, cal */
  21.         year,            /* Year Discovered */
  22.         val,            /* Valence Electrons */
  23.         fam,            /* Family (1-18, new system) */
  24.         row;            /* Horizontal rows */
  25. } e[MAXLM];
  26.