-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathphonon.h
58 lines (42 loc) · 876 Bytes
/
phonon.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef PHONON_H
#define PHONON_H
#include <cstdio>
class Phonon{
public:
Phonon(class DynMat *);
~Phonon();
class DynMat *dynmat;
private:
class UserInput *input;
int nq, ndim, sysdim;
double **qpts, *wt;
double **eigs;
int ndos, nlocal, *locals;
double *dos, fmin, fmax, df, rdf;
double ***ldos;
class Memory *memory;
void QMesh();
void ComputeAll();
void pdos();
void pdisp();
void therm();
void ldos_egv();
void ldos_rsgf();
void local_therm();
void dmanyq();
void vfanyq();
void DMdisp();
void vecanyq();
void ShowCell();
void WriteCell(FILE *);
void smooth(double *, const int);
void writeDOS();
void writeLDOS();
void Normalize();
int count_words(const char *);
#ifdef UseSPG
int num_atom, *attyp;
double latvec[3][3], **atpos;
#endif
};
#endif