ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_matrix_Exciton.h
1 /* *** *** *** *** *** *** *** *** *** *** */
2 /* autogenerated by ScaMaC_build_generator */
3 /* Fri, 24 May 2019 12:40:36 +0200 */
4 /* *** *** *** *** *** *** *** *** *** *** */
5 #ifndef SCAMAC_MATRIX_EXCITON_H
6 #define SCAMAC_MATRIX_EXCITON_H
7 
8 #include "scamac_internal.h"
9 #include "scamac_sparserow.h"
10 #include "scamac_option_inc.h"
11 
12 typedef struct {
13  double so;
14  double ex;
15  double mlh;
16  double mhh;
17  double me;
18  double eps;
19  double lc;
20  double kx;
21  double ky;
22  double kz;
23  double a;
24  int L;
25  scamac_option_ty symm;
26 } scamac_matrix_Exciton_params_st;
27 
28 typedef struct {
29  ScamacIdx ns;
30  ScamacIdx maxnzrow;
31  double par_t1, par_t2, par_te;
32  double complex eikx, eiky, eikz;
33  ScamacIdx dx,dy,dz;
34  double complex mat_so[3][3], mat_ex[3][3];
35 } scamac_matrix_Exciton_tables_st;
36 
37 ScamacErrorCode scamac_matrix_Exciton_check(const scamac_matrix_Exciton_params_st * par, char ** desc);
38 ScamacErrorCode scamac_matrix_Exciton_tables_create(const scamac_matrix_Exciton_params_st * par, scamac_matrix_Exciton_tables_st ** tab, scamac_info_st * info);
39 ScamacErrorCode scamac_matrix_Exciton_tables_destroy(scamac_matrix_Exciton_tables_st * tab);
40 ScamacErrorCode scamac_matrix_Exciton_generate_row(const scamac_matrix_Exciton_params_st * par, const scamac_matrix_Exciton_tables_st * tab, void * ws, ScamacIdx irow, ScamacFlag flag, scamac_sparserow_cplx_st * row);
41 
42 #endif /* SCAMAC_MATRIX_EXCITON_H */
Internal types and (macro) definitions.