Codebase list votca-xtp / 1b2bccf1-4511-4a27-bd7b-f49ebfd9899c/main src / libxtp / tools / molpol.h
1b2bccf1-4511-4a27-bd7b-f49ebfd9899c/main

Tree @1b2bccf1-4511-4a27-bd7b-f49ebfd9899c/main (Download .tar.gz)

molpol.h @1b2bccf1-4511-4a27-bd7b-f49ebfd9899c/mainraw · history · blame

/*
 *            Copyright 2009-2020 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.
 *
 */

#pragma once
#ifndef VOTCA_XTP_MOLPOL_H
#define VOTCA_XTP_MOLPOL_H

// Standard includes
#include <cstdio>

// Local VOTCA includes
#include "votca/xtp/classicalsegment.h"
#include "votca/xtp/logger.h"
#include "votca/xtp/qmtool.h"

namespace votca {
namespace xtp {
class PolarRegion;
class MolPol final : public QMTool {
 public:
  MolPol() : _input("", 0){};

  ~MolPol() = default;

  std::string Identify() { return "molpol"; }

 protected:
  void ParseOptions(const tools::Property& user_options);
  bool Run();

 private:
  void Printpolarization(const Eigen::Matrix3d& result) const;

  Eigen::Matrix3d CalcClassicalPol(const PolarSegment& input) const;
  Eigen::Vector3d CalcInducedDipole(const PolarSegment& input,
                                    const Eigen::Vector3d& ext_field) const;
  Logger _log;

  std::string _mps_output;
  PolarSegment _input;
  Eigen::Matrix3d _polarization_target;

  Eigen::VectorXd _weights;

  tools::Property _polar_options;

  double _tolerance_pol = 1e-4;
  Index _max_iter = 1000;
};

}  // namespace xtp
}  // namespace votca

#endif  // VOTCA_XTP_MOLPOL_H