.. : PyBEST: Pythonic Black-box Electronic Structure Tool : Copyright (C) 2016-- The PyBEST Development Team : : This file is part of PyBEST. : : PyBEST is free software; you can redistribute it and/or : modify it under the terms of the GNU General Public License : as published by the Free Software Foundation; either version 3 : of the License, or (at your option) any later version. : : PyBEST is distributed in the hope that it will be useful, : but WITHOUT ANY WARRANTY; without even the implied warranty of : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the : GNU General Public License for more details. : : You should have received a copy of the GNU General Public License : along with this program; if not, see : -- .. _eom_examples: Example Python scripts ====================== Several complete examples can be found in the directory ``data/examples/eom``. EOM-pCCD and EOM-pCCD+S calculations on the water molecule ---------------------------------------------------------- This is a basic example of how to perform an EOM-pCCD and EOM-pCCD+S calculation in PyBEST. This script performs an RHF calculation followed by a pCCD calculation and two different EOM flavors with a pCCD reference function on the water molecule using the cc-pVDZ basis set. .. literalinclude:: ../src/pybest/data/examples/eom/reompccd_water_cc-pvdz.py :caption: data/examples/eom/reompccd_water_cc-pvdz.py :lines: 3- EOM-CCS and EOM-pCCD-CCS calculations on the water molecule ----------------------------------------------------------- This is a basic example of how to perform an EOM-CCS and EOM-pCCD-CCS calculation in PyBEST. This script performs an RHF calculation followed by a CCS and pCCD calculation and two different EOM flavors, one with a CCS and one with a pCCD reference function on the water molecule using the cc-pVDZ basis set. .. literalinclude:: ../src/pybest/data/examples/eom/reomccs_water_cc-pvdz.py :caption: data/examples/eom/reomccs_water_cc-pvdz.py :lines: 3- EOM-LCCD and EOM-LCCSD calculations on the water molecule --------------------------------------------------------- This is a basic example of how to perform an EOM-LCCD and EOM-LCCSD calculation in PyBEST. This script performs an RHF calculation followed by an LCCD and LCCSD calculation and two different EOM flavors, one with an LCCD and one with an LCCSD reference function on the water molecule using the cc-pVDZ basis set. .. literalinclude:: ../src/pybest/data/examples/eom/reomlcc_water_cc-pvdz.py :caption: data/examples/eom/reomlcc_water_cc-pvdz.py :lines: 3- EOM-pCCD-LCCD and EOM-pCCD-LCCSD calculations on the water molecule ------------------------------------------------------------------- This is a basic example of how to perform an EOM-pCCD-LCCD and EOM-pCCD-LCCSD calculation in PyBEST. This script performs an RHF and pCCD calculation followed by a pCCD-LCCD and pCCD-LCCSD calculation and two different EOM flavors, one with a pCCD-LCCD and one with a pCCD-LCCSD reference function on the water molecule using the cc-pVDZ basis set. .. literalinclude:: ../src/pybest/data/examples/eom/reompccdlcc_water_cc-pvdz.py :caption: data/examples/eom/reompccdlcc_water_cc-pvdz.py :lines: 3- EOM-pCCD and EOM-pCCD+S calculations on the water molecule using a frozen core ------------------------------------------------------------------------------ This is a basic example on how to perform a EOM-pCCD and EOM-pCCD+S calculation in PyBEST. This script performs an RHF calculation followed by a pCCD calculation and two different EOM flavors with a pCCD reference function on the water molecule using the cc-pVDZ basis set and freezing the lowest orbital. .. literalinclude:: ../src/pybest/data/examples/eom/reompccd_core_water_cc-pvdz.py :caption: data/examples/eom/reompccd_core_water_cc-pvdz.py :lines: 3-