.. : 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 : -- .. _ip_examples: Example Python scripts ====================== Several complete examples can be found in the directory ``data/examples/ip``. IP-pCCD calculations on the NO molecule for 1 and 3 unpaired electrons ---------------------------------------------------------------------- This is a basic example of how to perform an IP-pCCD calculation in PyBEST. This script performs an RHF calculation followed by a pCCD calculation and two different IP flavors with a pCCD reference function on the NO molecule using the cc-pVDZ basis set. First only one unpaired electron is considered (doublet and quartet states). In the second calculation only the quartet states are targeted (3 unpaired electrons) .. literalinclude:: ../src/pybest/data/examples/ip/rip_pccd_no_cc-pvdz.py :caption: data/examples/ip/rip_pccd_no_cc-pvdz.py :lines: 3- DIP-pCCD calculations on the :math:`\textrm{O}_2` molecule for 0 and 2 unpaired electrons ----------------------------------------------------------------------------------------- This is a basic example of how to perform a DIP-pCCD calculation in PyBEST. This script performs an RHF calculation followed by a pCCD calculation and two different IP flavors with a pCCD reference function on the :math:`\textrm{O}_2` molecule using the cc-pVDZ basis set. First no unpaired electrons are considered (singlet, triplet, and quintet states). In the second calculation only the triplet and quintet states are targeted (2 unpaired electrons) .. literalinclude:: ../src/pybest/data/examples/ip/rdip_pccd_o2_cc-pvdz.py :caption: data/examples/ip/rdip_pccd_o2_cc-pvdz.py :lines: 3-