6.1 What is in our input file? 👀#
If you go to the repository program, you should see that a new folder with the name of the molecule was created. For the example that we ran, the folder should be called “water”. The following archives can be found:
COSMO_TZVPD folder
energy_TZVPD folder
6.1.2 What is TZVPD ❓#
TZVPD stands for Triple-Zeta Valence with Polarization and Diffuse functions. It is a type of basis set used in quantum chemistry calculations, in this case is used by the ORCA software. Basis sets are important in computational chemistry because they define the set of functions used to describe the electronic wave function of molecules. They are a collection of functions used to create and model the molecular orbitals of a system.
Triple-Zeta (TZ): it means that three functions are used to describe each valence orbital, providing a more accurate representation compared to single-zeta or double-zeta basis sets. The valence orbitals are the outermost orbitals of an atom that are involved in chemical bonding. The different types of valence orbitals are s, p, d and sometimes f.
Valence: it refers to the valence electrons
Polarization (P): adds extra features to account for how the electron cloud is distorted by the molecular environment, improving the accuracy of the calculations.
Think about a water molecule (H₂O). The oxygen atom has s and p orbitals that help it bond with hydrogen. When it forms bonds with hydrogen, the electron cloud around oxygen can become distorted. Adding polarization functions (e.g. d-type functions for oxygen) can help us model this distortion better.
Diffuse (D): includes extra functions that are more spread out in space. These are important for accurately describing anions and systems with weakly bound electrons.
Think about a chloride ion (Cl⁻). The extra electron in Cl⁻ is not as tightly bound as the electrons in a neutral chlorine atom. To describe this loosely bound electron correctly, we add special functions (e.g., additional s and p functions with larger exponents) to the basis set. This allows the basis set to capture the electron’s extended distribution.
You can find more about it in the Orca documentation
6.1.3 COSMO_TZVPD#
Opening the folder we see two files: water_c000 and log_output. The latter contains all details of the ORCA program and the steps taken to perform the necessary calculations to produce the .orcacosmo file.
Let’s analyze what the water_c000 file has:
ENERGY:
This is the energy obtained with the CPCM calculations i.e. as an ideal conductor in a.u. (atomic units).DIPOLE MOMENT:
The values represent the x, y, and z components of the dipole moment vector. The dipole moment is defined as a vector quantity that quantifies the separation between positive and negative charges within a molecule.XYZ_FILE:
Coordinates form the ORCA job. Here we can see the number of atoms (for water = 3) and the cartesian coordinates (x,y,z) in Angstroms.COSMO:
Molecule characteristics (no. of atoms, surface points), surface and epsilon function types (how the molecular surface is constructed for the COSMO calculations), the dielectric constant of the solvent, (measures the ability to reduce the electrostatic interactions between charged particles). Furthermore, we have the dielectric energy, (the total energy that we need to submerge our molecule from the gas phase to the CPCM phase)Cartesian Coordinates, RADII and Atomic Number:
Cartesian coordinates in atomic units (a.u.), atomic radii, and atomic numbers for each atom in the molecule.Surface points:
This section has the following columns3D coordinates of the center of the area.
the area of our segments
the chemical potential of the segment
w_leb, Switch_F and G_with are part of the ORCA algorithm to generate the position of the segments and its properties
the indices of the atoms (for water, three atoms ∴ 0, 1, 2 )
COSMO_corrected:
Corrected values for the dielectric energy and the CPCM charges after distributing the molecule’s charge between the cavities. A cavity is like a bubble surrounding the whole molecule. For some bigger atoms that have a higher charge, the electrons might be outside of the cavity, also known as outlying charge. To better represent how the molecule’s electron distribution looks, ORCA implemented a correction where they distributed the outlying charge throughout the whole cavity

