Codebase list votca-xtp / e70a901 include / votca / xtp / dftcoupling.h
e70a901

Tree @e70a901 (Download .tar.gz)

dftcoupling.h @e70a901raw · history · blame

/*
 *            Copyright 2009-2018 The VOTCA Development Team
 *                       (http://www.votca.org)
 *
 *      Licensed under the Apache License, Version 2.0 (the "License")
 *
 * You may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *              http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

#ifndef VOTCA_XTP_DFTCOUPLING_H
#define	VOTCA_XTP_DFTCOUPLING_H

#include <votca/xtp/couplingbase.h>

namespace votca { namespace xtp {


/**
* \brief Evaluates electronic coupling elements
*
* B. Baumeier, J. Kirkpatrick, D. Andrienko, 
* Phys. Chem. Chem. Phys., 12, 11103-11113, 2010
* 
*/

class DFTcoupling : public CouplingBase
{
public:

    std::string  Identify() { return "dftcoupling"; }
    DFTcoupling():
    _degeneracy(0.0),_numberofstatesA(0),_numberofstatesB(0){;}

    void CalculateCouplings(const Orbitals& orbitalsA, 
                               const Orbitals& orbitalsB, 
                               Orbitals& orbitalsAB);
    
    void Initialize(tools::Property&);
    
    void Addoutput(tools::Property & type_summary,const Orbitals& orbitalsA, 
                               const Orbitals& orbitalsB);
   
private:
    
    void WriteToProperty(tools::Property& type_summary, const Orbitals& orbitalsA,
            const Orbitals& orbitalsB, int a, int b);
    double getCouplingElement( int levelA, int levelB,  
                               const Orbitals& orbitalsA,  
                               const Orbitals& orbitalsB
                                )const;

    std::pair<int,int> DetermineRangeOfStates(const Orbitals& orbital, int numberofstates)const;
    
    Eigen::MatrixXd JAB;
    
    double _degeneracy;
    int _numberofstatesA;
    int _numberofstatesB;
    
    std::pair<int,int> Range_orbA;
    std::pair<int,int> Range_orbB;
};

}}

#endif	// VOTCA_XTP_DFTCOUPLING_H