pymolpro 1.19.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pymolpro/TestProject.molpro/Info.plist +19 -0
- pymolpro/TestProject.molpro/TestProject.inp +6 -0
- pymolpro/TestProject.molpro/molpro.rc +1 -0
- pymolpro/TestProject.molpro/run/1.molpro/1.inp +6 -0
- pymolpro/TestProject.molpro/run/1.molpro/1.out +352 -0
- pymolpro/TestProject.molpro/run/1.molpro/1.xml +1387 -0
- pymolpro/TestProject.molpro/run/1.molpro/Info.plist +11 -0
- pymolpro/TestProject.molpro/run/1.molpro/molpro.rc +1 -0
- pymolpro/__init__.py +20 -0
- pymolpro/_version.py +24 -0
- pymolpro/ase_molpro.py +73 -0
- pymolpro/cube_data.py +121 -0
- pymolpro/database.py +797 -0
- pymolpro/defbas.py +81 -0
- pymolpro/elements.py +181 -0
- pymolpro/geometry.py +112 -0
- pymolpro/grid.py +359 -0
- pymolpro/molpro_input.json +277 -0
- pymolpro/molpro_input.py +1166 -0
- pymolpro/node_xml.py +291 -0
- pymolpro/orbital.py +292 -0
- pymolpro/project.py +1337 -0
- pymolpro/registry.py +67 -0
- pymolpro/run_molpro.py +49 -0
- pymolpro/share/database/A24.json +1 -0
- pymolpro/share/database/A24x8.json +1 -0
- pymolpro/share/database/Bak2000_atomisations.json +1 -0
- pymolpro/share/database/Bak2000_reactions.json +1 -0
- pymolpro/share/database/GMTKN30_BHPERI.json +1 -0
- pymolpro/share/database/GMTKN30_DARC.json +1 -0
- pymolpro/share/database/GMTKN30_DC9.json +1 -0
- pymolpro/share/database/GMTKN30_O3ADD6.json +1 -0
- pymolpro/share/database/GMTKN55_ACONF.json +1 -0
- pymolpro/share/database/GMTKN55_ADIM6.json +1 -0
- pymolpro/share/database/GMTKN55_AHB21.json +1 -0
- pymolpro/share/database/GMTKN55_AL2X6.json +1 -0
- pymolpro/share/database/GMTKN55_ALK8.json +1 -0
- pymolpro/share/database/GMTKN55_ALKBDE10.json +1 -0
- pymolpro/share/database/GMTKN55_Amino20x4.json +1 -0
- pymolpro/share/database/GMTKN55_BH76.json +1 -0
- pymolpro/share/database/GMTKN55_BH76RC.json +1 -0
- pymolpro/share/database/GMTKN55_BHDIV10.json +1 -0
- pymolpro/share/database/GMTKN55_BHPERI.json +1 -0
- pymolpro/share/database/GMTKN55_BHROT27.json +1 -0
- pymolpro/share/database/GMTKN55_BSR36.json +1 -0
- pymolpro/share/database/GMTKN55_BUT14DIOL.json +1 -0
- pymolpro/share/database/GMTKN55_C60ISO.json +1 -0
- pymolpro/share/database/GMTKN55_CARBHB12.json +1 -0
- pymolpro/share/database/GMTKN55_CDIE20.json +1 -0
- pymolpro/share/database/GMTKN55_CHB6.json +1 -0
- pymolpro/share/database/GMTKN55_DARC.json +1 -0
- pymolpro/share/database/GMTKN55_DC13.json +1 -0
- pymolpro/share/database/GMTKN55_DIPCS10.json +1 -0
- pymolpro/share/database/GMTKN55_FH51.json +1 -0
- pymolpro/share/database/GMTKN55_G21EA.json +1 -0
- pymolpro/share/database/GMTKN55_G21IP.json +1 -0
- pymolpro/share/database/GMTKN55_G2RC.json +1 -0
- pymolpro/share/database/GMTKN55_HAL59.json +1 -0
- pymolpro/share/database/GMTKN55_HEAVY28.json +1 -0
- pymolpro/share/database/GMTKN55_HEAVYSB11.json +1 -0
- pymolpro/share/database/GMTKN55_ICONF.json +1 -0
- pymolpro/share/database/GMTKN55_IDISP.json +1 -0
- pymolpro/share/database/GMTKN55_IL16.json +1 -0
- pymolpro/share/database/GMTKN55_INV24.json +1 -0
- pymolpro/share/database/GMTKN55_ISO34.json +1 -0
- pymolpro/share/database/GMTKN55_ISOL24.json +1 -0
- pymolpro/share/database/GMTKN55_MB16-43.json +1 -0
- pymolpro/share/database/GMTKN55_MCONF.json +1 -0
- pymolpro/share/database/GMTKN55_NBPRC.json +1 -0
- pymolpro/share/database/GMTKN55_PA26.json +1 -0
- pymolpro/share/database/GMTKN55_PArel.json +1 -0
- pymolpro/share/database/GMTKN55_PCONF21.json +1 -0
- pymolpro/share/database/GMTKN55_PNICO23.json +1 -0
- pymolpro/share/database/GMTKN55_PX13.json +1 -0
- pymolpro/share/database/GMTKN55_RC21.json +1 -0
- pymolpro/share/database/GMTKN55_RG18.json +1 -0
- pymolpro/share/database/GMTKN55_RSE43.json +1 -0
- pymolpro/share/database/GMTKN55_S22.json +1 -0
- pymolpro/share/database/GMTKN55_S66.json +1 -0
- pymolpro/share/database/GMTKN55_SCONF.json +1 -0
- pymolpro/share/database/GMTKN55_SIE4x4.json +1 -0
- pymolpro/share/database/GMTKN55_TAUT15.json +1 -0
- pymolpro/share/database/GMTKN55_UPU23.json +1 -0
- pymolpro/share/database/GMTKN55_W4-11.json +1 -0
- pymolpro/share/database/GMTKN55_WATER27.json +1 -0
- pymolpro/share/database/GMTKN55_WCPT18.json +1 -0
- pymolpro/share/database/GMTKN55_YBDE18.json +1 -0
- pymolpro/share/database/Karton_CRBH20.json +1 -0
- pymolpro/share/database/Minnesota_2019_2pIsoE4.json +1 -0
- pymolpro/share/database/Minnesota_2019_3dEE8.json +1 -0
- pymolpro/share/database/Minnesota_2019_4dAEE5.json +1 -0
- pymolpro/share/database/Minnesota_2019_4pIsoE4.json +1 -0
- pymolpro/share/database/Minnesota_2019_ABDE13.json +1 -0
- pymolpro/share/database/Minnesota_2019_AE17.json +1 -0
- pymolpro/share/database/Minnesota_2019_AEE15.json +1 -0
- pymolpro/share/database/Minnesota_2019_AL2X6.json +1 -0
- pymolpro/share/database/Minnesota_2019_ASNC2.json +1 -0
- pymolpro/share/database/Minnesota_2019_BHDIV10.json +1 -0
- pymolpro/share/database/Minnesota_2019_BHPERI26.json +1 -0
- pymolpro/share/database/Minnesota_2019_BHROT27.json +1 -0
- pymolpro/share/database/Minnesota_2019_DC9.json +1 -0
- pymolpro/share/database/Minnesota_2019_DGH4.json +1 -0
- pymolpro/share/database/Minnesota_2019_DGL6.json +1 -0
- pymolpro/share/database/Minnesota_2019_DIPCS10.json +1 -0
- pymolpro/share/database/Minnesota_2019_DM79.json +1 -0
- pymolpro/share/database/Minnesota_2019_EA13.json +1 -0
- pymolpro/share/database/Minnesota_2019_EE23.json +1 -0
- pymolpro/share/database/Minnesota_2019_EE69.json +1 -0
- pymolpro/share/database/Minnesota_2019_EEA11.json +1 -0
- pymolpro/share/database/Minnesota_2019_EEAroT5.json +1 -0
- pymolpro/share/database/Minnesota_2019_EER5.json +1 -0
- pymolpro/share/database/Minnesota_2019_HC7.json +1 -0
- pymolpro/share/database/Minnesota_2019_HEAVYSB11.json +1 -0
- pymolpro/share/database/Minnesota_2019_HTBH38.json +1 -0
- pymolpro/share/database/Minnesota_2019_IP23.json +1 -0
- pymolpro/share/database/Minnesota_2019_ISOL6.json +1 -0
- pymolpro/share/database/Minnesota_2019_LRCTEE2.json +1 -0
- pymolpro/share/database/Minnesota_2019_LRCTEE9.json +1 -0
- pymolpro/share/database/Minnesota_2019_MR-MGM-BE4.json +1 -0
- pymolpro/share/database/Minnesota_2019_MR-MGN-BE17.json +1 -0
- pymolpro/share/database/Minnesota_2019_MR-TM-BE12.json +1 -0
- pymolpro/share/database/Minnesota_2019_MR-TMD-BE3.json +1 -0
- pymolpro/share/database/Minnesota_2019_NCCE30.json +1 -0
- pymolpro/share/database/Minnesota_2019_NGD21.json +1 -0
- pymolpro/share/database/Minnesota_2019_NHTBH38.json +1 -0
- pymolpro/share/database/Minnesota_2019_NaCl.json +1 -0
- pymolpro/share/database/Minnesota_2019_PA8.json +1 -0
- pymolpro/share/database/Minnesota_2019_PX13.json +1 -0
- pymolpro/share/database/Minnesota_2019_S66_0.90.json +1 -0
- pymolpro/share/database/Minnesota_2019_S66_0.95.json +1 -0
- pymolpro/share/database/Minnesota_2019_S66_1.00.json +1 -0
- pymolpro/share/database/Minnesota_2019_S66_1.05.json +1 -0
- pymolpro/share/database/Minnesota_2019_S66_1.10.json +1 -0
- pymolpro/share/database/Minnesota_2019_S66_1.25.json +1 -0
- pymolpro/share/database/Minnesota_2019_S66_1.50.json +1 -0
- pymolpro/share/database/Minnesota_2019_S66_2.00.json +1 -0
- pymolpro/share/database/Minnesota_2019_S66_A.json +1 -0
- pymolpro/share/database/Minnesota_2019_S66_B.json +1 -0
- pymolpro/share/database/Minnesota_2019_SIE4x4.json +1 -0
- pymolpro/share/database/Minnesota_2019_SMAE3.json +1 -0
- pymolpro/share/database/Minnesota_2019_SR-MGM-BE8.json +1 -0
- pymolpro/share/database/Minnesota_2019_SR-MGN-BE107.json +1 -0
- pymolpro/share/database/Minnesota_2019_SR-TM-BE15.json +1 -0
- pymolpro/share/database/Minnesota_2019_TMBH22.json +1 -0
- pymolpro/share/database/Minnesota_2019_TMDBL10.json +1 -0
- pymolpro/share/database/Minnesota_2019_TSG48.json +1 -0
- pymolpro/share/database/Minnesota_2019_WCCR10.json +1 -0
- pymolpro/share/database/Minnesota_2019_YBDE18.json +1 -0
- pymolpro/share/database/Minnesota_2019_pEE5.json +1 -0
- pymolpro/share/database/Minnesota_2019_pTC13.json +1 -0
- pymolpro/share/database/Weizmann_W411_BDE_99.json +1 -0
- pymolpro/share/database/Weizmann_W411_HAT_707.json +1 -0
- pymolpro/share/database/Weizmann_W411_ISOMERIZATION_20.json +1 -0
- pymolpro/share/database/Weizmann_W411_SN_13.json +1 -0
- pymolpro/share/database/Weizmann_W411_TAE_140.json +1 -0
- pymolpro/share/database/Weizmann_W411_TAE_MR_16.json +1 -0
- pymolpro/share/database/Weizmann_W411_TAEnonMR_124.json +1 -0
- pymolpro/share/database/benchmarks_N2minimal.json +1 -0
- pymolpro/share/database/sample.json +1 -0
- pymolpro/sparse_dump.py +60 -0
- pymolpro/test_ase.py +39 -0
- pymolpro/test_database.py +363 -0
- pymolpro/test_molpro_input.py +356 -0
- pymolpro/test_orbital.py +205 -0
- pymolpro/test_pair.py +85 -0
- pymolpro/test_project.py +278 -0
- pymolpro/test_registry.py +46 -0
- pymolpro/test_zmat.py +69 -0
- pymolpro/tuple.py +110 -0
- pymolpro-1.19.4.dist-info/METADATA +45 -0
- pymolpro-1.19.4.dist-info/RECORD +177 -0
- pymolpro-1.19.4.dist-info/WHEEL +5 -0
- pymolpro-1.19.4.dist-info/entry_points.txt +2 -0
- pymolpro-1.19.4.dist-info/licenses/LICENSE +21 -0
- pymolpro-1.19.4.dist-info/scm_file_list.json +212 -0
- pymolpro-1.19.4.dist-info/scm_version.json +8 -0
- pymolpro-1.19.4.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<plist>
|
|
3
|
+
<dict>
|
|
4
|
+
<key>run_directories</key>
|
|
5
|
+
<string>1 </string>
|
|
6
|
+
<key>current_run</key>
|
|
7
|
+
<string>0</string>
|
|
8
|
+
<key>jobnumber</key>
|
|
9
|
+
<string>17869</string>
|
|
10
|
+
<key>_status</key>
|
|
11
|
+
<string>3</string>
|
|
12
|
+
<key>project_hash</key>
|
|
13
|
+
<string>17038499297151771845</string>
|
|
14
|
+
<key>input_specification</key>
|
|
15
|
+
<string>{"method": ["hf", "mp2"]}</string>
|
|
16
|
+
<key>backend</key>
|
|
17
|
+
<string>local</string>
|
|
18
|
+
</dict>
|
|
19
|
+
</plist>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--xml-output --no-backup
|
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
|
|
2
|
+
Working directory : /var/folders/qd/f26v1rbd3g5341rsg3s9j4v80000gn/T//molpro.1N3CWq2Cbq/
|
|
3
|
+
Global scratch directory : /var/folders/qd/f26v1rbd3g5341rsg3s9j4v80000gn/T//molpro.1N3CWq2Cbq/
|
|
4
|
+
Wavefunction directory : /Users/peterk/wfu/
|
|
5
|
+
Main file repository : /var/folders/qd/f26v1rbd3g5341rsg3s9j4v80000gn/T//molpro.1N3CWq2Cbq/
|
|
6
|
+
|
|
7
|
+
id : peterk
|
|
8
|
+
|
|
9
|
+
Nodes nprocs
|
|
10
|
+
pjk2022.connect 1
|
|
11
|
+
GA implementation: MPI file
|
|
12
|
+
GA implementation (serial work in mppx): MPI file
|
|
13
|
+
|
|
14
|
+
Using customized tuning parameters: mindgm=1; mindgv=20; mindgc=4; mindgr=1; noblas=0; minvec=7
|
|
15
|
+
default implementation of scratch files=df
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
Variables initialized (1026), CPU time= 0.00 sec
|
|
19
|
+
symmetry,x,y
|
|
20
|
+
geometry={He;He,He,3}
|
|
21
|
+
rhf
|
|
22
|
+
mp2
|
|
23
|
+
ccsd
|
|
24
|
+
put,xml
|
|
25
|
+
Commands initialized (841), CPU time= 0.01 sec, 687 directives.
|
|
26
|
+
Default parameters read. Elapsed time= 0.05 sec
|
|
27
|
+
|
|
28
|
+
Checking input...
|
|
29
|
+
Passed
|
|
30
|
+
1
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
*** PROGRAM SYSTEM MOLPRO ***
|
|
34
|
+
Copyright, TTI GmbH Stuttgart, 2015
|
|
35
|
+
Version 2023.1 linked Tue Feb 14 17:27:19 2023
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
**********************************************************************************************************************************
|
|
39
|
+
LABEL *
|
|
40
|
+
64 bit serial version DATE: 15-Feb-23 TIME: 07:49:38
|
|
41
|
+
**********************************************************************************************************************************
|
|
42
|
+
|
|
43
|
+
SHA1: a9d442160209409ad326f3e3e50bb5f9f239f41f
|
|
44
|
+
**********************************************************************************************************************************
|
|
45
|
+
|
|
46
|
+
Memory per process: 32 MW
|
|
47
|
+
Total memory per node: 32 MW
|
|
48
|
+
|
|
49
|
+
GA preallocation disabled
|
|
50
|
+
GA check disabled
|
|
51
|
+
|
|
52
|
+
Variable memory set to 32.0 MW
|
|
53
|
+
|
|
54
|
+
ZSYMEL=X Y
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
Recomputing integrals since basis changed
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
Using spherical harmonics
|
|
62
|
+
|
|
63
|
+
Library entry HE S cc-pVDZ selected for orbital group 1
|
|
64
|
+
Library entry HE P cc-pVDZ selected for orbital group 1
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
PROGRAM * SEWARD (Integral evaluation for generally contracted gaussian basis sets) Author: Roland Lindh, 1990
|
|
68
|
+
|
|
69
|
+
Geometry written to block 1 of record 700
|
|
70
|
+
|
|
71
|
+
Orientation using atomic masses
|
|
72
|
+
Molecule type: Linear
|
|
73
|
+
User-specified symmetry elements: X,Y
|
|
74
|
+
Symmetry elements: X,Y
|
|
75
|
+
Rotational constants: 100.1982689 100.1982689 0.0000000 GHz (calculated with average atomic masses)
|
|
76
|
+
|
|
77
|
+
Point group C2v
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
ATOMIC COORDINATES
|
|
82
|
+
|
|
83
|
+
NR ATOM CHARGE X Y Z
|
|
84
|
+
|
|
85
|
+
1 HE 2.00 0.000000000 0.000000000 -1.500000000
|
|
86
|
+
2 HE 2.00 0.000000000 0.000000000 1.500000000
|
|
87
|
+
|
|
88
|
+
NUCLEAR CHARGE: 4
|
|
89
|
+
NUMBER OF PRIMITIVE AOS: 14
|
|
90
|
+
NUMBER OF SYMMETRY AOS: 14
|
|
91
|
+
NUMBER OF CONTRACTIONS: 10 ( 6A1 + 2B1 + 2B2 + 0A2 )
|
|
92
|
+
NUMBER OF INNER CORE ORBITALS: 0 ( 0A1 + 0B1 + 0B2 + 0A2 )
|
|
93
|
+
NUMBER OF OUTER CORE ORBITALS: 0 ( 0A1 + 0B1 + 0B2 + 0A2 )
|
|
94
|
+
NUMBER OF VALENCE ORBITALS: 2 ( 2A1 + 0B1 + 0B2 + 0A2 )
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
NUCLEAR REPULSION ENERGY 1.33333333
|
|
98
|
+
|
|
99
|
+
Eigenvalues of metric
|
|
100
|
+
|
|
101
|
+
1 0.945E-01 0.119E+00 0.947E+00 0.102E+01 0.155E+01 0.227E+01
|
|
102
|
+
2 0.997E+00 0.100E+01
|
|
103
|
+
3 0.997E+00 0.100E+01
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
Contracted 2-electron integrals neglected if value below 1.0D-11
|
|
107
|
+
AO integral compression algorithm 1 Integral accuracy 1.0D-11
|
|
108
|
+
|
|
109
|
+
0.262 MB (compressed) written to integral file (100.0%)
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
NUMBER OF SORTED TWO-ELECTRON INTEGRALS: 648. BUFFER LENGTH: 32768
|
|
113
|
+
NUMBER OF SEGMENTS: 1 SEGMENT LENGTH: 648 RECORD LENGTH: 524288
|
|
114
|
+
|
|
115
|
+
Memory used in sort: 0.56 MW
|
|
116
|
+
|
|
117
|
+
SORT1 READ 777. AND WROTE 608. INTEGRALS IN 1 RECORDS. CPU TIME: 0.00 SEC, REAL TIME: 0.00 SEC
|
|
118
|
+
SORT2 READ 608. AND WROTE 648. INTEGRALS IN 1 RECORDS. CPU TIME: 0.00 SEC, REAL TIME: 0.00 SEC
|
|
119
|
+
|
|
120
|
+
FILE SIZES: FILE 1: 30.2 MBYTE, FILE 4: 4.2 MBYTE, TOTAL: 34.4 MBYTE
|
|
121
|
+
|
|
122
|
+
OPERATOR DM FOR CENTER 0 COORDINATES: 0.000000 0.000000 0.000000
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
**********************************************************************************************************************************
|
|
126
|
+
DATASETS * FILE NREC LENGTH (MB) RECORD NAMES
|
|
127
|
+
1 19 28.55 500 610 700 900 950 970 1000 129 960 1100
|
|
128
|
+
VAR BASINP GEOM SYMINP ZMAT AOBASIS BASIS P2S ABASIS S
|
|
129
|
+
1400 1410 1200 1210 1080 1600 1650 1300 1700
|
|
130
|
+
T V H0 H01 AOSYM SMH MOLCAS ERIS OPER
|
|
131
|
+
|
|
132
|
+
PROGRAMS * TOTAL INT
|
|
133
|
+
CPU TIMES * 0.13 0.04
|
|
134
|
+
REAL TIME * 0.20 SEC
|
|
135
|
+
DISK USED * 33.08 MB
|
|
136
|
+
**********************************************************************************************************************************
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
Program * Restricted Hartree-Fock
|
|
140
|
+
|
|
141
|
+
Orbital guess generated from atomic densities.
|
|
142
|
+
|
|
143
|
+
Initial occupancy: 2 0 0
|
|
144
|
+
|
|
145
|
+
NELEC= 4 SYM=1 MS2= 0 THRE=1.0D-08 THRD=3.2D-06 THRG=3.2D-06 HFMA2=F DIIS_START=2 DIIS_MAX=10 DIIS_INCORE=F
|
|
146
|
+
|
|
147
|
+
Level shifts: 0.00 (CLOSED) 0.00 (OPEN) 0.30 (GAP_MIN)
|
|
148
|
+
|
|
149
|
+
ITER ETOT DE GRAD DDIFF DIIS NEXP TIME(IT) TIME(TOT) DIAG
|
|
150
|
+
1 -5.69705689 -5.69705689 0.00D+00 0.55D+00 0 0 0.00 0.01 start
|
|
151
|
+
2 -5.69708280 -0.00002591 0.22D-02 0.14D-02 1 0 0.00 0.01 diag
|
|
152
|
+
3 -5.69708312 -0.00000032 0.24D-03 0.20D-03 2 0 0.00 0.01 diag
|
|
153
|
+
4 -5.69708312 -0.00000000 0.31D-05 0.59D-05 3 0 0.00 0.01 diag
|
|
154
|
+
5 -5.69708312 -0.00000000 0.84D-07 0.17D-06 4 0 0.00 0.01 diag
|
|
155
|
+
6 -5.69708312 0.00000000 0.52D-09 0.44D-09 0 0 0.00 0.01 diag
|
|
156
|
+
|
|
157
|
+
Final occupancy: 2 0 0
|
|
158
|
+
|
|
159
|
+
!RHF STATE 1.1 Energy -5.697083122510
|
|
160
|
+
RHF One-electron energy -10.410636919081
|
|
161
|
+
RHF Two-electron energy 3.380220463237
|
|
162
|
+
RHF Kinetic energy 5.782018995377
|
|
163
|
+
RHF Nuclear energy 1.333333333333
|
|
164
|
+
RHF Virial quotient -0.985310343509
|
|
165
|
+
|
|
166
|
+
!RHF STATE 1.1 Dipole moment 0.00000000 0.00000000 -0.00000000
|
|
167
|
+
Dipole moment /Debye 0.00000000 0.00000000 -0.00000000
|
|
168
|
+
|
|
169
|
+
Orbital energies:
|
|
170
|
+
|
|
171
|
+
1.1 2.1 3.1 4.1
|
|
172
|
+
-0.970332 -0.854766 1.350805 1.506423
|
|
173
|
+
|
|
174
|
+
1.2 2.2
|
|
175
|
+
2.502347 2.548021
|
|
176
|
+
|
|
177
|
+
1.3 2.3
|
|
178
|
+
2.502347 2.548021
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
HOMO 2.1 -0.854766 = -23.2594eV
|
|
182
|
+
LUMO 3.1 1.350805 = 36.7573eV
|
|
183
|
+
LUMO-HOMO 2.205571 = 60.0166eV
|
|
184
|
+
|
|
185
|
+
Orbitals saved in record 2100.2
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
**********************************************************************************************************************************
|
|
189
|
+
DATASETS * FILE NREC LENGTH (MB) RECORD NAMES
|
|
190
|
+
1 19 28.55 500 610 700 900 950 970 1000 129 960 1100
|
|
191
|
+
VAR BASINP GEOM SYMINP ZMAT AOBASIS BASIS P2S ABASIS S
|
|
192
|
+
1400 1410 1200 1210 1080 1600 1650 1300 1700
|
|
193
|
+
T V H0 H01 AOSYM SMH MOLCAS ERIS OPER
|
|
194
|
+
|
|
195
|
+
2 4 0.34 700 1000 520 2100
|
|
196
|
+
GEOM BASIS MCVARS RHF
|
|
197
|
+
|
|
198
|
+
PROGRAMS * TOTAL RHF-SCF INT
|
|
199
|
+
CPU TIMES * 0.14 0.02 0.04
|
|
200
|
+
REAL TIME * 0.20 SEC
|
|
201
|
+
DISK USED * 33.08 MB
|
|
202
|
+
**********************************************************************************************************************************
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
PROGRAM * MP2 (Closed-shell) Authors: C. Hampel, H.-J. Werner, 1991, M. Deegan, P.J. Knowles, 1992
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
Convergence thresholds: THRVAR = 1.00D-08 THRDEN = 1.00D-06
|
|
209
|
+
|
|
210
|
+
Number of closed-shell orbitals: 2 ( 2 0 0 0 )
|
|
211
|
+
Number of external orbitals: 8 ( 4 2 2 0 )
|
|
212
|
+
|
|
213
|
+
Molecular orbitals read from record 2100.2 Type=RHF/CANONICAL
|
|
214
|
+
|
|
215
|
+
Number of N-1 electron functions: 2
|
|
216
|
+
Number of N-2 electron functions: 3
|
|
217
|
+
Number of singly external CSFs: 8
|
|
218
|
+
Number of doubly external CSFs: 56
|
|
219
|
+
Total number of CSFs: 65
|
|
220
|
+
|
|
221
|
+
Length of J-op integral file: 0.00 MB
|
|
222
|
+
Length of K-op integral file: 0.03 MB
|
|
223
|
+
|
|
224
|
+
Integral transformation finished. Total CPU: 0.00 sec, npass= 1 Memory used: 0.07 MW
|
|
225
|
+
|
|
226
|
+
Memory needed for MP2: 0.00 MW
|
|
227
|
+
|
|
228
|
+
SCS-MP2 correlation energy: -0.062195873981 (PS= 1.200000 PT= 0.333333)
|
|
229
|
+
SCS-MP2 total energy: -5.759278996491
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
Reference energy -5.697083122510
|
|
233
|
+
MP2 singlet pair energy -0.051663249107
|
|
234
|
+
MP2 triplet pair energy -0.000321388477
|
|
235
|
+
MP2 correlation energy -0.051984637584
|
|
236
|
+
|
|
237
|
+
!MP2 total energy -5.749067760094
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
**********************************************************************************************************************************
|
|
241
|
+
DATASETS * FILE NREC LENGTH (MB) RECORD NAMES
|
|
242
|
+
1 20 28.56 500 610 700 900 950 970 1000 129 960 1100
|
|
243
|
+
VAR BASINP GEOM SYMINP ZMAT AOBASIS BASIS P2S ABASIS S
|
|
244
|
+
1400 1410 1200 1210 1080 1600 1650 1300 1700 1380
|
|
245
|
+
T V H0 H01 AOSYM SMH MOLCAS ERIS OPER JKOP
|
|
246
|
+
|
|
247
|
+
2 4 0.34 700 1000 520 2100
|
|
248
|
+
GEOM BASIS MCVARS RHF
|
|
249
|
+
|
|
250
|
+
PROGRAMS * TOTAL MP2 RHF-SCF INT
|
|
251
|
+
CPU TIMES * 0.16 0.02 0.02 0.04
|
|
252
|
+
REAL TIME * 0.23 SEC
|
|
253
|
+
DISK USED * 33.08 MB
|
|
254
|
+
**********************************************************************************************************************************
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
PROGRAM * CCSD (Closed-shell coupled cluster) Authors: C. Hampel, H.-J. Werner, 1991, M. Deegan, P.J. Knowles, 1992
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
Convergence thresholds: THRVAR = 1.00D-08 THRDEN = 1.00D-06
|
|
261
|
+
|
|
262
|
+
Number of closed-shell orbitals: 2 ( 2 0 0 0 )
|
|
263
|
+
Number of external orbitals: 8 ( 4 2 2 0 )
|
|
264
|
+
|
|
265
|
+
Molecular orbitals read from record 2100.2 Type=RHF/CANONICAL
|
|
266
|
+
|
|
267
|
+
Number of N-1 electron functions: 2
|
|
268
|
+
Number of N-2 electron functions: 3
|
|
269
|
+
Number of singly external CSFs: 8
|
|
270
|
+
Number of doubly external CSFs: 56
|
|
271
|
+
Total number of CSFs: 65
|
|
272
|
+
|
|
273
|
+
Length of J-op integral file: 0.00 MB
|
|
274
|
+
Length of K-op integral file: 0.03 MB
|
|
275
|
+
Length of 3-ext integral record: 0.00 MB
|
|
276
|
+
|
|
277
|
+
Integral transformation finished. Total CPU: 0.00 sec, npass= 1 Memory used: 0.07 MW
|
|
278
|
+
|
|
279
|
+
Reference energy: -5.69708312
|
|
280
|
+
|
|
281
|
+
MP2 singlet pair energy: -0.05166325
|
|
282
|
+
MP2 triplet pair energy: -0.00032139
|
|
283
|
+
MP2 correlation energy: -0.05198464
|
|
284
|
+
MP2 total energy: -5.74906776
|
|
285
|
+
|
|
286
|
+
SCS-MP2 correlation energy: -0.06219587 (PS= 1.200000 PT= 0.333333)
|
|
287
|
+
SCS-MP2 total energy: -5.75927900
|
|
288
|
+
|
|
289
|
+
ITER. SQ.NORM CORR.ENERGY TOTAL ENERGY ENERGY CHANGE DEN1 VAR(S) VAR(P) DIIS TIME TIME/IT
|
|
290
|
+
1 1.01307034 -0.06451315 -5.76159627 -0.01252851 -0.01008619 0.12D-05 0.37D-03 1 1 0.32 0.00
|
|
291
|
+
2 1.01444063 -0.06508195 -5.76216507 -0.00056880 -0.00297295 0.16D-06 0.96D-06 2 2 0.32 0.00
|
|
292
|
+
3 1.01447384 -0.06507753 -5.76216065 0.00000442 -0.00003179 0.17D-08 0.19D-08 3 3 0.32 0.00
|
|
293
|
+
4 1.01447571 -0.06507896 -5.76216208 -0.00000143 -0.00000351 0.57D-10 0.63D-10 4 4 0.32 0.00
|
|
294
|
+
5 1.01447570 -0.06507900 -5.76216212 -0.00000004 0.00000009 0.71D-12 0.12D-11 5 5 0.32 0.00
|
|
295
|
+
6 1.01447568 -0.06507895 -5.76216207 0.00000005 0.00000005 0.88D-14 0.28D-13 6 6 0.32 0.00
|
|
296
|
+
|
|
297
|
+
Norm of t1 vector: 0.00197805 S-energy: 0.00000000 T1 diagnostic: 0.00069935
|
|
298
|
+
D1 diagnostic: 0.00120003
|
|
299
|
+
D2 diagnostic: 0.08794795 (internal)
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
RESULTS
|
|
303
|
+
=======
|
|
304
|
+
|
|
305
|
+
Reference energy -5.697083122510
|
|
306
|
+
CCSD singlet pair energy -0.064722057985
|
|
307
|
+
CCSD triplet pair energy -0.000356887547
|
|
308
|
+
CCSD correlation energy -0.065078945200
|
|
309
|
+
|
|
310
|
+
!CCSD total energy -5.762162067711
|
|
311
|
+
|
|
312
|
+
Timing summary (sec):
|
|
313
|
+
|
|
314
|
+
STEP CPU(USER) SYS CPU(TOT) WALL
|
|
315
|
+
CCSD iterations 0.33 0.01 0.34 0.01
|
|
316
|
+
|
|
317
|
+
Program statistics:
|
|
318
|
+
|
|
319
|
+
Available memory in ccsd: 31999982
|
|
320
|
+
Min. memory needed in ccsd: 838
|
|
321
|
+
Max. memory used in ccsd: 838
|
|
322
|
+
Max. memory used in cckext: 33482 ( 6 integral passes)
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
**********************************************************************************************************************************
|
|
327
|
+
DATASETS * FILE NREC LENGTH (MB) RECORD NAMES
|
|
328
|
+
1 20 28.56 500 610 700 900 950 970 1000 129 960 1100
|
|
329
|
+
VAR BASINP GEOM SYMINP ZMAT AOBASIS BASIS P2S ABASIS S
|
|
330
|
+
1400 1410 1200 1210 1080 1600 1650 1300 1700 1380
|
|
331
|
+
T V H0 H01 AOSYM SMH MOLCAS ERIS OPER JKOP
|
|
332
|
+
|
|
333
|
+
2 4 0.34 700 1000 520 2100
|
|
334
|
+
GEOM BASIS MCVARS RHF
|
|
335
|
+
|
|
336
|
+
PROGRAMS * TOTAL CCSD MP2 RHF-SCF INT
|
|
337
|
+
CPU TIMES * 0.18 0.02 0.02 0.02 0.04
|
|
338
|
+
REAL TIME * 0.26 SEC
|
|
339
|
+
DISK USED * 33.08 MB
|
|
340
|
+
**********************************************************************************************************************************
|
|
341
|
+
|
|
342
|
+
Dump information in style XML to xml output
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
**********************************************************************************************************************************
|
|
346
|
+
|
|
347
|
+
CCSD/cc-pVDZ energy= -5.762162067711
|
|
348
|
+
|
|
349
|
+
CCSD MP2 RHF-SCF
|
|
350
|
+
-5.76216207 -5.74906776 -5.69708312
|
|
351
|
+
**********************************************************************************************************************************
|
|
352
|
+
Molpro calculation terminated
|