Memosa-FVM  0.2
phonon.cpp
Go to the documentation of this file.
1 // This file os part of FVM
2 // Copyright (c) 2012 FVM Authors
3 // See LICENSE file for terms.
4 
5 #include <atype.h>
6 
7 
8 #include "Kspace.h"
9 template class Kspace<ATYPE>;
10 
11 #include "DensityOfStates.h"
12 template class DensityOfStates<ATYPE>;
13 
14 #include "PhononModel.h"
15 template class PhononModel<ATYPE>;
16 
17 #include "PhononBoundary.h"
18 template class PhononBoundary<ATYPE>;
19 
20 #include "PhononInterface.h"
21 template class PhononInterface<ATYPE>;
22 
23 #include "ArrowHeadMatrix.h"
24 template class ArrowHeadMatrix<ATYPE>;
25 
26 #include "SquareMatrix.h"
27 template class SquareMatrix<ATYPE>;
28 
29 #include "COMETModel.h"
30 template class COMETModel<ATYPE>;
Definition: Kspace.h:28