////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2008 The Regents of the University of California
//
// This file is part of Qbox
//
// Qbox is distributed under the terms of the GNU General Public License
// as published by the Free Software Foundation, either version 2 of
// the License, or (at your option) any later version.
// See the file COPYING in the root directory of this distribution
// or .
//
////////////////////////////////////////////////////////////////////////////////
//
// LDAFunctional.h
//
////////////////////////////////////////////////////////////////////////////////
// $Id: LDAFunctional.h,v 1.8 2009-06-29 09:57:57 fgygi Exp $
#ifndef LDAFUNCTIONAL_H
#define LDAFUNCTIONAL_H
#include
#include
#include "XCFunctional.h"
class LDAFunctional : public XCFunctional
{
void xc_unpolarized(const double rh, double &ee, double &vv);
void xc_polarized(const double rh, double &ee, double &vv);
std::vector _exc;
std::vector > _vxc;
LDAFunctional();
public:
LDAFunctional(const std::vector > &rhoe)
{
_nspin = rhoe.size();
if ( _nspin > 1 ) assert(rhoe[0].size() == rhoe[1].size());
_np = rhoe[0].size();
_exc.resize(_np);
_vxc.resize(_nspin);
for ( int i = 0; i < _nspin; i++ )
{
_vxc[i].resize(_np);
}
if ( _nspin == 1 )
{
rho = &rhoe[0][0];
exc = &_exc[0];
vxc1 = &_vxc[0][0];
}
else
{
rho_up = &rhoe[0][0];
rho_dn = &rhoe[1][0];
exc = &_exc[0];
vxc1_up = &_vxc[0][0];
vxc1_dn = &_vxc[1][0];
}
};
bool isGGA() const { return false; };
std::string name() const { return "LDA"; };
void setxc(void);
};
#endif