Adjacency matrix:
The connections between atoms of the molecule. Node 0 represents the oxygen atom and nodes 1 and 2 the two hydrogen atoms.
#⚠️⚠️⚠️
water_c000 = r"orcacosmo_files\water\COSMO_TZVPD\water_c000.orcacosmo"
# Open and read the .orcacosmo file
with open(water_c000, 'r') as file:
contents = file.read()
# Print the contents
print(contents)
water_c000 : DFT_CPCM_BP86_def2-TZVP+def2-TZVPD_SP
##################################################
#ENERGY
FINAL SINGLE POINT ENERGY -76.479237520247
##################################################
#DIPOLE MOMENT (Debye)
0.000045 -2.302726 0.000000
##################################################
#XYZ_FILE
3
Coordinates from ORCA-job geo_opt_tzvp E -76.476432672917
O -0.00079486659693 0.40142783814538 0.00000000000000
H -0.76479998168973 -0.20221738824042 0.00000000000000
H 0.76559484828666 -0.19921044990496 0.00000000000000
##################################################
#COSMO
3 # Number of atoms
252 # Number of surface points
2 # Surface type
0 # Epsilon function type
1 # Print level
0 # FEps X flag
110 # Number of Leb. points (used if Isodens = 0)
1 # Isodensity discr. scheme
5.000000000 # Threshold for H atoms (Ncharges/Angstroem^2) for Isodens = 1
5.000000000 # Threshold for non-H atoms (Ncharges/Angstroem^2) for Isodens = 1
0.000000000 # FEps X parameter
0.035710648 # cutoff segment area (a.u.)
0.00000010000000 # cutoff switching function
171.174913270 # Volume
153.190631794 # Area
-0.012548950 # CPCM dielectric energy
-0.015758673 # One-electron operator energy
#------------------------------------------------------------
# CARTESIAN COORDINATES (A.U.) + RADII (A.U.) + ATOMIC NUMBER
#------------------------------------------------------------
-0.001502080 0.758588677 0.000000000 3.250328950 8
-1.445262513 -0.382135483 0.000000000 2.456643974 1
1.446764593 -0.376453193 0.000000000 2.456643974 1
#------------------------------------------------------------
# SURFACE POINTS (A.U.) (Hint - charge NOT scaled by FEps)
#------------------------------------------------------------
X Y Z area potential charge w_leb Switch_F G_width atom
-0.001502080 4.008917627 0.000000000 0.236622021 -0.066172204 0.001061458 0.022397551 1.00000000000000 10.07939148879902 0
-0.001502080 -2.491740274 0.000000000 0.204342317 0.069751051 -0.000806324 0.022397551 0.86358115176696 10.07939148879902 0
-0.001502080 0.758588677 3.250328950 0.236622021 -0.042026343 0.001188527 0.022397551 1.00000000000000 10.07939148879902 0
-0.001502080 0.758588677 -3.250328950 0.236622021 -0.042026343 0.001188527 0.022397551 1.00000000000000 10.07939148879902 0
-0.001502080 3.056918319 2.298329642 0.758971632 -0.064577408 0.003723818 0.071840759 1.00000000000000 5.62793562792147 0
-0.001502080 -1.539740965 2.298329642 0.758912205 0.020218897 0.000480553 0.071840759 0.99992170058670 5.62793562792147 0
-0.001502080 3.056918319 -2.298329642 0.758971632 -0.064577408 0.003723818 0.071840759 1.00000000000000 5.62793562792147 0
-0.001502080 -1.539740965 -2.298329642 0.758912205 0.020218897 0.000480553 0.071840759 0.99992170058670 5.62793562792147 0
2.296827562 0.758588677 2.298329642 0.739171626 -0.005514008 0.000568259 0.071840759 0.97391206079688 5.62793562792147 0
-2.299831722 0.758588677 2.298329642 0.740526419 -0.005758323 0.000585497 0.071840759 0.97569709814880 5.62793562792147 0
2.296827562 0.758588677 -2.298329642 0.739171626 -0.005514008 0.000568259 0.071840759 0.97391206079688 5.62793562792147 0
-2.299831722 0.758588677 -2.298329642 0.740526419 -0.005758323 0.000585497 0.071840759 0.97569709814880 5.62793562792147 0
2.296827562 3.056918319 0.000000000 0.758971632 -0.040318381 0.001920492 0.071840759 1.00000000000000 5.62793562792147 0
-2.299831722 3.056918319 0.000000000 0.758971632 -0.040569389 0.001933170 0.071840759 1.00000000000000 5.62793562792147 0
1.875076214 2.635166971 1.876578294 0.739917670 -0.045843443 0.002561179 0.070037199 1.00000000000000 5.69993881575195 0
-1.878080375 2.635166971 1.876578294 0.739917670 -0.046031886 0.002570040 0.070037199 1.00000000000000 5.69993881575195 0
1.875076214 2.635166971 -1.876578294 0.739917670 -0.045843443 0.002561179 0.070037199 1.00000000000000 5.69993881575195 0
-1.878080375 2.635166971 -1.876578294 0.739917670 -0.046031886 0.002570040 0.070037199 1.00000000000000 5.69993881575195 0
2.180435112 2.940525869 1.021243586 0.744606843 -0.042051157 0.002092070 0.070481054 1.00000000000000 5.68196274193532 0
-2.183439273 2.940525869 1.021243586 0.744606843 -0.042284080 0.002103491 0.070481054 1.00000000000000 5.68196274193532 0
2.180435112 2.940525869 -1.021243586 0.744606843 -0.042051157 0.002092070 0.070481054 1.00000000000000 5.68196274193532 0
-2.183439273 2.940525869 -1.021243586 0.744606843 -0.042284080 0.002103491 0.070481054 1.00000000000000 5.68196274193532 0
2.180435112 1.779832263 2.181937192 0.744606836 -0.029894588 0.002015054 0.070481054 0.99999998957825 5.68196274193532 0
-2.183439273 1.779832263 2.181937192 0.744606837 -0.030118559 0.002026260 0.070481054 0.99999999171804 5.68196274193532 0
2.180435112 -0.262654910 2.181937192 0.082796632 0.027024647 -0.000204159 0.070481054 0.11119509966629 5.68196274193532 0
-2.183439273 -0.262654910 2.181937192 0.084769928 0.026835425 -0.000206987 0.070481054 0.11384521690176 5.68196274193532 0
2.180435112 1.779832263 -2.181937192 0.744606836 -0.029894588 0.002015054 0.070481054 0.99999998957825 5.68196274193532 0
-2.183439273 1.779832263 -2.181937192 0.744606837 -0.030118559 0.002026260 0.070481054 0.99999999171804 5.68196274193532 0
2.180435112 -0.262654910 -2.181937192 0.082796632 0.027024647 -0.000204159 0.070481054 0.11119509966629 5.68196274193532 0
-2.183439273 -0.262654910 -2.181937192 0.084769928 0.026835425 -0.000206987 0.070481054 0.11384521690176 5.68196274193532 0
1.019741506 2.940525869 2.181937192 0.744606843 -0.059374847 0.003351460 0.070481054 1.00000000000000 5.68196274193532 0
-1.022745666 2.940525869 2.181937192 0.744606843 -0.059471590 0.003356045 0.070481054 1.00000000000000 5.68196274193532 0
1.019741506 -1.423348516 2.181937192 0.374289518 0.030826345 -0.000420515 0.070481054 0.50266730916957 5.68196274193532 0
-1.022745666 -1.423348516 2.181937192 0.366663245 0.030915017 -0.000419784 0.070481054 0.49242529508130 5.68196274193532 0
1.019741506 2.940525869 -2.181937192 0.744606843 -0.059374847 0.003351460 0.070481054 1.00000000000000 5.68196274193532 0
-1.022745666 2.940525869 -2.181937192 0.744606843 -0.059471590 0.003356045 0.070481054 1.00000000000000 5.68196274193532 0
1.019741506 -1.423348516 -2.181937192 0.374289518 0.030826345 -0.000420515 0.070481054 0.50266730916957 5.68196274193532 0
-1.022745666 -1.423348516 -2.181937192 0.366663245 0.030915017 -0.000419784 0.070481054 0.49242529508130 5.68196274193532 0
0.938644397 1.698735153 2.965954735 0.684803306 -0.050231842 0.003223719 0.064820327 1.00000000000000 5.92487195457512 0
-0.941648557 1.698735153 2.965954735 0.684803306 -0.050308865 0.003226579 0.064820327 1.00000000000000 5.92487195457512 0
0.938644397 -0.181557800 2.965954735 0.684802335 -0.015916288 0.002140535 0.064820327 0.99999858246329 5.92487195457512 0
-0.941648557 -0.181557800 2.965954735 0.684802320 -0.015955448 0.002140726 0.064820327 0.99999856007487 5.92487195457512 0
0.938644397 1.698735153 -2.965954735 0.684803306 -0.050231843 0.003223719 0.064820327 1.00000000000000 5.92487195457512 0
-0.941648557 1.698735153 -2.965954735 0.684803306 -0.050308865 0.003226579 0.064820327 1.00000000000000 5.92487195457512 0
0.938644397 -0.181557800 -2.965954735 0.684802335 -0.015916288 0.002140535 0.064820327 0.99999858246329 5.92487195457512 0
-0.941648557 -0.181557800 -2.965954735 0.684802320 -0.015955448 0.002140726 0.064820327 0.99999856007487 5.92487195457512 0
0.938644397 3.724543412 0.940146477 0.684803306 -0.062348554 0.002814801 0.064820327 1.00000000000000 5.92487195457512 0
-0.941648557 3.724543412 0.940146477 0.684803306 -0.062443706 0.002819288 0.064820327 1.00000000000000 5.92487195457512 0
0.938644397 3.724543412 -0.940146477 0.684803306 -0.062348554 0.002814801 0.064820327 1.00000000000000 5.92487195457512 0
-0.941648557 3.724543412 -0.940146477 0.684803306 -0.062443706 0.002819288 0.064820327 1.00000000000000 5.92487195457512 0
2.964452655 1.698735153 0.940146477 0.678425583 -0.002722639 -0.000251702 0.064820327 0.99068678118091 5.92487195457512 0
-2.967456815 1.698735153 0.940146477 0.679340548 -0.003135627 -0.000218277 0.064820327 0.99202287934158 5.92487195457512 0
2.964452655 1.698735153 -0.940146477 0.678425583 -0.002722639 -0.000251702 0.064820327 0.99068678118091 5.92487195457512 0
-2.967456815 1.698735153 -0.940146477 0.679340548 -0.003135627 -0.000218277 0.064820327 0.99202287934158 5.92487195457512 0
1.443897485 2.203988242 2.527108719 0.732667465 -0.049270420 0.003061331 0.069350928 1.00000000000000 5.72807162728755 0
-1.446901645 2.203988242 2.527108719 0.732667465 -0.049403048 0.003067108 0.069350928 1.00000000000000 5.72807162728755 0
1.443897485 -0.686810888 2.527108719 0.560974854 0.012377747 0.000037958 0.069350928 0.76566093175215 5.72807162728755 0
-1.446901645 -0.686810888 2.527108719 0.559720398 0.012347912 0.000036301 0.069350928 0.76394875510165 5.72807162728755 0
1.443897485 2.203988242 -2.527108719 0.732667465 -0.049270420 0.003061331 0.069350928 1.00000000000000 5.72807162728755 0
-1.446901645 2.203988242 -2.527108719 0.732667465 -0.049403048 0.003067108 0.069350928 1.00000000000000 5.72807162728755 0
1.443897485 -0.686810888 -2.527108719 0.560974854 0.012377747 0.000037958 0.069350928 0.76566093175215 5.72807162728755 0
-1.446901645 -0.686810888 -2.527108719 0.559720398 0.012347912 0.000036301 0.069350928 0.76394875510165 5.72807162728755 0
1.443897485 3.285697396 1.445399565 0.732667465 -0.056108405 0.002840380 0.069350928 1.00000000000000 5.72807162728755 0
-1.446901645 3.285697396 1.445399565 0.732667465 -0.056253615 0.002847428 0.069350928 1.00000000000000 5.72807162728755 0
1.443897485 3.285697396 -1.445399565 0.732667465 -0.056108405 0.002840380 0.069350928 1.00000000000000 5.72807162728755 0
-1.446901645 3.285697396 -1.445399565 0.732667465 -0.056253615 0.002847428 0.069350928 1.00000000000000 5.72807162728755 0
2.525606639 2.203988242 1.445399565 0.732667457 -0.026536671 0.001449314 0.069350928 0.99999998945811 5.72807162728755 0
-2.528610800 2.203988242 1.445399565 0.732667459 -0.026822906 0.001464347 0.069350928 0.99999999212193 5.72807162728755 0
2.525606639 2.203988242 -1.445399565 0.732667457 -0.026536671 0.001449314 0.069350928 0.99999998945811 5.72807162728755 0
-2.528610800 2.203988242 -1.445399565 0.732667459 -0.026822906 0.001464347 0.069350928 0.99999999212193 5.72807162728755 0
0.420824682 1.180915439 3.194983333 0.545212269 -0.047469001 0.002657535 0.051607282 1.00000000000000 6.64016824025943 0
-0.423828842 1.180915439 3.194983333 0.545212269 -0.047499407 0.002658338 0.051607282 1.00000000000000 6.64016824025943 0
0.420824682 0.336261914 3.194983333 0.545212269 -0.033127999 0.002327134 0.051607282 1.00000000000000 6.64016824025943 0
-0.423828842 0.336261914 3.194983333 0.545212269 -0.033151179 0.002327581 0.051607282 1.00000000000000 6.64016824025943 0
0.420824682 1.180915439 -3.194983333 0.545212269 -0.047469001 0.002657535 0.051607282 1.00000000000000 6.64016824025943 0
-0.423828842 1.180915439 -3.194983333 0.545212269 -0.047499407 0.002658338 0.051607282 1.00000000000000 6.64016824025943 0
0.420824682 0.336261914 -3.194983333 0.545212269 -0.033127999 0.002327134 0.051607282 1.00000000000000 6.64016824025943 0
-0.423828842 0.336261914 -3.194983333 0.545212269 -0.033151179 0.002327581 0.051607282 1.00000000000000 6.64016824025943 0
0.420824682 3.953572010 0.422326762 0.545212269 -0.065430129 0.002293883 0.051607282 1.00000000000000 6.64016824025943 0
-0.423828842 3.953572010 0.422326762 0.545212269 -0.065473115 0.002295539 0.051607282 1.00000000000000 6.64016824025943 0
0.420824682 -2.436394656 0.422326762 0.074164805 0.071361304 -0.000346808 0.051607282 0.13602922924750 6.64016824025943 0
-0.423828842 -2.436394656 0.422326762 0.066654984 0.071574140 -0.000314774 0.051607282 0.12225510581859 6.64016824025943 0
0.420824682 3.953572010 -0.422326762 0.545212269 -0.065430129 0.002293883 0.051607282 1.00000000000000 6.64016824025943 0
-0.423828842 3.953572010 -0.422326762 0.545212269 -0.065473115 0.002295539 0.051607282 1.00000000000000 6.64016824025943 0
0.420824682 -2.436394656 -0.422326762 0.074164805 0.071361304 -0.000346808 0.051607282 0.13602922924750 6.64016824025943 0
-0.423828842 -2.436394656 -0.422326762 0.066654984 0.071574140 -0.000314774 0.051607282 0.12225510581859 6.64016824025943 0
3.193481253 1.180915439 0.422326762 0.125418412 0.024313616 -0.000394951 0.051607282 0.23003593048597 6.64016824025943 0
-3.196485413 1.180915439 0.422326762 0.136614554 0.023728483 -0.000422626 0.051607282 0.25057131192939 6.64016824025943 0
3.193481253 1.180915439 -0.422326762 0.125418412 0.024313616 -0.000394951 0.051607282 0.23003593048597 6.64016824025943 0
-3.196485413 1.180915439 -0.422326762 0.136614554 0.023728483 -0.000422626 0.051607282 0.25057131192939 6.64016824025943 0
1.122364875 3.808434796 0.000000000 0.670678841 -0.060826142 0.002612389 0.063483370 1.00000000000000 5.98693565867642 0
-1.125369036 3.808434796 0.000000000 0.670678841 -0.060941617 0.002617768 0.063483370 1.00000000000000 5.98693565867642 0
3.048344039 1.882455632 0.000000000 0.667941166 -0.003265532 -0.000320575 0.063483370 0.99591805444115 5.98693565867642 0
-3.051348200 1.882455632 0.000000000 0.668398854 -0.003696532 -0.000289072 0.063483370 0.99660047991345 5.98693565867642 0
1.122364875 0.758588677 3.049846119 0.670678840 -0.034175930 0.002713523 0.063483370 0.99999999999720 5.98693565867642 0
-1.125369036 0.758588677 3.049846119 0.670678840 -0.034255279 0.002716040 0.063483370 0.99999999999744 5.98693565867642 0
1.122364875 0.758588677 -3.049846119 0.670678840 -0.034175930 0.002713523 0.063483370 0.99999999999720 5.98693565867642 0
-1.125369036 0.758588677 -3.049846119 0.670678840 -0.034255279 0.002716040 0.063483370 0.99999999999744 5.98693565867642 0
-3.051348200 0.758588677 1.123866955 0.036962805 0.032435056 -0.000151044 0.063483370 0.05511252629733 5.98693565867642 0
-3.051348200 0.758588677 -1.123866955 0.036962805 0.032435056 -0.000151044 0.063483370 0.05511252629732 5.98693565867642 0
-0.001502080 1.882455632 3.049846119 0.670678841 -0.056735485 0.003466744 0.063483370 1.00000000000000 5.98693565867642 0
-0.001502080 -0.365278279 3.049846119 0.670678841 -0.018360449 0.002369249 0.063483370 0.99999999999999 5.98693565867642 0
-0.001502080 1.882455632 -3.049846119 0.670678841 -0.056735485 0.003466744 0.063483370 1.00000000000000 5.98693565867642 0
-0.001502080 -0.365278279 -3.049846119 0.670678841 -0.018360449 0.002369249 0.063483370 0.99999999999999 5.98693565867642 0
-0.001502080 3.808434796 1.123866955 0.670678841 -0.066160784 0.002971058 0.063483370 1.00000000000000 5.98693565867642 0
-0.001502080 -2.291257443 1.123866955 0.601394772 0.057249560 -0.001707975 0.063483370 0.89669561016068 5.98693565867642 0
-0.001502080 3.808434796 -1.123866955 0.670678841 -0.066160784 0.002971058 0.063483370 1.00000000000000 5.98693565867642 0
-0.001502080 -2.291257443 -1.123866955 0.601394772 0.057249560 -0.001707975 0.063483370 0.89669561016068 5.98693565867642 0
0.515435796 3.475980741 1.706808098 0.734191201 -0.064601718 0.003341742 0.069495157 1.00000000000000 5.72212453546743 0
-0.518439956 3.475980741 1.706808098 0.734191201 -0.064652195 0.003344235 0.069495157 1.00000000000000 5.72212453546743 0
0.515435796 -1.958803388 1.706808098 0.482945432 0.044462292 -0.000808283 0.069495157 0.65779245391929 5.72212453546743 0
-0.518439956 -1.958803388 1.706808098 0.471379440 0.044580524 -0.000796577 0.069495157 0.64203907486887 5.72212453546743 0
0.515435796 3.475980741 -1.706808098 0.734191201 -0.064601718 0.003341742 0.069495157 1.00000000000000 5.72212453546743 0
-0.518439956 3.475980741 -1.706808098 0.734191201 -0.064652195 0.003344235 0.069495157 1.00000000000000 5.72212453546743 0
0.515435796 -1.958803388 -1.706808098 0.482945432 0.044462292 -0.000808283 0.069495157 0.65779245391929 5.72212453546743 0
-0.518439956 -1.958803388 -1.706808098 0.471379440 0.044580524 -0.000796577 0.069495157 0.64203907486887 5.72212453546743 0
0.515435796 2.465396775 2.717392065 0.734191201 -0.060225609 0.003666882 0.069495157 1.00000000000000 5.72212453546743 0
-0.518439956 2.465396775 2.717392065 0.734191201 -0.060271095 0.003668877 0.069495157 1.00000000000000 5.72212453546743 0
0.515435796 -0.948219422 2.717392065 0.734142551 0.001385487 0.001527850 0.069495157 0.99993373671879 5.72212453546743 0
-0.518439956 -0.948219422 2.717392065 0.734138342 0.001392421 0.001523081 0.069495157 0.99992800363148 5.72212453546743 0
0.515435796 2.465396775 -2.717392065 0.734191201 -0.060225609 0.003666882 0.069495157 1.00000000000000 5.72212453546743 0
-0.518439956 2.465396775 -2.717392065 0.734191201 -0.060271095 0.003668877 0.069495157 1.00000000000000 5.72212453546743 0
0.515435796 -0.948219422 -2.717392065 0.734142551 0.001385487 0.001527850 0.069495157 0.99993373671879 5.72212453546743 0
-0.518439956 -0.948219422 -2.717392065 0.734138342 0.001392421 0.001523081 0.069495157 0.99992800363148 5.72212453546743 0
2.715889984 1.275526553 1.706808098 0.713757276 -0.002825116 0.000022199 0.069495157 0.97216811448469 5.72212453546743 0
-2.718894145 1.275526553 1.706808098 0.715798502 -0.003176337 0.000050033 0.069495157 0.97494835246637 5.72212453546743 0
2.715889984 1.275526553 -1.706808098 0.713757276 -0.002825116 0.000022199 0.069495157 0.97216811448469 5.72212453546743 0
-2.718894145 1.275526553 -1.706808098 0.715798502 -0.003176337 0.000050033 0.069495157 0.97494835246637 5.72212453546743 0
2.715889984 2.465396775 0.516937876 0.734191195 -0.024306547 0.001108249 0.069495157 0.99999999203798 5.72212453546743 0
-2.718894145 2.465396775 0.516937876 0.734191197 -0.024629579 0.001124987 0.069495157 0.99999999426397 5.72212453546743 0
2.715889984 2.465396775 -0.516937876 0.734191195 -0.024306547 0.001108249 0.069495157 0.99999999203798 5.72212453546743 0
-2.718894145 2.465396775 -0.516937876 0.734191197 -0.024629579 0.001124987 0.069495157 0.99999999426397 5.72212453546743 0
1.705306018 1.275526553 2.717392065 0.734191200 -0.032965485 0.002546280 0.069495157 0.99999999857154 5.72212453546743 0
-1.708310179 1.275526553 2.717392065 0.734191200 -0.033115397 0.002552696 0.069495157 0.99999999878750 5.72212453546743 0
1.705306018 0.241650801 2.717392065 0.732124486 -0.010607881 0.001442288 0.069495157 0.99718504482748 5.72212453546743 0
-1.708310179 0.241650801 2.717392065 0.732209113 -0.010732705 0.001448960 0.069495157 0.99730030988057 5.72212453546743 0
1.705306018 1.275526553 -2.717392065 0.734191200 -0.032965485 0.002546280 0.069495157 0.99999999857154 5.72212453546743 0
-1.708310179 1.275526553 -2.717392065 0.734191200 -0.033115397 0.002552696 0.069495157 0.99999999878750 5.72212453546743 0
1.705306018 0.241650801 -2.717392065 0.732124486 -0.010607881 0.001442288 0.069495157 0.99718504482748 5.72212453546743 0
-1.708310179 0.241650801 -2.717392065 0.732209113 -0.010732705 0.001448960 0.069495157 0.99730030988057 5.72212453546743 0
1.705306018 3.475980741 0.516937876 0.734191201 -0.053079592 0.002501634 0.069495157 1.00000000000000 5.72212453546743 0
-1.708310179 3.475980741 0.516937876 0.734191201 -0.053257274 0.002510443 0.069495157 1.00000000000000 5.72212453546743 0
1.705306018 3.475980741 -0.516937876 0.734191201 -0.053079592 0.002501634 0.069495157 1.00000000000000 5.72212453546743 0
-1.708310179 3.475980741 -0.516937876 0.734191201 -0.053257274 0.002510443 0.069495157 1.00000000000000 5.72212453546743 0
-3.901906487 -0.382135483 0.000000000 0.290333349 0.054954322 -0.001426749 0.048107466 1.00000000000000 9.09570236993596 1
-1.445262513 -2.838779457 0.000000000 0.290333349 0.066309029 -0.001235413 0.048107466 1.00000000000000 9.09570236993596 1
-2.863606572 1.036208576 1.418344060 0.268623555 0.012769148 -0.000572418 0.123071735 0.36166070560494 5.68673929808916 1
-2.863606572 -1.800479543 1.418344060 0.742750182 0.059728230 -0.003288700 0.123071735 0.99999999999384 5.68673929808916 1
-2.863606572 1.036208576 -1.418344060 0.268623555 0.012769148 -0.000572418 0.123071735 0.36166070560494 5.68673929808916 1
-2.863606572 -1.800479543 -1.418344060 0.742750182 0.059728230 -0.003288700 0.123071735 0.99999999999384 5.68673929808916 1
-1.900025723 0.072627727 2.370966145 0.071883162 0.005288481 -0.000060444 0.103191734 0.11542445116612 6.21040647160369 1
-1.900025723 -0.836898693 2.370966145 0.587695893 0.027192834 -0.001262567 0.103191734 0.94367685191894 6.21040647160369 1
-1.900025723 0.072627727 -2.370966145 0.071883162 0.005288481 -0.000060444 0.103191734 0.11542445116612 6.21040647160369 1
-1.900025723 -0.836898693 -2.370966145 0.587695893 0.027192834 -0.001262567 0.103191734 0.94367685191894 6.21040647160369 1
-0.990499303 -2.753101628 0.454763210 0.622715837 0.064734525 -0.002445658 0.103191734 0.99990918362020 6.21040647160369 1
-1.900025723 -2.753101628 0.454763210 0.622772395 0.066564680 -0.002664182 0.103191734 0.99999999999214 6.21040647160369 1
-0.990499303 -2.753101628 -0.454763210 0.622715837 0.064734525 -0.002445658 0.103191734 0.99990918362020 6.21040647160369 1
-1.900025723 -2.753101628 -0.454763210 0.622772395 0.066564680 -0.002664182 0.103191734 0.99999999999214 6.21040647160369 1
-3.816228658 0.072627727 0.454763210 0.622772392 0.047806448 -0.002726393 0.103191734 0.99999999491585 6.21040647160369 1
-3.816228658 -0.836898693 0.454763210 0.622772395 0.059307360 -0.002983012 0.103191734 1.00000000000000 6.21040647160369 1
-3.816228658 0.072627727 -0.454763210 0.622772392 0.047806448 -0.002726393 0.103191734 0.99999999491585 6.21040647160369 1
-3.816228658 -0.836898693 -0.454763210 0.622772395 0.059307360 -0.002983012 0.103191734 1.00000000000000 6.21040647160369 1
-3.141381221 1.313983225 0.530530180 0.334256311 0.016881352 -0.000796929 0.124945097 0.44327777296315 5.64394628731236 1
-3.141381221 -2.078254191 0.530530180 0.754056106 0.067109878 -0.003679175 0.124945097 1.00000000000000 5.64394628731236 1
-3.141381221 1.313983225 -0.530530180 0.334256311 0.016881352 -0.000796929 0.124945097 0.44327777296315 5.64394628731236 1
-3.141381221 -2.078254191 -0.530530180 0.754056106 0.067109878 -0.003679175 0.124945097 1.00000000000000 5.64394628731236 1
-3.141381221 0.148394696 1.696118708 0.752875668 0.033319034 -0.002714346 0.124945097 0.99843454930760 5.64394628731236 1
-3.141381221 -0.912665663 1.696118708 0.754056093 0.049885331 -0.003093066 0.124945097 0.99999998205786 5.64394628731236 1
-3.141381221 0.148394696 -1.696118708 0.752875668 0.033319034 -0.002714346 0.124945097 0.99843454930760 5.64394628731236 1
-3.141381221 -0.912665663 -1.696118708 0.754056093 0.049885331 -0.003093066 0.124945097 0.99999998205786 5.64394628731236 1
-0.914732333 -2.078254191 1.696118708 0.696111337 0.048394948 -0.001831146 0.124945097 0.92315589213086 5.64394628731236 1
-1.975792692 -2.078254191 1.696118708 0.754055465 0.054564768 -0.002818238 0.124945097 0.99999915030290 5.64394628731236 1
-0.914732333 -2.078254191 -1.696118708 0.696111337 0.048394948 -0.001831146 0.124945097 0.92315589213086 5.64394628731236 1
-1.975792692 -2.078254191 -1.696118708 0.754055465 0.054564768 -0.002818238 0.124945097 0.99999915030290 5.64394628731236 1
-2.417330672 0.589932676 2.035992780 0.175479872 0.007817268 -0.000264437 0.120580249 0.24113857499204 5.74518995931283 1
-2.417330672 -1.354203643 2.035992780 0.727710992 0.046193978 -0.002573315 0.120580249 0.99999612168609 5.74518995931283 1
-2.417330672 0.589932676 -2.035992780 0.175479872 0.007817268 -0.000264437 0.120580249 0.24113857499204 5.74518995931283 1
-2.417330672 -1.354203643 -2.035992780 0.727710992 0.046193978 -0.002573315 0.120580249 0.99999612168609 5.74518995931283 1
-0.473194353 -2.418128264 0.972068160 0.584664675 0.061047218 -0.002038312 0.120580249 0.80342665357784 5.74518995931283 1
-2.417330672 -2.418128264 0.972068160 0.727713815 0.064779293 -0.003245598 0.120580249 0.99999999999836 5.74518995931283 1
-0.473194353 -2.418128264 -0.972068160 0.584664675 0.061047218 -0.002038312 0.120580249 0.80342665357784 5.74518995931283 1
-2.417330672 -2.418128264 -0.972068160 0.727713815 0.064779293 -0.003245598 0.120580249 0.99999999999836 5.74518995931283 1
-3.481255293 0.589932676 0.972068160 0.726659685 0.034393649 -0.002879285 0.120580249 0.99855144987916 5.74518995931283 1
-3.481255293 -1.354203643 0.972068160 0.727713815 0.061301309 -0.003462198 0.120580249 0.99999999999998 5.74518995931283 1
-3.481255293 0.589932676 -0.972068160 0.726659685 0.034393649 -0.002879285 0.120580249 0.99855144987916 5.74518995931283 1
-3.481255293 -1.354203643 -0.972068160 0.727713815 0.061301309 -0.003462198 0.120580249 0.99999999999998 5.74518995931283 1
-0.270080121 -2.539459279 0.000000000 0.498183500 0.069048270 -0.001907487 0.121830917 0.67755941177421 5.71562495585747 1
-2.620444905 -2.539459279 0.000000000 0.735261723 0.068568412 -0.003482341 0.121830917 1.00000000000000 5.71562495585747 1
-3.602586309 0.793046909 0.000000000 0.733585067 0.034528952 -0.003016870 0.121830917 0.99771964810976 5.71562495585747 1
-3.602586309 -1.557317875 0.000000000 0.735261723 0.065606375 -0.003671274 0.121830917 1.00000000000000 5.71562495585747 1
-2.620444905 -0.382135483 2.157323796 0.732408070 0.031508649 -0.002169309 0.121830917 0.99611886118293 5.71562495585747 1
-2.620444905 -0.382135483 -2.157323796 0.732408070 0.031508649 -0.002169309 0.121830917 0.99611886118293 5.71562495585747 1
-3.602586309 -0.382135483 1.175182392 0.735261718 0.049915328 -0.003200466 0.121830917 0.99999999415548 5.71562495585747 1
-3.602586309 -0.382135483 -1.175182392 0.735261718 0.049915328 -0.003200466 0.121830917 0.99999999415548 5.71562495585747 1
-1.445262513 -1.557317875 2.157323796 0.711437326 0.037979607 -0.001677216 0.121830917 0.96759739353997 5.71562495585747 1
-1.445262513 -1.557317875 -2.157323796 0.711437326 0.037979607 -0.001677216 0.121830917 0.96759739353997 5.71562495585747 1
-1.445262513 -2.539459279 1.175182392 0.735256468 0.060191964 -0.002789018 0.121830917 0.99999285334878 5.71562495585747 1
-1.445262513 -2.539459279 -1.175182392 0.735256468 0.060191964 -0.002789018 0.121830917 0.99999285334878 5.71562495585747 1
3.903408567 -0.376453193 0.000000000 0.290333349 0.055068218 -0.001428632 0.048107466 1.00000000000000 9.09570236993596 2
1.446764593 -2.833097167 0.000000000 0.290333349 0.066287187 -0.001233710 0.048107466 1.00000000000000 9.09570236993596 2
2.865108653 1.041890866 1.418344060 0.278802618 0.013000184 -0.000613868 0.123071735 0.37536526398828 5.68673929808916 2
2.865108653 -1.794797253 1.418344060 0.742750182 0.059742344 -0.003287719 0.123071735 0.99999999999371 5.68673929808916 2
2.865108653 1.041890866 -1.418344060 0.278802618 0.013000184 -0.000613868 0.123071735 0.37536526398828 5.68673929808916 2
2.865108653 -1.794797253 -1.418344060 0.742750182 0.059742344 -0.003287719 0.123071735 0.99999999999371 5.68673929808916 2
1.901527803 0.078310017 2.370966145 0.073496543 0.005374292 -0.000062554 0.103191734 0.11801509458669 6.21040647160369 2
1.901527803 -0.831216403 2.370966145 0.587608251 0.027199342 -0.001262666 0.103191734 0.94353612266304 6.21040647160369 2
1.901527803 0.078310017 -2.370966145 0.073496543 0.005374292 -0.000062554 0.103191734 0.11801509458669 6.21040647160369 2
1.901527803 -0.831216403 -2.370966145 0.587608251 0.027199342 -0.001262666 0.103191734 0.94353612266304 6.21040647160369 2
1.901527803 -2.747419338 0.454763210 0.622772395 0.066539500 -0.002660723 0.103191734 0.99999999999067 6.21040647160369 2
0.992001383 -2.747419338 0.454763210 0.622706907 0.064727994 -0.002446511 0.103191734 0.99989484554855 6.21040647160369 2
1.901527803 -2.747419338 -0.454763210 0.622772395 0.066539500 -0.002660723 0.103191734 0.99999999999067 6.21040647160369 2
0.992001383 -2.747419338 -0.454763210 0.622706907 0.064727994 -0.002446511 0.103191734 0.99989484554855 6.21040647160369 2
3.817730738 0.078310017 0.454763210 0.622772392 0.047949807 -0.002731459 0.103191734 0.99999999574062 6.21040647160369 2
3.817730738 -0.831216403 0.454763210 0.622772395 0.059393347 -0.002985456 0.103191734 1.00000000000000 6.21040647160369 2
3.817730738 0.078310017 -0.454763210 0.622772392 0.047949807 -0.002731459 0.103191734 0.99999999574062 6.21040647160369 2
3.817730738 -0.831216403 -0.454763210 0.622772395 0.059393347 -0.002985456 0.103191734 1.00000000000000 6.21040647160369 2
3.142883301 1.319665515 0.530530180 0.347024307 0.017132364 -0.000849027 0.124945097 0.46021019381757 5.64394628731236 2
3.142883301 -2.072571901 0.530530180 0.754056106 0.067124921 -0.003678052 0.124945097 1.00000000000000 5.64394628731236 2
3.142883301 1.319665515 -0.530530180 0.347024307 0.017132364 -0.000849027 0.124945097 0.46021019381756 5.64394628731236 2
3.142883301 -2.072571901 -0.530530180 0.754056106 0.067124921 -0.003678052 0.124945097 1.00000000000000 5.64394628731236 2
3.142883301 0.154076986 1.696118708 0.752962862 0.033462246 -0.002733563 0.124945097 0.99855018165708 5.64394628731236 2
3.142883301 -0.906983373 1.696118708 0.754056093 0.049949777 -0.003095359 0.124945097 0.99999998299891 5.64394628731236 2
3.142883301 0.154076986 -1.696118708 0.752962862 0.033462246 -0.002733563 0.124945097 0.99855018165708 5.64394628731236 2
3.142883301 -0.906983373 -1.696118708 0.754056093 0.049949777 -0.003095359 0.124945097 0.99999998299891 5.64394628731236 2
1.977294772 -2.072571901 1.696118708 0.754055416 0.054538024 -0.002815221 0.124945097 0.99999908484444 5.64394628731236 2
0.916234413 -2.072571901 1.696118708 0.693017389 0.048343200 -0.001818694 0.124945097 0.91905281782926 5.64394628731236 2
1.977294772 -2.072571901 -1.696118708 0.754055416 0.054538024 -0.002815221 0.124945097 0.99999908484444 5.64394628731236 2
0.916234413 -2.072571901 -1.696118708 0.693017389 0.048343200 -0.001818694 0.124945097 0.91905281782926 5.64394628731236 2
2.418832752 0.595614966 2.035992780 0.181326645 0.007993315 -0.000276015 0.120580249 0.24917301415265 5.74518995931283 2
2.418832752 -1.348521353 2.035992780 0.727710961 0.046205699 -0.002572723 0.120580249 0.99999607908205 5.74518995931283 2
2.418832752 0.595614966 -2.035992780 0.181326645 0.007993315 -0.000276015 0.120580249 0.24917301415265 5.74518995931283 2
2.418832752 -1.348521353 -2.035992780 0.727710961 0.046205699 -0.002572723 0.120580249 0.99999607908205 5.74518995931283 2
2.418832752 -2.412445974 0.972068160 0.727713815 0.064764916 -0.003242656 0.120580249 0.99999999999819 5.74518995931283 2
0.474696433 -2.412445974 0.972068160 0.576767277 0.061073630 -0.002014475 0.120580249 0.79257431371269 5.74518995931283 2
2.418832752 -2.412445974 -0.972068160 0.727713815 0.064764916 -0.003242656 0.120580249 0.99999999999819 5.74518995931283 2
0.474696433 -2.412445974 -0.972068160 0.576767277 0.061073630 -0.002014475 0.120580249 0.79257431371269 5.74518995931283 2
3.482757373 0.595614966 0.972068160 0.726768125 0.034577350 -0.002933421 0.120580249 0.99870046491368 5.74518995931283 2
3.482757373 -1.348521353 0.972068160 0.727713815 0.061353266 -0.003463288 0.120580249 0.99999999999999 5.74518995931283 2
3.482757373 0.595614966 -0.972068160 0.726768125 0.034577350 -0.002933421 0.120580249 0.99870046491368 5.74518995931283 2
3.482757373 -1.348521353 -0.972068160 0.727713815 0.061353266 -0.003463288 0.120580249 0.99999999999999 5.74518995931283 2
2.621946985 -2.533776989 0.000000000 0.735261723 0.068558687 -0.003479594 0.121830917 1.00000000000000 5.71562495585747 2
0.271582201 -2.533776989 0.000000000 0.486194261 0.069160087 -0.001863724 0.121830917 0.66125332825795 5.71562495585747 2
3.604088389 0.798729199 0.000000000 0.733768969 0.034728350 -0.003031834 0.121830917 0.99796976585344 5.71562495585747 2
3.604088389 -1.551635585 0.000000000 0.735261723 0.065652922 -0.003671929 0.121830917 1.00000000000000 5.71562495585747 2
2.621946985 -0.376453193 2.157323796 0.732508767 0.031590642 -0.002176271 0.121830917 0.99625581541340 5.71562495585747 2
2.621946985 -0.376453193 -2.157323796 0.732508767 0.031590642 -0.002176271 0.121830917 0.99625581541340 5.71562495585747 2
3.604088389 -0.376453193 1.175182392 0.735261719 0.050024841 -0.003206084 0.121830917 0.99999999480267 5.71562495585747 2
3.604088389 -0.376453193 -1.175182392 0.735261719 0.050024841 -0.003206084 0.121830917 0.99999999480267 5.71562495585747 2
1.446764593 -1.551635585 2.157323796 0.710604251 0.037930169 -0.001671579 0.121830917 0.96646436068642 5.71562495585747 2
1.446764593 -1.551635585 -2.157323796 0.710604251 0.037930169 -0.001671579 0.121830917 0.96646436068642 5.71562495585747 2
1.446764593 -2.533776989 1.175182392 0.735255808 0.060158601 -0.002786999 0.121830917 0.99999195599340 5.71562495585747 2
1.446764593 -2.533776989 -1.175182392 0.735255808 0.060158601 -0.002786999 0.121830917 0.99999195599340 5.71562495585747 2
##################################################
#COSMO_corrected
Corrected dielectric energy = -0.012505722
Total C-PCM charge = 0.000000000
C-PCM corrected charges:
0.001091047
-0.000798400
0.001217204
0.001217204
0.003813498
0.000565417
0.003813498
0.000565417
0.000644188
0.000661863
0.000644188
0.000661863
0.002008922
0.002021630
0.002647543
0.002656423
0.002647543
0.002656423
0.002178909
0.002190355
0.002178909
0.002190355
0.002100080
0.002111285
-0.000202102
-0.000204871
0.002100080
0.002111285
-0.000202102
-0.000204871
0.003439236
0.003443828
-0.000402915
-0.000402790
0.003439236
0.003443828
-0.000402915
-0.000402790
0.003303246
0.003306113
0.002217979
0.002218197
0.003303246
0.003306113
0.002217979
0.002218197
0.002895865
0.002900357
0.002895865
0.002900357
-0.000179570
-0.000145584
-0.000179570
-0.000145584
0.003146720
0.003152510
0.000078192
0.000076369
0.003146720
0.003152510
0.000078192
0.000076369
0.002926792
0.002933850
0.002926792
0.002933850
0.001532890
0.001547946
0.001532890
0.001547946
0.002720321
0.002721127
0.002388866
0.002389316
0.002720321
0.002721127
0.002388866
0.002389316
0.002358271
0.002359929
-0.000344465
-0.000312737
0.002358271
0.002359929
-0.000344465
-0.000312737
-0.000389773
-0.000416722
-0.000389773
-0.000416722
0.002691935
0.002697320
-0.000247299
-0.000215330
0.002789946
0.002792472
0.002789946
0.002792472
-0.000150071
-0.000150071
0.003545277
0.002444380
0.003545277
0.002444380
0.003050755
-0.001669108
0.003050755
-0.001669108
0.003428703
0.003431198
-0.000782100
-0.000771634
0.003428703
0.003431198
-0.000782100
-0.000771634
0.003753190
0.003755189
0.001610077
0.001605330
0.003753190
0.003755189
0.001610077
0.001605330
0.000094171
0.000122702
0.000094171
0.000122702
0.001191897
0.001208697
0.001191897
0.001208697
0.002629951
0.002636370
0.001522328
0.001529108
0.002629951
0.002636370
0.001522328
0.001529108
0.002588160
0.002596982
0.002588160
0.002596982
-0.001385146
-0.001197129
-0.000562204
-0.003187309
-0.000562204
-0.003187309
-0.000058565
-0.001205653
-0.000058565
-0.001205653
-0.002371786
-0.002582613
-0.002371786
-0.002582613
-0.002643900
-0.002897079
-0.002643900
-0.002897079
-0.000779570
-0.003573776
-0.000779570
-0.003573776
-0.002619507
-0.002992435
-0.002619507
-0.002992435
-0.001768406
-0.002720668
-0.001768406
-0.002720668
-0.000260533
-0.002479377
-0.000260533
-0.002479377
-0.001996672
-0.003147021
-0.001996672
-0.003147021
-0.002786774
-0.003361116
-0.002786774
-0.003361116
-0.001878965
-0.003380972
-0.002923923
-0.003567785
-0.002080143
-0.002080143
-0.003101627
-0.003101627
-0.001603874
-0.001603874
-0.002696530
-0.002696530
-0.001387007
-0.001195473
-0.000602999
-0.003186341
-0.000602999
-0.003186341
-0.000060627
-0.001205762
-0.000060627
-0.001205762
-0.002579214
-0.002372765
-0.002579214
-0.002372765
-0.002648901
-0.002899498
-0.002648901
-0.002899498
-0.000830504
-0.003572666
-0.000830504
-0.003572666
-0.002638504
-0.002994706
-0.002638504
-0.002994706
-0.002717683
-0.001756887
-0.002717683
-0.001756887
-0.000271919
-0.002478798
-0.000271919
-0.002478798
-0.003144118
-0.001973864
-0.003144118
-0.001973864
-0.002840435
-0.003362195
-0.002840435
-0.003362195
-0.003378260
-0.001836545
-0.002938574
-0.003568434
-0.002087000
-0.002087000
-0.003107186
-0.003107186
-0.001598653
-0.001598653
-0.002694567
-0.002694567
##################################################
#ADJACENCY_MATRIX
0 1 1
1 0 0
1 0 0
6.1.4 energy_TZVPD 📂#
The folder contains an xyz file with the same name: water_c000:
Number of Atoms: The first line 3 indicates that the number of atoms in our molecule
Energy: The energy of the molecule in the gas phase
Atomic Coordinates: atomic symbols and their Cartesian coordinates in space. Each line corresponds to an atom.
# ⚠️⚠️⚠️
energy = r"orcacosmo_files\water\energy_TZVPD\water_c000.xyz"
# Open and read the .orcacosmo file
with open(energy, 'r') as file:
contents = file.read()
# Print the contents
print(contents)
3
energy: -76.4684885136930035
O -0.0007809143160200 0.3969563993601200 0.0000000000000000
H -0.7671274283801700 -0.1999882198486500 0.0000000000000000
H 0.7679083426961900 -0.1969681795114700 0.0000000000000000