Cloudy
Spectral Synthesis Code for Astrophysics
Loading...
Searching...
No Matches
heavy.h
Go to the documentation of this file.
1/* This file is part of Cloudy and is copyright (C)1978-2025 by Gary J. Ferland and
2 * others. For conditions of distribution and use see copyright notice in license.txt */
3
4#ifndef HEAVY_H_
5#define HEAVY_H_
6
7/* heavy.h */
8struct t_Heavy {
9
11 long int ipHeavy[LIMELM][LIMELM],
16
19
22
25
29
31 char chShell[7][3];
32
34 {
35 /* list of shells, 1 to 7 */
36 strcpy( chShell[0], "1s" );
37 strcpy( chShell[1], "2s" );
38 strcpy( chShell[2], "2p" );
39 strcpy( chShell[3], "3s" );
40 strcpy( chShell[4], "3p" );
41 strcpy( chShell[5], "3d" );
42 strcpy( chShell[6], "4s" );
43 }
44};
45extern t_Heavy Heavy;
46
47
48#endif /* HEAVY_H_ */
const int LIMELM
Definition cddefines.h:318
float realnum
Definition cddefines.h:127
t_Heavy Heavy
Definition heavy.cpp:5
Definition heavy.h:8
long int ipLyHeavy[LIMELM][LIMELM-1]
Definition heavy.h:13
long int nsShells[LIMELM][LIMELM]
Definition heavy.h:28
double RadRecCon[LIMELM][LIMELM]
Definition heavy.h:18
t_Heavy()
Definition heavy.h:33
char chShell[7][3]
Definition heavy.h:31
long int ipBalHeavy[LIMELM][LIMELM-1]
Definition heavy.h:15
double Valence_IP_Ryd[LIMELM][LIMELM]
Definition heavy.h:24
realnum xLyaHeavy[LIMELM][LIMELM]
Definition heavy.h:21
long int ipHeavy[LIMELM][LIMELM]
Definition heavy.h:11