cloudy
trunk
|
00001 /* This file is part of Cloudy and is copyright (C)1978-2008 by Gary J. Ferland and 00002 * others. For conditions of distribution and use see copyright notice in license.txt */ 00003 00004 #ifndef _STRUC_H_ 00005 #define _STRUC_H_ 00006 00012 EXTERN struct t_struc { 00013 00019 long int nzlim; 00020 00022 realnum *testr, 00023 *volstr, 00024 *drad_x_fillfac, 00025 *histr, 00026 *hiistr, 00027 *ednstr, 00028 *o3str, 00030 *pressure, 00031 /* wind velocity, cm s-1 */ 00032 *windv, 00033 /* total outward acceleration */ 00034 *AccelTot, 00035 /* inward acceleration due to gravity, a positive number */ 00036 *AccelGravity, 00038 *GasPressure , 00040 *pres_radiation_lines_curr , 00042 *hden , 00044 *DenParticles , 00046 *DenMass, 00048 *depth, 00050 *drad, 00052 *xLyman_depth, 00054 *depth_last, 00055 *drad_last; 00056 00058 long int nzone, 00059 nzone_last; 00060 00062 realnum ***xIonDense; 00063 00066 realnum **H2_molec, 00067 **CO_molec; 00068 00070 realnum **gas_phase; 00071 00073 double *coolstr , 00074 *heatstr; 00075 00079 realnum dr_ionfrac_limit; 00080 00081 } struc; 00082 00083 00084 #endif /* _STRUC_H_ */