We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 120bf55 commit 1e1a2eeCopy full SHA for 1e1a2ee
source/module_xc/xc_functional.cpp
@@ -102,6 +102,7 @@ void XC_Functional::set_xc_type(const std::string xc_func_in)
102
func_id.push_back(XC_MGGA_X_SCAN);
103
func_id.push_back(XC_MGGA_C_SCAN);
104
func_type = 3;
105
+ use_libxc = true;
106
}
107
#endif
108
else if( xc_func == "PBE0")
@@ -120,13 +121,15 @@ void XC_Functional::set_xc_type(const std::string xc_func_in)
120
121
{
122
func_id.push_back(XC_HYB_GGA_XC_HSE06);
123
func_type = 4;
124
125
126
127
else
128
129
#ifdef USE_LIBXC
130
//see if it matches libxc functionals
131
set_xc_type_libxc(xc_func);
132
133
#else
134
std::cout << "functional name not recognized!" << std::endl;
135
0 commit comments