DFT-EFE
 
Loading...
Searching...
No Matches
AtomSphericalDataContainer.h
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (c) 2021. *
3 * The Regents of the University of Michigan and DFT-EFE developers. *
4 * *
5 * This file is part of the DFT-EFE code. *
6 * *
7 * DFT-EFE is free software: you can redistribute it and/or modify *
8 * it under the terms of the Lesser GNU General Public License as *
9 * published by the Free Software Foundation, either version 3 of *
10 * the License, or (at your option) any later version. *
11 * *
12 * DFT-EFE is distributed in the hope that it will be useful, but *
13 * WITHOUT ANY WARRANTY; without even the implied warranty *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
15 * See the Lesser GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU Lesser General Public *
18 * License at the top level of DFT-EFE distribution. If not, see *
19 * <https://www.gnu.org/licenses/>. *
20 ******************************************************************************/
21
22/*
23 * @author Bikash Kanungo
24 */
25
26#ifndef dftefeAtomSphericalDataContainer_h
27#define dftefeAtomSphericalDataContainer_h
28
29#include <utils/TypeConfig.h>
30#include <unordered_map>
31#include <map>
32#include <string>
33#include <utils/Spline.h>
34#include <memory>
36#include <atoms/SphericalData.h>
38namespace dftefe
39{
40 namespace atoms
41 {
56 class AtomSphericalDataContainer
57 {
58 public:
68 AtomSphericalDataContainer(
69 const std::map<std::string, std::string> &atomSymbolToFilename,
70 const std::vector<std::string> & fieldNames,
71 const std::vector<std::string> & metadataNames,
72 const bool isSplineHarmonicEval = true);
73
77 ~AtomSphericalDataContainer() = default;
78
87 const std::vector<std::shared_ptr<SphericalData>> &
88 getSphericalData(std::string atomSymbol,
89 const std::string fieldName) const;
90
91
92 const std::shared_ptr<SphericalData>
93 getSphericalData(std::string atomSymbol,
94 const std::string fieldName,
95 const std::vector<int> &qNumbers) const;
96
97 std::string
98 getMetadata(std::string atomSymbol, std::string metadataName) const;
99
101 nSphericalData(std::string atomSymbol, std::string fieldName) const;
102
103 std::vector<std::vector<int>>
104 getQNumbers(std::string atomSymbol, const std::string fieldName) const;
105
107 getQNumberID(std::string atomSymbol,
108 const std::string fieldName,
109 const std::vector<int> &qNumbers) const;
110
111 std::map<std::string, std::string>
112 atomSymbolToFileMap() const; // Name is fine ??
113 // added a d_atomSymbolToFilename return function
114
115 private:
116 std::map<std::string, std::string> d_atomSymbolToFilename;
117 std::vector<std::string> d_fieldNames;
118 std::vector<std::string> d_metadataNames;
119 std::unordered_map<std::string, AtomSphericalData>
120 d_mapAtomSymbolToAtomSphericalData;
121
122 std::shared_ptr<const SphericalHarmonicFunctions>
123 d_SphericalHarmonicFunctions;
124 const bool d_isAssocLegendreSplineEval;
125
126 }; // end of class AtomSphericalDataContainer
127 } // end of namespace atoms
128} // end of namespace dftefe
129#endif // dftefeAtomSphericalDataContainer_h
dealii includes
Definition: AtomFieldDataSpherical.cpp:31
unsigned int size_type
Definition: TypeConfig.h:8