ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_dof_lattice.h
Go to the documentation of this file.
1 
8 #ifndef SCAMAC_DOF_LATTICE_H
9 #define SCAMAC_DOF_LATTICE_H
10 
11 #include "scamac_inttypes.h"
12 #include "scamac_error.h"
13 #include <stdbool.h>
14 
15 typedef struct {
16  ScamacIdx Lx;
17  ScamacIdx Ly;
18  ScamacIdx mx;
19  ScamacIdx my;
20  bool flip_innerrow;
21  bool flip_outerrow;
22 } scamac_dof_lattice_square_st;
23 
24 typedef struct {
25  ScamacIdx Lx;
26  ScamacIdx Ly;
27  ScamacIdx Lz;
28  ScamacIdx mx;
29  ScamacIdx my;
30  ScamacIdx mz;
31 } scamac_dof_lattice_cubic_st;
32 
33 
34 /* particle on a lattice: hexagonal lattice*/
35 
36 // rectangular piece: Width x Height. Zigzag edges along the "j", armchair along the "i" direction.
37 
38 ScamacIdx scamac_dof_lattice_hexrect_ns (ScamacIdx W, ScamacIdx H);
39  void scamac_dof_lattice_hexrect_decode(ScamacIdx W, ScamacIdx H, ScamacIdx idx, ScamacIdx *i, ScamacIdx *j);
40 ScamacIdx scamac_dof_lattice_hexrect_encode(ScamacIdx W, ScamacIdx H, ScamacIdx i, ScamacIdx j);
41 
42 // real-world position (x,y) of site (i,j) of hexagonal lattice. Edge length = 1
43 void scamac_dof_lattice_hexcoord(ScamacIdx i, ScamacIdx j, double *x, double *y);
44 
45 
46 
47 /* particle on a lattice: 2D square lattice */
48 ScamacIdx scamac_dof_lattice_square_ns (const scamac_dof_lattice_square_st * dof);
49  void scamac_dof_lattice_square_decode(const scamac_dof_lattice_square_st * dof, ScamacIdx idx, ScamacIdx *x, ScamacIdx *y);
50 ScamacIdx scamac_dof_lattice_square_encode(const scamac_dof_lattice_square_st * dof, ScamacIdx x, ScamacIdx y);
51 
52 
53 
54 /* particle on a lattice: 3D cubic lattice */
55 ScamacIdx scamac_dof_lattice_cubic_ns (const scamac_dof_lattice_cubic_st * dof);
56  void scamac_dof_lattice_cubic_decode(const scamac_dof_lattice_cubic_st * dof, ScamacIdx idx, ScamacIdx *x, ScamacIdx *y, ScamacIdx *z);
57 ScamacIdx scamac_dof_lattice_cubic_encode(const scamac_dof_lattice_cubic_st * dof, ScamacIdx x, ScamacIdx y, ScamacIdx z);
58 
59 
60 
61 #endif /* SCAMAC_DOF_LATTICE_H */
ScaMaC index/integer types.
ScaMaC data structure and macro definitions.