MatthijsHak / MetalDock

Dock organometallic compounds to proteins/DNA/biomolecules
MIT License
7 stars 6 forks source link

I ran into this problem #20

Closed Gary1113 closed 5 months ago

Gary1113 commented 5 months ago

I ran into this problem while running the program, and I personally couldn't solve it Traceback (most recent call last): File "/usr/bin/metaldock", line 6, in main() File "/home/Gary/anaconda3/envs/MetalDock/lib/python3.11/site-packages/src/metal_dock/main.py", line 18, in main docking(par) File "/home/Gary/anaconda3/envs/MetalDock/lib/python3.11/site-packages/src/metal_dock/docking.py", line 50, in docking shutil.copyfile(input_pdb, output_pdb) File "/home/Gary/anaconda3/envs/MetalDock/lib/python3.11/shutil.py", line 236, in copyfile raise SameFileError("{!r} and {!r} are the same file".format(src, dst)) shutil.SameFileError: '/home/Gary/Desktop/3iai-pro-Zn.pdb' and '/home/Gary/Desktop/3iai-pro-Zn.pdb' are the same file

MatthijsHak commented 5 months ago

Could you share with me your input files and output files? I can then better deduce what the problem is.

Gary1113 commented 5 months ago

Thank you for your reply, and I am extremely grateful for your help. I am learning docking using different software, but other software cannot effectively dock metal complexes. This is my file. Then I ran metal - i ini I haven't changed the path in the ini file. Optimized using AMF. Linux system. Python 3.11.7

At 2024-03-27 18:38:22, "MatthijsHak" @.***> wrote:

Could you share with me your input files and output files? I can then better deduce what the problem is.

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***> [DEFAULT] metal_symbol = Pt method = dock ncpu = 12

[PROTEIN] pdb_file = /home/Gary/Desktop/3iai-pro-Zn.pdb pH = 6.2 clean_pdb = True

[QM] engine = ADF basis_set = QZ4P functional_type = MetaHYBRID functional = TPSSH dispersion = GRIMME3 BJDAMP solvent = water

[METAL_COMPLEX] geom_opt = True xyz_file = /home/Gary/Desktop/1/Pt11.xyz charge = 2 spin = 0 vacant_site = True

[DOCKING] ga_dock = True box_size = 27 random_pos = True num_poses = 20

MatthijsHak commented 5 months ago

Thanks for your reply. But could you send me zip file of the whole directory? I can then better understand where the problem is coming from.

Gary1113 commented 5 months ago

Dear,

I have written the code into file.txt. Are you referring to these two files in file.zip? I also compressed the metal files in the Python environment

At 2024-03-27 19:11:02, "MatthijsHak" @.***> wrote:

Thanks for your reply. But could you send me zip file of the whole directory? I can then better understand where the problem is coming from.

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

从网易163邮箱发来的超大附件推荐客户端极速下载 file.zip (294B, 2024年4月11日 19:34 到期) 下载 file.txt (999B, 2024年4月11日 19:34 到期) 下载 MetalDock.zip (283.13M, 2024年4月11日 19:40 到期) 下载

MatthijsHak commented 5 months ago

Unfortunatley, I can't access the files for some reason. Try to upload them from the comment section on the Github site. That will most likely solve this issue.

Gary1113 commented 5 months ago

Try compressing the file in this format 666.zip

Gary1113 commented 5 months ago

Dear Sir,

I uploaded it to GitHub

At 2024-03-27 19:47:49, "MatthijsHak" @.***> wrote:

Unfortunatley, I can't access the files for some reason. Try to upload them from the comment section on the Github site. That will most likely solve this issue.

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

MatthijsHak commented 5 months ago

Hi,

The error came from the fact that the path was not correctly set in the code due to the files being in the input dir. I adjusted this such that it now runs smoothly when you have the pdb and xyz files in the same directory as the .ini file, or if you specify the full path. By downloading the latest repo your calculation should work.

Gary1113 commented 5 months ago

Hi, Thank you for solving my previous problem. I have now encountered a new one. My program ran for four days and encountered the following error message

[01.04|20:54:06] JOB plamsjob STARTED [01.04|20:54:06] JOB plamsjob RUNNING

[05.04|17:38:04] JOB plamsjob FINISHED [05.04|17:38:04] Job plamsjob reported warnings. Please check the the output [05.04|17:38:04] JOB plamsjob SUCCESSFUL [05.04|17:38:04] PLAMS run finished. Goodbye

GEOMETRY CONVERGED

Traceback (most recent call last):

File "/usr/bin/metaldock", line 6, in

main()

File "/home/Gary/anaconda3/envs/MetalDock/lib/python3.11/site-packages/src/metal_dock/main.py", line 18, in main

docking(par)

File "/home/Gary/anaconda3/envs/MetalDock/lib/python3.11/site-packages/src/metal_dock/docking.py", line 94, in docking

shutil.copyfile(clean_pdb_in, clean_pdb_out)

File "/home/Gary/anaconda3/envs/MetalDock/lib/python3.11/shutil.py", line 256, in copyfile

with open(src, 'rb') as fsrc:

     ^^^^^^^^^^^^^^^

FileNotFoundError: [Errno 2] No such file or directory: '/media/Gary/5/output/file_prep/clean_3iai-pro-Zn.pdb'

But I found it below this path:/media/Gary/5/output/file_prep/clean_3iai-pro-Zn I don't know where the problem occurred. This file is not in PDB format

Message ID: @.***>

MatthijsHak commented 5 months ago

Hi,

I overlooked something, but I adjusted that now as well. With the new repo the docking process now runs smoothly. You should only consider to specify coordinates to center the box where you want it. It does it standard at 0,0,0, which in your case is too far away from the protein.

Let me know if there are still problems.

Gary1113 commented 5 months ago

Hi,

Should coordinate centers be added to the. ini file?

Is this inside?

Ga_dock=True

Box_size=20

Random_pos=True

Num positions=10

I rewrote it based on this' input_examples'. If necessary, should I fill in all the data as required by the input file on your website?

Can the data of protein docking sites measured by Pymol software be directly used?

At 2024-04-09 16:25:10, "MatthijsHak" @.***> wrote:

Hi,

I overlooked something, but I adjusted that now as well. With the new repo the docking process now runs smoothly. You should only consider to specify coordinates to center the box where you want it. It does it standard at 0,0,0, which in your case is too far away from the protein.

Let me know if there are still problems.

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

MatthijsHak commented 5 months ago

The centre of the box for the docking coordinates can be specifed as follow:

[DOCKING] ga_dock = True dock_x = dock_y = dock_z = box_size = 27 random_pos = True num_poses = 5

I am not familiar with this docking sites calculation of Pymol, so I did not implement this. However, it should specify some coordinates. You can always take the centre of an atom to which you think the metal atom is likely to coordinate to, but then just increase the box size a little bit to accommodate for the fact that a part of the box is overlapping with the protein.

Gary1113 commented 5 months ago

Hi,

Can you help me see where the problem is? Is it my little molecule, right?

This is an error. I have attached the error file

[09.04|18:39:08] PLAMS working folder: /media/Gary/5/output/QM/geom_opt/plams_workdir

[09.04|18:39:08] JOB plamsjob STARTED

[09.04|18:39:08] JOB plamsjob RUNNING

[10.04|09:14:34] WARNING: Job plamsjob finished with nonzero return code

[10.04|09:14:34] JOB plamsjob CRASHED

[10.04|09:14:34] PLAMS run finished. Goodbye

GEOMETRY NOT CONVERGED

PLEASE CHECK THE ams.log FILE IN THE QM DIRECTORY

Message ID: @.***>

<18:39:08> AMS 2023.104 RunTime: Apr09-2024 18:39:08 ShM Nodes: 1 Procs: 6 <18:39:08> ADF 2023.104 RunTime: Apr09-2024 18:39:08 ShM Nodes: 1 Procs: 6 <18:39:08> *** (NO TITLE) *** <18:39:08> Iteration 1 <18:39:09> DIRAC 2023.104 RunTime: Apr09-2024 18:39:09 ShM Nodes: 1 Procs: 1 <18:39:09> Hydrogen (QZ, all electron, 5S 2P 2D) <18:39:09> WARNING: Unknown XC functional for DFT-D3! <18:39:09> PBE parameters will be used for parameters that are not set in input. <18:39:09> Net Charge: 0 (Nuclei minus Electrons) <18:39:09> Symmetry : ATOM <18:39:09> Coordinates <18:39:09> Atom X Y Z (Angstrom) <18:39:09> 1.H 0.000000 0.000000 0.000000 <18:39:09> >>>> CORORT <18:39:09> >>>> CLSMAT <18:39:09> >>>> ORTHON <18:39:09> >>>> GENPT <18:39:09> Block Length= 64 <18:39:09> >>>> PTBAS <18:39:09> >>>> CYCLE <18:39:09> CalcFitR12Fit <18:39:09> CalcFitCoeff <18:39:09> |Error| MaxErr Wt(A-DIIS) <18:39:09> 1 0.00000000 0.00000000 <18:39:09> 2 0.04834841 0.03784122 <18:39:09> 3 0.00919254 0.00902960 100.0 <18:39:09> 4 0.00152001 0.00143884 0.4 <18:39:09> 5 0.00003171 0.00003122 0.0 <18:39:09> 6 0.00000023 0.00000017 0.0 <18:39:09> 7 0.00000000 0.00000000 0.0 <18:39:09> SCF converged <18:39:09> 8 0.00000000 0.00000000 0.0 <18:39:09> >>>> POPAN <18:39:09> >>>> DEBYE <18:39:09> DIRAC 2023.104 RunTime: Apr09-2024 18:39:09 ShM Nodes: 1 Procs: 1 <18:39:09> Nitrogen (QZ, all electron, 8S 4P 2D 2F) <18:39:09> WARNING: Unknown XC functional for DFT-D3! <18:39:09> PBE parameters will be used for parameters that are not set in input. <18:39:09> Net Charge: 0 (Nuclei minus Electrons) <18:39:09> Symmetry : ATOM <18:39:09> Coordinates <18:39:09> Atom X Y Z (Angstrom) <18:39:09> 1.N 0.000000 0.000000 0.000000 <18:39:09> >>>> CORORT <18:39:09> >>>> CLSMAT <18:39:09> >>>> ORTHON <18:39:09> >>>> GENPT <18:39:09> Block Length= 81 <18:39:09> >>>> PTBAS <18:39:09> >>>> CYCLE <18:39:09> CalcFitR12Fit <18:39:09> CalcFitCoeff <18:39:09> |Error| MaxErr Wt(A-DIIS) <18:39:09> 1 0.00000000 0.00000000 <18:39:09> 2 6.74569605 3.40472622 100.0 <18:39:09> 3 2.48078045 2.03155289 100.0 <18:39:09> 4 0.72059707 0.33909283 100.0 <18:39:09> 5 0.75507116 0.45007054 100.0 <18:39:09> 6 0.01525144 0.00703150 6.1 <18:39:10> 7 0.00556368 0.00286822 1.9 <18:39:10> 8 0.00010055 0.00005784 0.0 <18:39:10> 9 0.00000477 0.00000272 0.0 <18:39:10> 10 0.00000011 0.00000006 0.0 <18:39:10> 11 0.00000000 0.00000000 0.0 <18:39:10> SCF converged <18:39:10> 12 0.00000000 0.00000000 0.0 <18:39:10> >>>> POPAN <18:39:10> >>>> DEBYE <18:39:10> DIRAC 2023.104 RunTime: Apr09-2024 18:39:10 ShM Nodes: 1 Procs: 1 <18:39:10> Platinum (QZ, all electron, 22S 17P 11D 6F) <18:39:10> WARNING: Unknown XC functional for DFT-D3! <18:39:10> PBE parameters will be used for parameters that are not set in input. <18:39:10> Net Charge: 0 (Nuclei minus Electrons) <18:39:10> Symmetry : ATOM <18:39:10> Coordinates <18:39:10> Atom X Y Z (Angstrom) <18:39:10> 1.Pt 0.000000 0.000000 0.000000 <18:39:10> >>>> CORORT <18:39:10> >>>> CLSMAT <18:39:10> >>>> ORTHON <18:39:10> >>>> GENPT <18:39:10> Block Length= 97 <18:39:10> >>>> PTBAS <18:39:10> >>>> CYCLE <18:39:11> CalcFitR12Fit <18:39:12> CalcFitCoeff <18:39:22> |Error| MaxErr Wt(A-DIIS) <18:39:22> 1 0.00000000 0.00000000 <18:39:23> 2 619.21824109 67.02870735 100.0 <18:39:24> 3 233.89119881 37.45583416 100.0 <18:39:25> 4 55.31985859 6.46100899 100.0 <18:39:25> 5 39.22634139 6.57726194 100.0 <18:39:26> 6 18.04004947 2.34682283 100.0 <18:39:27> 7 10.15924789 1.53334903 100.0 <18:39:27> 8 1.52055178 0.22641523 100.0 <18:39:28> 9 1.15547487 0.20941274 100.0 <18:39:29> 10 0.59551536 0.10655194 100.0 <18:39:30> 11 0.76022449 0.13311703 100.0 <18:39:30> 12 0.10338766 0.01822521 17.4 <18:39:31> 13 0.01707132 0.00299070 2.0 <18:39:32> 14 0.00034324 0.00006078 0.0 <18:39:32> 15 0.00000189 0.00000030 0.0 <18:39:33> 16 0.00000001 0.00000000 0.0 <18:39:33> SCF converged <18:39:33> 17 0.00000000 0.00000000 0.0 <18:39:34> >>>> POPAN <18:39:34> >>>> DEBYE <18:39:34> DIRAC 2023.104 RunTime: Apr09-2024 18:39:34 ShM Nodes: 1 Procs: 1 <18:39:34> Carbon (QZ, all electron, 7S 4P 2D 2F) <18:39:34> WARNING: Unknown XC functional for DFT-D3! <18:39:34> PBE parameters will be used for parameters that are not set in input. <18:39:34> Net Charge: 0 (Nuclei minus Electrons) <18:39:34> Symmetry : ATOM <18:39:34> Coordinates <18:39:34> Atom X Y Z (Angstrom) <18:39:34> 1.C 0.000000 0.000000 0.000000 <18:39:34> >>>> CORORT <18:39:34> >>>> CLSMAT <18:39:34> >>>> ORTHON <18:39:34> >>>> GENPT <18:39:34> Block Length= 81 <18:39:34> >>>> PTBAS <18:39:34> >>>> CYCLE <18:39:34> CalcFitR12Fit <18:39:34> CalcFitCoeff <18:39:35> |Error| MaxErr Wt(A-DIIS) <18:39:35> 1 0.00000000 0.00000000 <18:39:35> 2 4.67422806 3.34446341 100.0 <18:39:35> 3 1.58005737 1.14063656 100.0 <18:39:35> 4 0.64032462 0.45043619 100.0 <18:39:35> 5 0.42606498 0.30412743 100.0 <18:39:35> 6 0.08812459 0.05884668 58.4 <18:39:35> 7 0.04514486 0.03186194 31.2 <18:39:35> 8 0.00730204 0.00523721 4.3 <18:39:35> 9 0.00021910 0.00015555 0.0 <18:39:35> 10 0.00000140 0.00000094 0.0 <18:39:35> 11 0.00000005 0.00000003 0.0 <18:39:35> 12 0.00000000 0.00000000 0.0 <18:39:35> SCF converged <18:39:35> 13 0.00000000 0.00000000 0.0 <18:39:35> >>>> POPAN <18:39:35> >>>> DEBYE <18:39:35> DIRAC 2023.104 RunTime: Apr09-2024 18:39:35 ShM Nodes: 1 Procs: 1 <18:39:35> Oxygen (QZ, all electron, 8S 4P 2D 2F) <18:39:35> WARNING: Unknown XC functional for DFT-D3! <18:39:35> PBE parameters will be used for parameters that are not set in input. <18:39:35> Net Charge: 0 (Nuclei minus Electrons) <18:39:35> Symmetry : ATOM <18:39:35> Coordinates <18:39:35> Atom X Y Z (Angstrom) <18:39:35> 1.O 0.000000 0.000000 0.000000 <18:39:35> >>>> CORORT <18:39:35> >>>> CLSMAT <18:39:35> >>>> ORTHON <18:39:35> >>>> GENPT <18:39:35> Block Length= 81 <18:39:35> >>>> PTBAS <18:39:35> >>>> CYCLE <18:39:35> CalcFitR12Fit <18:39:35> CalcFitCoeff <18:39:35> |Error| MaxErr Wt(A-DIIS) <18:39:35> 1 0.00000000 0.00000000 <18:39:35> 2 9.76510398 4.15246702 100.0 <18:39:35> 3 3.64648748 2.90118926 100.0 <18:39:35> 4 0.80634863 0.33076934 100.0 <18:39:35> 5 1.03626951 0.48452014 100.0 <18:39:35> 6 0.05890250 0.02584738 25.1 <18:39:35> 7 0.01217762 0.00566688 4.7 <18:39:35> 8 0.00007399 0.00002632 0.0 <18:39:35> 9 0.00001394 0.00000576 0.0 <18:39:35> 10 0.00000066 0.00000030 0.0 <18:39:35> 11 0.00000000 0.00000000 0.0 <18:39:35> SCF converged <18:39:35> 12 0.00000000 0.00000000 0.0 <18:39:35> >>>> POPAN <18:39:35> >>>> DEBYE <18:39:35> DIRAC 2023.104 RunTime: Apr09-2024 18:39:35 ShM Nodes: 1 Procs: 1 <18:39:36> Sulphur (QZ, all electron, 11S 7P 3D 2F) <18:39:36> WARNING: Unknown XC functional for DFT-D3! <18:39:36> PBE parameters will be used for parameters that are not set in input. <18:39:36> Net Charge: 0 (Nuclei minus Electrons) <18:39:36> Symmetry : ATOM <18:39:36> Coordinates <18:39:36> Atom X Y Z (Angstrom) <18:39:36> 1.S 0.000000 0.000000 0.000000 <18:39:36> >>>> CORORT <18:39:36> >>>> CLSMAT <18:39:36> >>>> ORTHON <18:39:36> >>>> GENPT <18:39:36> Block Length= 119 <18:39:36> >>>> PTBAS <18:39:36> >>>> CYCLE <18:39:36> CalcFitR12Fit <18:39:36> CalcFitCoeff <18:39:36> |Error| MaxErr Wt(A-DIIS) <18:39:36> 1 0.00000000 0.00000000 <18:39:36> 2 34.51441128 8.08206682 100.0 <18:39:36> 3 19.83786241 8.16429068 100.0 <18:39:36> 4 3.82345062 1.28021731 100.0 <18:39:36> 5 2.48817645 0.82670191 100.0 <18:39:36> 6 0.63978283 0.23992457 100.0 <18:39:36> 7 0.47268279 0.18233345 100.0 <18:39:36> 8 0.05124967 0.02101489 20.2 <18:39:36> 9 0.00999733 0.00403055 3.1 <18:39:36> 10 0.00017459 0.00005945 0.0 <18:39:36> 11 0.00000266 0.00000091 0.0 <18:39:36> 12 0.00000021 0.00000008 0.0 <18:39:36> 13 0.00000001 0.00000000 0.0 <18:39:36> SCF converged <18:39:36> 14 0.00000000 0.00000000 0.0 <18:39:36> >>>> POPAN <18:39:36> >>>> DEBYE <18:39:36> *** GO1_GOStep1 *** <18:39:36> WARNING: Unknown XC functional for DFT-D3! <18:39:36> PBE parameters will be used for parameters that are not set in input. <18:39:36> >>>> FRAGM <18:39:37> Coordinates <18:39:37> Atom X Y Z (Angstrom) <18:39:37> 1.H -10.277800 -4.805200 -1.264100 <18:39:37> 2.N -9.922400 -5.742900 -1.077700 <18:39:37> 3.H -10.165900 -6.513600 -1.699900 <18:39:37> 4.H -9.679600 -4.861400 -0.625500 <18:39:37> 5.H -10.071600 -4.635500 2.277100 <18:39:37> 6.N -9.735100 -5.588700 2.141000 <18:39:37> 7.H -9.553600 -4.763000 1.570400 <18:39:37> 8.H -9.900900 -6.295300 2.857600 <18:39:37> 9.Pt -8.762200 -6.066500 0.488800 <18:39:37> 10.N -7.132800 -4.958600 0.340500 <18:39:37> 11.C -5.900800 -5.510900 0.294800 <18:39:37> 12.C -7.194400 -3.610500 0.279700 <18:39:37> 13.H -5.822200 -6.607000 0.342500 <18:39:37> 14.C -4.730200 -4.776500 0.191300 <18:39:37> 15.H -8.185700 -3.135000 0.315000 <18:39:37> 16.C -6.081200 -2.791800 0.175500 <18:39:37> 17.H -3.751000 -5.276600 0.158000 <18:39:37> 18.C -4.826300 -3.390100 0.130700 <18:39:37> 19.H -6.187100 -1.697800 0.129500 <18:39:37> 20.C -3.591900 -2.550600 0.018400 <18:39:37> 21.N -3.961900 -1.149400 -0.026900 <18:39:37> 22.H -3.043800 -2.819700 -0.912200 <18:39:37> 23.H -2.938400 -2.732900 0.900800 <18:39:37> 24.C -2.992300 -0.188400 -0.129400 <18:39:37> 25.H -4.936800 -0.881800 0.017400 <18:39:37> 26.C -3.377400 1.269900 -0.176600 <18:39:37> 27.O -1.828500 -0.507800 -0.182200 <18:39:37> 28.C -4.892700 1.398500 -0.094100 <18:39:37> 29.H -3.018600 1.717600 -1.130300 <18:39:37> 30.H -2.913000 1.803700 0.682600 <18:39:37> 31.C -5.277800 2.856800 -0.141300 <18:39:37> 32.H -5.357100 0.864800 -0.953300 <18:39:37> 33.H -5.251500 0.950900 0.859600 <18:39:37> 34.N -6.596700 3.218800 -0.081400 <18:39:37> 35.O -4.422200 3.704800 -0.231800 <18:39:37> 36.C -6.939900 4.518600 -0.123400 <18:39:37> 37.H -7.313400 2.508400 -0.005600 <18:39:37> 38.C -6.216100 5.405600 -0.920200 <18:39:37> 39.C -8.019600 4.979400 0.629700 <18:39:37> 40.H -5.364500 5.042100 -1.514100 <18:39:37> 41.C -6.572000 6.753600 -0.963800 <18:39:37> 42.H -8.590400 4.279900 1.258100 <18:39:37> 43.C -8.375600 6.327400 0.586000 <18:39:37> 44.H -6.001200 7.453100 -1.592100 <18:39:37> 45.C -7.651800 7.214400 -0.210700 <18:39:37> 46.H -9.227200 6.690900 1.179900 <18:39:37> 47.S -8.108700 8.944200 -0.266700 <18:39:37> 48.N -8.506800 9.372200 -1.858800 <18:39:37> 49.O -6.994200 9.752700 0.188100 <18:39:37> 50.O -9.252600 9.170800 0.595000 <18:39:37> 51.H -8.460700 8.674300 -2.601200 <18:39:37> 52.H -8.792400 10.327500 -2.073800 <18:39:37> >>>> CORORT <18:39:37> >>>> CLSMAT <18:39:37> >>>> ORTHON <18:39:37> >>>> GENPT <18:39:39> Block Length= 128 <18:39:40> >>>> PTBAS <18:39:57> combining surface points... <18:39:57> combining surface points... <18:39:57> combining surface points... <18:39:57> >>>> CYCLE <18:40:00> CalcFitR12Fit <18:40:13> CalcFitCoeff <18:43:40> |Error| MaxErr Wt(A-DIIS) <18:43:40> 1 16.29490809 1.10798440 <18:45:35> 2 3.00543970 0.26825012 100.0 <18:47:24> 3 1.26769394 0.09494789 100.0 <18:49:18> 4 1.96258101 0.15835491 100.0 <18:51:01> 5 0.28824262 0.02026469 19.5 <18:52:40> 6 0.17810819 0.01575862 14.9 <18:54:20> 7 0.05941363 0.00641171 5.5 <18:55:59> 8 0.01501236 0.00180857 0.8 <18:57:39> 9 0.00660729 0.00049395 0.0 <18:59:18> 10 0.00412893 0.00039286 0.0 <19:00:57> 11 0.00401656 0.00041042 0.0 <19:02:36> 12 0.00358947 0.00035368 0.0 <19:04:15> 13 0.00416520 0.00033453 0.0 <19:05:53> 14 0.00318988 0.00026589 0.0 <19:07:31> 15 0.00139974 0.00013650 0.0 <19:09:08> 16 0.00052810 0.00003810 0.0 <19:10:46> 17 0.00017879 0.00001050 0.0 <19:12:23> 18 0.00012583 0.00000847 0.0 <19:14:01> 19 0.00006737 0.00000698 0.0 <19:15:40> 20 0.00003874 0.00000604 0.0 <19:17:18> 21 0.00002673 0.00000329 0.0 <19:18:57> 22 0.00001002 0.00000090 0.0 <19:20:36> 23 0.00000439 0.00000030 0.0 <19:20:39> SCF converged <19:22:14> 24 0.00000178 0.00000013 0.0 <19:23:45> >>>> TOTEN <19:28:19> >>>> POPAN <19:28:19> >>>> DEBYE <19:28:20> >>>> ENGRAD <19:29:19> CalcFitCoeff for gradient <19:45:35> CM5 charges were requested but they are missing in the ADF results file. <19:45:36> current energy -12.30183375 Hartree <19:45:36> energy change -12.30183375 0.00052000 F <19:45:36> constrained gradient max 0.17810075 0.00100000 F <19:45:36> constrained gradient rms 0.04021488 0.00066667 F <19:45:36> gradient max 0.17810075 <19:45:36> gradient rms 0.04021488 <19:45:36> cart. step max 0.21159299 0.01000000 F <19:45:36> cart. step rms 0.06801168 0.00666667 F <19:45:36> Iteration 2 <19:45:36> *** GO1_GOStep2 *** <19:45:36> WARNING: Unknown XC functional for DFT-D3! <19:45:36> PBE parameters will be used for parameters that are not set in input. <19:45:36> >>>> FRAGM <19:45:37> Coordinates <19:45:37> Atom X Y Z (Angstrom) <19:45:37> 1.H -10.312066 -5.016793 -1.296755 <19:45:37> 2.N -9.904284 -5.937636 -1.084268 <19:45:37> 3.H -10.119016 -6.715381 -1.705408 <19:45:37> 4.H -9.689581 -5.040935 -0.620746 <19:45:37> 5.H -10.106645 -4.837708 2.330083 <19:45:37> 6.N -9.720794 -5.777186 2.164915 <19:45:37> 7.H -9.566920 -4.938987 1.582927 <19:45:37> 8.H -9.860257 -6.489185 2.879298 <19:45:37> 9.Pt -8.730292 -6.212908 0.496779 <19:45:37> 10.N -7.140211 -5.049134 0.348892 <19:45:37> 11.C -5.893264 -5.563401 0.303279 <19:45:37> 12.C -7.249794 -3.705371 0.288815 <19:45:37> 13.H -5.782204 -6.654291 0.350732 <19:45:37> 14.C -4.750370 -4.790257 0.200052 <19:45:37> 15.H -8.255031 -3.266229 0.324388 <19:45:37> 16.C -6.163896 -2.851949 0.184870 <19:45:37> 17.H -3.759059 -5.259850 0.166834 <19:45:37> 18.C -4.885734 -3.405757 0.139394 <19:45:37> 19.H -6.314346 -1.767260 0.139919 <19:45:37> 20.C -3.659253 -2.546669 0.026998 <19:45:37> 21.N -4.009114 -1.139349 -0.022516 <19:45:37> 22.H -3.111720 -2.817248 -0.900688 <19:45:37> 23.H -3.008945 -2.727574 0.909067 <19:45:37> 24.C -3.023073 -0.197489 -0.125350 <19:45:37> 25.H -4.976186 -0.854719 0.018788 <19:45:37> 26.C -3.378536 1.270635 -0.177570 <19:45:37> 27.O -1.857942 -0.541950 -0.175106 <19:45:37> 28.C -4.889780 1.460169 -0.100234 <19:45:37> 29.H -3.003732 1.700967 -1.129658 <19:45:37> 30.H -2.900497 1.790030 0.679150 <19:45:37> 31.C -5.222850 2.932675 -0.154309 <19:45:37> 32.H -5.372056 0.943215 -0.956773 <19:45:37> 33.H -5.268613 1.032210 0.851973 <19:45:37> 34.N -6.536910 3.324580 -0.097659 <19:45:37> 35.O -4.334726 3.754174 -0.245430 <19:45:37> 36.C -6.885489 4.636036 -0.143029 <19:45:37> 37.H -7.260162 2.621790 -0.018740 <19:45:37> 38.C -6.174661 5.536224 -0.941681 <19:45:37> 39.C -7.967496 5.087632 0.615486 <19:45:37> 40.H -5.325156 5.187129 -1.540392 <19:45:37> 41.C -6.544764 6.878751 -0.978797 <19:45:37> 42.H -8.528073 4.382903 1.243256 <19:45:37> 43.C -8.337581 6.430359 0.577881 <19:45:37> 44.H -5.985438 7.584609 -1.606409 <19:45:37> 45.C -7.625633 7.325035 -0.218884 <19:45:37> 46.H -9.188292 6.783054 1.175042 <19:45:37> 47.S -8.099720 9.047490 -0.266065 <19:45:37> 48.N -8.503058 9.454146 -1.854120 <19:45:37> 49.O -6.989192 9.869312 0.179601 <19:45:37> 50.O -9.246609 9.260474 0.597168 <19:45:37> 51.H -8.449710 8.752337 -2.589382 <19:45:37> 52.H -8.799771 10.402680 -2.074719 <19:45:37> >>>> CORORT <19:45:37> >>>> CLSMAT <19:45:37> >>>> ORTHON <19:45:37> >>>> GENPT <19:45:39> Block Length= 128 <19:45:40> >>>> PTBAS <19:46:02> combining surface points... <19:46:02> combining surface points... <19:46:02> combining surface points... <19:46:02> >>>> CYCLE <19:46:04> CalcFitR12Fit <19:46:20> CalcFitCoeff <19:49:17> using orbital data from restart file <19:49:23> |Error| MaxErr Wt(A-DIIS) <19:49:23> 1 0.58467216 0.05762592 <19:50:59> 2 3.28965752 0.35803930 100.0 <19:52:35> 3 1.30997378 0.15541052 100.0 <19:54:11> 4 0.91072022 0.14313201 100.0 <19:55:47> 5 6.01916490 0.76862979 100.0 <19:57:23> 6 1.88417394 0.42370900 100.0 <19:58:58> 7 0.62193022 0.07618268 75.9 <20:00:34> 8 0.98246823 0.12334325 100.0 <20:02:10> 9 0.17867197 0.01661144 15.8 <20:03:46> 10 0.08460508 0.00774931 6.8 <20:05:21> 11 0.03977618 0.00487311 3.9 <20:06:57> 12 0.01121448 0.00093286 0.0 <20:08:33> 13 0.00527617 0.00036091 0.0 <20:10:08> 14 0.00181319 0.00022768 0.0 <20:11:44> 15 0.00087524 0.00011881 0.0 <20:13:20> 16 0.00062438 0.00006961 0.0 <20:14:56> 17 0.00038332 0.00002094 0.0 <20:16:31> 18 0.00019144 0.00002115 0.0 <20:18:07> 19 0.00009181 0.00000811 0.0 <20:19:43> 20 0.00004124 0.00000385 0.0 <20:21:18> 21 0.00003708 0.00000469 0.0 <20:22:53> 22 0.00002048 0.00000177 0.0 <20:24:29> 23 0.00001387 0.00000133 0.0 <20:26:04> 24 0.00001393 0.00000171 0.0 <20:27:40> 25 0.00000186 0.00000015 0.0 <20:27:44> SCF converged <20:29:15> 26 0.00000169 0.00000017 0.0 <20:30:45> >>>> TOTEN <20:35:12> >>>> POPAN <20:35:12> >>>> DEBYE <20:35:13> >>>> ENGRAD <20:36:09> CalcFitCoeff for gradient <20:51:57> CM5 charges were requested but they are missing in the ADF results file. <20:51:57> current energy -12.33534843 Hartree <20:51:57> energy change -0.03351468 0.00052000 F <20:51:57> constrained gradient max 0.15562154 0.00100000 F <20:51:57> constrained gradient rms 0.03360252 0.00066667 F <20:51:57> gradient max 0.15562154 <20:51:57> gradient rms 0.03360252 <20:51:57> cart. step max 0.14735822 0.01000000 F <20:51:57> cart. step rms 0.04798790 0.00666667 F <20:51:57> Iteration 3 <20:51:58> *** GO1_GOStep3 *** <20:51:58> WARNING: Unknown XC functional for DFT-D3! <20:51:58> PBE parameters will be used for parameters that are not set in input. <20:51:58> >>>> FRAGM <20:51:58> Coordinates <20:51:58> Atom X Y Z (Angstrom) <20:51:58> 1.H -10.355537 -5.164151 -1.366907 <20:51:58> 2.N -9.896688 -6.063112 -1.107227 <20:51:58> 3.H -10.091589 -6.843928 -1.726234 <20:51:58> 4.H -9.697398 -5.150007 -0.625061 <20:51:58> 5.H -10.142604 -4.971068 2.416658 <20:51:58> 6.N -9.711562 -5.894359 2.200708 <20:51:58> 7.H -9.574884 -5.043634 1.597651 <20:51:58> 8.H -9.832173 -6.607842 2.912865 <20:51:58> 9.Pt -8.710831 -6.297392 0.501800 <20:51:58> 10.N -7.144292 -5.101555 0.352909 <20:51:58> 11.C -5.892537 -5.601286 0.307880 <20:51:58> 12.C -7.284945 -3.762291 0.292890 <20:51:58> 13.H -5.770312 -6.686291 0.355976 <20:51:58> 14.C -4.768093 -4.807215 0.204497 <20:51:58> 15.H -8.295080 -3.347080 0.328629 <20:51:58> 16.C -6.212531 -2.894338 0.188868 <20:51:58> 17.H -3.774871 -5.261085 0.171807 <20:51:58> 18.C -4.922556 -3.422924 0.143295 <20:51:58> 19.H -6.388418 -1.819138 0.144380 <20:51:58> 20.C -3.699091 -2.555850 0.031073 <20:51:58> 21.N -4.034309 -1.144063 -0.020495 <20:51:58> 22.H -3.153526 -2.829043 -0.891407 <20:51:58> 23.H -3.052832 -2.738242 0.909907 <20:51:58> 24.C -3.039528 -0.218152 -0.122652 <20:51:58> 25.H -4.995821 -0.848214 0.019090 <20:51:58> 26.C -3.376554 1.257134 -0.177021 <20:51:58> 27.O -1.868860 -0.579883 -0.170993 <20:51:58> 28.C -4.882267 1.509037 -0.104092 <20:51:58> 29.H -2.987751 1.669812 -1.124654 <20:51:58> 30.H -2.886118 1.759460 0.675473 <20:51:58> 31.C -5.166146 2.994837 -0.163107 <20:51:58> 32.H -5.382149 1.012135 -0.956421 <20:51:58> 33.H -5.280286 1.101636 0.843943 <20:51:58> 34.N -6.475559 3.405152 -0.108812 <20:51:58> 35.O -4.253846 3.799233 -0.254604 <20:51:58> 36.C -6.839463 4.730314 -0.155989 <20:51:58> 37.H -7.200068 2.704765 -0.028406 <20:51:58> 38.C -6.141365 5.645102 -0.953338 <20:51:58> 39.C -7.928896 5.167674 0.604174 <20:51:58> 40.H -5.291832 5.312848 -1.550886 <20:51:58> 41.C -6.529994 6.979312 -0.985762 <20:51:58> 42.H -8.477554 4.456669 1.227753 <20:51:58> 43.C -8.318256 6.502272 0.570850 <20:51:58> 44.H -5.982885 7.691880 -1.608974 <20:51:58> 45.C -7.617214 7.405883 -0.223435 <20:51:58> 46.H -9.170002 6.840689 1.166079 <20:51:58> 47.S -8.114227 9.116217 -0.263278 <20:51:58> 48.N -8.510232 9.479659 -1.845823 <20:51:58> 49.O -7.012003 9.958167 0.172380 <20:51:58> 50.O -9.271737 9.311324 0.592532 <20:51:58> 51.H -8.440212 8.768301 -2.564996 <20:51:58> 52.H -8.821017 10.416028 -2.082594 <20:51:58> >>>> CORORT <20:51:58> >>>> CLSMAT <20:51:58> >>>> ORTHON <20:51:59> >>>> GENPT <20:52:01> Block Length= 128 <20:52:01> >>>> PTBAS <20:52:22> combining surface points... <20:52:22> combining surface points... <20:52:22> combining surface points... <20:52:22> >>>> CYCLE <20:52:25> CalcFitR12Fit <20:52:40> CalcFitCoeff <20:55:36> using orbital data from restart file <20:55:42> |Error| MaxErr Wt(A-DIIS) <20:55:42> 1 0.58742632 0.04090428 <20:57:16> 2 3.25207792 0.35106484 100.0 <20:58:51> 3 1.32943677 0.16386163 100.0 <21:00:25> 4 0.86510828 0.13720825 100.0 <21:01:59> 5 6.00315709 0.75147718 100.0 <21:03:34> 6 1.81238852 0.40902510 100.0 <21:05:08> 7 0.58983555 0.07820699 78.0 <21:06:42> 8 0.92081941 0.12900416 100.0 <21:08:17> 9 0.16325234 0.01389889 13.0 <21:09:51> 10 0.07806309 0.00704502 6.1 <21:11:25> 11 0.03795968 0.00421510 3.2 <21:13:00> 12 0.01084078 0.00085467 0.0 <21:14:34> 13 0.00503863 0.00041106 0.0 <21:16:08> 14 0.00190734 0.00022971 0.0 <21:17:42> 15 0.00105958 0.00010595 0.0 <21:19:17> 16 0.00079936 0.00006008 0.0 <21:20:51> 17 0.00068724 0.00005374 0.0 <21:22:25> 18 0.00059929 0.00004550 0.0 <21:23:59> 19 0.00032235 0.00003167 0.0 <21:25:33> 20 0.00019161 0.00002694 0.0 <21:27:08> 21 0.00012399 0.00000911 0.0 <21:28:42> 22 0.00009768 0.00000742 0.0 <21:30:16> 23 0.00006003 0.00000835 0.0 <21:31:50> 24 0.00005442 0.00000746 0.0 <21:33:25> 25 0.00001686 0.00000133 0.0 <21:34:59> 26 0.00001140 0.00000084 0.0 <21:36:33> 27 0.00000723 0.00000085 0.0 <21:36:36> SCF converged <21:38:07> 28 0.00000566 0.00000051 0.0 <21:39:36> >>>> TOTEN <21:43:58> >>>> POPAN <21:43:58> >>>> DEBYE <21:43:58> >>>> ENGRAD <21:44:53> CalcFitCoeff for gradient <22:00:32> CM5 charges were requested but they are missing in the ADF results file. <22:00:33> current energy -12.37704052 Hartree <22:00:33> energy change -0.04169209 0.00052000 F <22:00:33> constrained gradient max 0.12276153 0.00100000 F <22:00:33> constrained gradient rms 0.02527671 0.00066667 F <22:00:33> gradient max 0.12276153 <22:00:33> gradient rms 0.02527671 <22:00:33> cart. step max 0.21123062 0.01000000 F <22:00:33> cart. step rms 0.06469858 0.00666667 F <22:00:33> Iteration 4 <22:00:34> *** GO1_GOStep4 *** <22:00:34> WARNING: Unknown XC functional for DFT-D3! <22:00:34> PBE parameters will be used for parameters that are not set in input. <22:00:34> >>>> FRAGM <22:00:34> Coordinates <22:00:34> Atom X Y Z (Angstrom) <22:00:34> 1.H -10.433131 -5.375382 -1.501102 <22:00:34> 2.N -9.898871 -6.212158 -1.155956 <22:00:34> 3.H -10.052276 -7.000376 -1.772627 <22:00:34> 4.H -9.737471 -5.281595 -0.643523 <22:00:34> 5.H -10.198578 -5.170802 2.581526 <22:00:34> 6.N -9.704329 -6.040673 2.263832 <22:00:34> 7.H -9.610250 -5.174027 1.633987 <22:00:34> 8.H -9.782754 -6.764304 2.967471 <22:00:34> 9.Pt -8.701867 -6.374940 0.503869 <22:00:34> 10.N -7.167296 -5.135719 0.354970 <22:00:34> 11.C -5.911645 -5.622972 0.308159 <22:00:34> 12.C -7.348565 -3.803758 0.298564 <22:00:34> 13.H -5.782693 -6.700470 0.354742 <22:00:34> 14.C -4.811082 -4.801905 0.204815 <22:00:34> 15.H -8.363388 -3.420750 0.336732 <22:00:34> 16.C -6.289322 -2.921640 0.194613 <22:00:34> 17.H -3.817701 -5.238762 0.170460 <22:00:34> 18.C -4.986129 -3.417843 0.145818 <22:00:34> 19.H -6.499987 -1.860161 0.153169 <22:00:34> 20.C -3.760718 -2.550224 0.033394 <22:00:34> 21.N -4.054405 -1.127942 -0.019546 <22:00:34> 22.H -3.220930 -2.833764 -0.880840 <22:00:34> 23.H -3.119573 -2.745162 0.904330 <22:00:34> 24.C -3.041200 -0.235617 -0.121502 <22:00:34> 25.H -5.004847 -0.803269 0.019227 <22:00:34> 26.C -3.349528 1.247243 -0.176736 <22:00:34> 27.O -1.871629 -0.622183 -0.170339 <22:00:34> 28.C -4.842644 1.582432 -0.106760 <22:00:34> 29.H -2.939925 1.634352 -1.116977 <22:00:34> 30.H -2.836815 1.723233 0.667273 <22:00:34> 31.C -5.061233 3.082931 -0.171191 <22:00:34> 32.H -5.369113 1.115561 -0.951352 <22:00:34> 33.H -5.266339 1.204546 0.834529 <22:00:34> 34.N -6.362909 3.506665 -0.117674 <22:00:34> 35.O -4.125992 3.865212 -0.264059 <22:00:34> 36.C -6.758843 4.841550 -0.166343 <22:00:34> 37.H -7.084079 2.804331 -0.033360 <22:00:34> 38.C -6.084289 5.778216 -0.960101 <22:00:34> 39.C -7.862640 5.245926 0.592653 <22:00:34> 40.H -5.230413 5.473659 -1.552677 <22:00:34> 41.C -6.509943 7.098092 -0.988857 <22:00:34> 42.H -8.388422 4.520792 1.208824 <22:00:34> 43.C -8.291900 6.565615 0.562384 <22:00:34> 44.H -5.983722 7.822863 -1.604907 <22:00:34> 45.C -7.612120 7.487962 -0.227484 <22:00:34> 46.H -9.149466 6.876591 1.151623 <22:00:34> 47.S -8.155681 9.175097 -0.259770 <22:00:34> 48.N -8.530834 9.453077 -1.834577 <22:00:34> 49.O -7.073332 10.054569 0.155755 <22:00:34> 50.O -9.333770 9.332887 0.576546 <22:00:34> 51.H -8.425350 8.720926 -2.521336 <22:00:34> 52.H -8.868561 10.365470 -2.108772 <22:00:34> >>>> CORORT <22:00:34> >>>> CLSMAT <22:00:34> >>>> ORTHON <22:00:35> >>>> GENPT <22:00:36> Block Length= 128 <22:00:37> >>>> PTBAS <22:00:58> combining surface points... <22:00:58> combining surface points... <22:00:58> combining surface points... <22:00:58> >>>> CYCLE <22:01:01> CalcFitR12Fit <22:01:16> CalcFitCoeff <22:04:09> using orbital data from restart file <22:04:15> |Error| MaxErr Wt(A-DIIS) <22:04:15> 1 0.90945926 0.09105974 <22:05:48> 2 3.24619410 0.34899328 100.0 <22:07:20> 3 1.37353961 0.17514947 100.0 <22:08:52> 4 0.82991296 0.12869067 100.0 <22:10:25> 5 5.97155765 0.73347516 100.0 <22:11:59> 6 1.76043228 0.38937309 100.0 <22:13:32> 7 0.55211552 0.07428528 74.0 <22:15:04> 8 0.80468959 0.12010001 100.0 <22:16:37> 9 0.14889340 0.01259337 11.7 <22:18:10> 10 0.08315142 0.00859442 7.7 <22:19:43> 11 0.03332424 0.00290908 1.9 <22:21:16> 12 0.01079699 0.00081745 0.0 <22:22:48> 13 0.00376916 0.00038760 0.0 <22:24:21> 14 0.00146911 0.00020213 0.0 <22:25:54> 15 0.00057394 0.00007007 0.0 <22:27:27> 16 0.00019692 0.00001460 0.0 <22:29:00> 17 0.00010748 0.00000909 0.0 <22:30:32> 18 0.00002100 0.00000172 0.0 <22:32:05> 19 0.00001297 0.00000115 0.0 <22:33:38> 20 0.00001078 0.00000109 0.0 <22:35:11> 21 0.00000573 0.00000059 0.0 <22:35:14> SCF converged <22:36:43> 22 0.00000209 0.00000023 0.0 <22:38:10> >>>> TOTEN <22:42:27> >>>> POPAN <22:42:28> >>>> DEBYE <22:42:28> >>>> ENGRAD <22:43:22> CalcFitCoeff for gradient <22:58:49> CM5 charges were requested but they are missing in the ADF results file. <22:58:49> current energy -12.42636135 Hartree <22:58:49> energy change -0.04932083 0.00052000 F <22:58:49> constrained gradient max 0.08133685 0.00100000 F <22:58:49> constrained gradient rms 0.01790680 0.00066667 F <22:58:49> gradient max 0.08133685 <22:58:49> gradient rms 0.01790680 <22:58:49> cart. step max 0.21842917 0.01000000 F <22:58:49> cart. step rms 0.07516286 0.00666667 F <22:58:49> Iteration 5 <22:58:50> *** GO1_GOStep5 *** <22:58:50> WARNING: Unknown XC functional for DFT-D3! <22:58:50> PBE parameters will be used for parameters that are not set in input. <22:58:50> >>>> FRAGM <22:58:50> Coordinates <22:58:50> Atom X Y Z (Angstrom) <22:58:50> 1.H -10.535418 -5.308278 -1.662062 <22:58:50> 2.N -9.980954 -6.085890 -1.222543 <22:58:50> 3.H -10.098350 -6.876800 -1.842916 <22:58:50> 4.H -9.851739 -5.163384 -0.663608 <22:58:50> 5.H -10.208916 -5.176123 2.799955 <22:58:50> 6.N -9.724811 -5.981178 2.331261 <22:58:50> 7.H -9.687124 -5.101109 1.692667 <22:58:50> 8.H -9.748499 -6.737531 3.003222 <22:58:50> 9.Pt -8.787050 -6.232409 0.483455 <22:58:50> 10.N -7.218129 -5.034562 0.337739 <22:58:50> 11.C -5.984312 -5.572916 0.269877 <22:58:50> 12.C -7.368810 -3.700066 0.306363 <22:58:50> 13.H -5.904589 -6.651728 0.298753 <22:58:50> 14.C -4.863491 -4.781295 0.169516 <22:58:50> 15.H -8.370003 -3.296682 0.362228 <22:58:50> 16.C -6.278567 -2.856795 0.204099 <22:58:50> 17.H -3.890266 -5.251646 0.118521 <22:58:50> 18.C -4.992379 -3.389943 0.134046 <22:58:50> 19.H -6.465190 -1.793594 0.184278 <22:58:50> 20.C -3.737588 -2.566789 0.024050 <22:58:50> 21.N -3.979459 -1.134251 -0.011310 <22:58:50> 22.H -3.212891 -2.862802 -0.889859 <22:58:50> 23.H -3.097741 -2.801522 0.880646 <22:58:50> 24.C -2.949372 -0.269100 -0.108854 <22:58:50> 25.H -4.919152 -0.780857 0.033870 <22:58:50> 26.C -3.244605 1.217424 -0.157448 <22:58:50> 27.O -1.780903 -0.671552 -0.162562 <22:58:50> 28.C -4.728051 1.597204 -0.091169 <22:58:50> 29.H -2.816321 1.593216 -1.088632 <22:58:50> 30.H -2.714500 1.674740 0.680290 <22:58:50> 31.C -4.923709 3.103315 -0.157065 <22:58:50> 32.H -5.269788 1.149843 -0.931360 <22:58:50> 33.H -5.171745 1.234693 0.842079 <22:58:50> 34.N -6.228860 3.508705 -0.106893 <22:58:50> 35.O -3.985636 3.886120 -0.246440 <22:58:50> 36.C -6.682456 4.836279 -0.155567 <22:58:50> 37.H -6.931868 2.789238 -0.017079 <22:58:50> 38.C -6.039181 5.809281 -0.931118 <22:58:50> 39.C -7.822054 5.177677 0.580196 <22:58:50> 40.H -5.161601 5.552091 -1.504231 <22:58:50> 41.C -6.532377 7.104505 -0.963920 <22:58:50> 42.H -8.319258 4.424289 1.179833 <22:58:50> 43.C -8.323546 6.470624 0.540558 <22:58:50> 44.H -6.030379 7.855428 -1.562204 <22:58:50> 45.C -7.674573 7.429938 -0.231020 <22:58:50> 46.H -9.208022 6.732291 1.106165 <22:58:50> 47.S -8.303698 9.081055 -0.271219 <22:58:50> 48.N -8.640320 9.288783 -1.845343 <22:58:50> 49.O -7.271744 10.018269 0.146234 <22:58:50> 50.O -9.513873 9.169538 0.527837 <22:58:50> 51.H -8.478974 8.545321 -2.505171 <22:58:50> 52.H -9.015659 10.172334 -2.157248 <22:58:50> >>>> CORORT <22:58:50> >>>> CLSMAT <22:58:51> >>>> ORTHON <22:58:51> >>>> GENPT <22:58:53> Block Length= 128 <22:58:53> >>>> PTBAS <22:59:15> combining surface points... <22:59:15> combining surface points... <22:59:15> combining surface points... <22:59:15> >>>> CYCLE <22:59:17> CalcFitR12Fit <22:59:32> CalcFitCoeff <23:02:27> using orbital data from restart file <23:02:33> |Error| MaxErr Wt(A-DIIS) <23:02:33> 1 0.92114506 0.10773368 <23:04:07> 2 3.37343639 0.31787354 100.0 <23:05:41> 3 1.33940644 0.17072024 100.0 <23:07:15> 4 1.43926236 0.30411224 100.0 <23:08:49> 5 5.83124963 0.83429955 100.0 <23:10:23> 6 1.84464557 0.50983536 100.0 <23:11:57> 7 0.97133926 0.11102441 100.0 <23:13:31> 8 1.21705885 0.13868033 100.0 <23:15:05> 9 0.53023608 0.06315210 62.8 <23:16:39> 10 0.61016096 0.07092734 100.0 <23:18:12> 11 0.10374821 0.01049644 9.6 <23:19:46> 12 0.03221140 0.00309720 2.1 <23:21:20> 13 0.00887245 0.00088647 0.0 <23:22:54> 14 0.00342066 0.00035176 0.0 <23:24:27> 15 0.00062229 0.00006511 0.0 <23:26:01> 16 0.00034696 0.00003188 0.0 <23:27:34> 17 0.00011387 0.00001425 0.0 <23:29:08> 18 0.00005644 0.00000483 0.0 <23:30:41> 19 0.00003173 0.00000338 0.0 <23:32:15> 20 0.00001414 0.00000145 0.0 <23:33:48> 21 0.00001029 0.00000118 0.0 <23:35:22> 22 0.00000430 0.00000048 0.0 <23:35:25> SCF converged <23:36:55> 23 0.00000192 0.00000023 0.0 <23:38:23> >>>> TOTEN <23:42:44> >>>> POPAN <23:42:44> >>>> DEBYE <23:42:44> >>>> ENGRAD <23:43:38> CalcFitCoeff for gradient <23:59:12> CM5 charges were requested but they are missing in the ADF results file. <23:59:12> current energy -12.46144491 Hartree <23:59:12> energy change -0.03508356 0.00052000 F <23:59:12> constrained gradient max 0.06356031 0.00100000 F <23:59:12> constrained gradient rms 0.01513716 0.00066667 F <23:59:12> gradient max 0.06356031 <23:59:12> gradient rms 0.01513716 <23:59:12> cart. step max 0.22353584 0.01000000 F <23:59:12> cart. step rms 0.05433756 0.00666667 F <23:59:12> Iteration 6 <23:59:13> *** GO1_GOStep6 *** <23:59:13> WARNING: Unknown XC functional for DFT-D3! <23:59:13> PBE parameters will be used for parameters that are not set in input. <23:59:13> >>>> FRAGM <23:59:13> Coordinates <23:59:13> Atom X Y Z (Angstrom) <23:59:13> 1.H -10.579285 -5.346561 -1.812368 <23:59:13> 2.N -10.024981 -6.046358 -1.263629 <23:59:13> 3.H -10.084576 -6.862254 -1.860983 <23:59:13> 4.H -9.962430 -5.135653 -0.666841 <23:59:13> 5.H -10.160378 -5.242628 3.023491 <23:59:13> 6.N -9.712359 -5.968018 2.416744 <23:59:13> 7.H -9.763820 -5.092274 1.764634 <23:59:13> 8.H -9.670788 -6.766526 3.038706 <23:59:13> 9.Pt -8.854270 -6.142532 0.493283 <23:59:13> 10.N -7.264581 -4.972730 0.338146 <23:59:13> 11.C -6.043424 -5.537976 0.256368 <23:59:13> 12.C -7.402222 -3.638867 0.314676 <23:59:13> 13.H -5.991412 -6.616348 0.279915 <23:59:13> 14.C -4.914303 -4.759110 0.150582 <23:59:13> 15.H -8.397807 -3.230063 0.381316 <23:59:13> 16.C -6.297229 -2.815718 0.206756 <23:59:13> 17.H -3.951912 -5.246375 0.089608 <23:59:13> 18.C -5.019562 -3.364594 0.123480 <23:59:13> 19.H -6.479224 -1.753260 0.194421 <23:59:13> 20.C -3.748154 -2.567876 0.009961 <23:59:13> 21.N -3.943144 -1.128717 -0.022328 <23:59:13> 22.H -3.229898 -2.879635 -0.899940 <23:59:13> 23.H -3.109386 -2.826574 0.857776 <23:59:13> 24.C -2.898844 -0.284876 -0.112574 <23:59:13> 25.H -4.872372 -0.750457 0.022295 <23:59:13> 26.C -3.179770 1.205713 -0.153441 <23:59:13> 27.O -1.734619 -0.702592 -0.160337 <23:59:13> 28.C -4.653352 1.618678 -0.103087 <23:59:13> 29.H -2.726991 1.578360 -1.071970 <23:59:13> 30.H -2.642727 1.646547 0.686215 <23:59:13> 31.C -4.832816 3.128911 -0.160722 <23:59:13> 32.H -5.197772 1.191433 -0.949471 <23:59:13> 33.H -5.122782 1.262269 0.817425 <23:59:13> 34.N -6.139975 3.522748 -0.129365 <23:59:13> 35.O -3.893486 3.912755 -0.227673 <23:59:13> 36.C -6.631616 4.842394 -0.167750 <23:59:13> 37.H -6.832850 2.791967 -0.054671 <23:59:13> 38.C -5.987651 5.853926 -0.890510 <23:59:13> 39.C -7.814879 5.124268 0.522042 <23:59:13> 40.H -5.077581 5.640696 -1.426811 <23:59:13> 41.C -6.524978 7.131463 -0.915202 <23:59:13> 42.H -8.308959 4.339867 1.079971 <23:59:13> 43.C -8.362681 6.397923 0.486178 <23:59:13> 44.H -6.021867 7.912337 -1.469261 <23:59:13> 45.C -7.712642 7.397699 -0.231485 <23:59:13> 46.H -9.280553 6.614053 1.012814 <23:59:13> 47.S -8.394606 9.025101 -0.260795 <23:59:13> 48.N -8.662851 9.235167 -1.837905 <23:59:13> 49.O -7.408634 9.986432 0.208425 <23:59:13> 50.O -9.642267 9.049550 0.482144 <23:59:13> 51.H -8.454276 8.502738 -2.495092 <23:59:13> 52.H -9.048964 10.108975 -2.162263 <23:59:13> >>>> CORORT <23:59:13> >>>> CLSMAT <23:59:13> >>>> ORTHON <23:59:14> >>>> GENPT <23:59:15> Block Length= 128 <23:59:16> >>>> PTBAS <23:59:37> combining surface points... <23:59:37> combining surface points... <23:59:37> combining surface points... <23:59:37> >>>> CYCLE <23:59:39> CalcFitR12Fit <23:59:54> CalcFitCoeff <00:02:49> using orbital data from restart file <00:02:55> |Error| MaxErr Wt(A-DIIS) <00:02:55> 1 0.99327762 0.13194810 <00:04:29> 2 3.33655126 0.32217787 100.0 <00:06:02> 3 1.36165260 0.17273630 100.0 <00:07:36> 4 1.43637760 0.29989706 100.0 <00:09:10> 5 5.87626526 0.84495086 100.0 <00:10:44> 6 1.88455909 0.52208355 100.0 <00:12:18> 7 0.98887693 0.11848068 100.0 <00:13:51> 8 1.27479280 0.14926006 100.0 <00:15:25> 9 0.53379949 0.06046971 60.1 <00:16:58> 10 0.56610024 0.06271768 60.1 <00:18:32> 11 0.07830955 0.00653870 5.6 <00:20:05> 12 0.02268312 0.00239728 1.4 <00:21:39> 13 0.00975560 0.00093833 0.0 <00:23:13> 14 0.00418169 0.00044617 0.0 <00:24:46> 15 0.00088940 0.00007091 0.0 <00:26:20> 16 0.00050613 0.00006649 0.0 <00:27:53> 17 0.00023559 0.00002304 0.0 <00:29:27> 18 0.00005890 0.00000884 0.0 <00:31:00> 19 0.00005637 0.00000643 0.0 <00:32:34> 20 0.00001632 0.00000171 0.0 <00:34:07> 21 0.00000979 0.00000106 0.0 <00:35:40> 22 0.00000356 0.00000053 0.0 <00:35:44> SCF converged <00:37:14> 23 0.00000244 0.00000025 0.0 <00:38:41> >>>> TOTEN <00:43:01> >>>> POPAN <00:43:01> >>>> DEBYE <00:43:02> >>>> ENGRAD <00:43:56> CalcFitCoeff for gradient <00:59:28> CM5 charges were requested but they are missing in the ADF results file. <00:59:29> current energy -12.48743815 Hartree <00:59:29> energy change -0.02599324 0.00052000 F <00:59:29> constrained gradient max 0.07136018 0.00100000 F <00:59:29> constrained gradient rms 0.01441075 0.00066667 F <00:59:29> gradient max 0.07136018 <00:59:29> gradient rms 0.01441075 <00:59:29> cart. step max 0.22302237 0.01000000 F <00:59:29> cart. step rms 0.05365738 0.00666667 F <00:59:29> Iteration 7 <00:59:30> *** GO1_GOStep7 *** <00:59:30> WARNING: Unknown XC functional for DFT-D3! <00:59:30> PBE parameters will be used for parameters that are not set in input. <00:59:30> >>>> FRAGM <00:59:30> Coordinates <00:59:30> Atom X Y Z (Angstrom) <00:59:30> 1.H -10.601088 -5.428762 -1.937887 <00:59:30> 2.N -10.063795 -6.046173 -1.288548 <00:59:30> 3.H -10.051769 -6.886822 -1.855218 <00:59:30> 4.H -10.089075 -5.160878 -0.647835 <00:59:30> 5.H -10.023608 -5.359952 3.246513 <00:59:30> 6.N -9.650931 -5.997004 2.509275 <00:59:30> 7.H -9.829355 -5.139474 1.849840 <00:59:30> 8.H -9.521983 -6.836468 3.063073 <00:59:30> 9.Pt -8.910584 -6.086495 0.508346 <00:59:30> 10.N -7.311521 -4.932004 0.331903 <00:59:30> 11.C -6.099846 -5.513718 0.224983 <00:59:30> 12.C -7.443786 -3.598770 0.322783 <00:59:30> 13.H -6.066277 -6.591113 0.238345 <00:59:30> 14.C -4.968219 -4.740371 0.110191 <00:59:30> 15.H -8.435719 -3.190123 0.409861 <00:59:30> 16.C -6.330894 -2.786981 0.206685 <00:59:30> 17.H -4.013577 -5.237199 0.030989 <00:59:30> 18.C -5.059318 -3.343883 0.100470 <00:59:30> 19.H -6.512774 -1.725652 0.209716 <00:59:30> 20.C -3.777320 -2.565436 -0.016555 <00:59:30> 21.N -3.937049 -1.122611 -0.034695 <00:59:30> 22.H -3.267343 -2.883018 -0.927309 <00:59:30> 23.H -3.135247 -2.848772 0.818856 <00:59:30> 24.C -2.881109 -0.295633 -0.112148 <00:59:30> 25.H -4.857786 -0.725798 0.013851 <00:59:30> 26.C -3.148510 1.198779 -0.137287 <00:59:30> 27.O -1.720192 -0.726205 -0.158895 <00:59:30> 28.C -4.611173 1.643860 -0.101934 <00:59:30> 29.H -2.671220 1.573567 -1.040751 <00:59:30> 30.H -2.606696 1.619742 0.707630 <00:59:30> 31.C -4.768433 3.158448 -0.145269 <00:59:30> 32.H -5.156517 1.240833 -0.957618 <00:59:30> 33.H -5.107126 1.290247 0.803788 <00:59:30> 34.N -6.075132 3.550757 -0.138391 <00:59:30> 35.O -3.822300 3.936982 -0.183955 <00:59:30> 36.C -6.591645 4.865380 -0.170747 <00:59:30> 37.H -6.763886 2.814749 -0.080116 <00:59:30> 38.C -5.932350 5.909509 -0.830048 <00:59:30> 39.C -7.820661 5.098154 0.453869 <00:59:30> 40.H -4.988457 5.732558 -1.315801 <00:59:30> 41.C -6.500982 7.172758 -0.854656 <00:59:30> 42.H -8.323498 4.287912 0.962221 <00:59:30> 43.C -8.401314 6.356277 0.413058 <00:59:30> 44.H -5.985966 7.979202 -1.355744 <00:59:30> 45.C -7.735490 7.389355 -0.240175 <00:59:30> 46.H -9.353926 6.535438 0.886093 <00:59:30> 47.S -8.452637 8.998813 -0.268658 <00:59:30> 48.N -8.635965 9.222047 -1.849059 <00:59:30> 49.O -7.510790 9.971749 0.262831 <00:59:30> 50.O -9.739624 8.973132 0.403198 <00:59:30> 51.H -8.386788 8.499875 -2.502009 <00:59:30> 52.H -9.017248 10.092595 -2.186160 <00:59:30> >>>> CORORT <00:59:30> >>>> CLSMAT <00:59:30> >>>> ORTHON <00:59:31> >>>> GENPT <00:59:32> Block Length= 128 <00:59:33> >>>> PTBAS <00:59:53> combining surface points... <00:59:53> combining surface points... <00:59:53> combining surface points... <00:59:53> >>>> CYCLE <00:59:56> CalcFitR12Fit <01:00:11> CalcFitCoeff <01:03:06> using orbital data from restart file <01:03:12> |Error| MaxErr Wt(A-DIIS) <01:03:12> 1 0.87162880 0.13036139 <01:04:46> 2 3.31774784 0.32222631 100.0 <01:06:20> 3 1.39219096 0.17540009 100.0 <01:07:53> 4 1.43755470 0.29650812 100.0 <01:09:27> 5 5.92858722 0.85613348 100.0 <01:11:01> 6 1.92046393 0.53313678 100.0 <01:12:35> 7 1.01062199 0.12039838 100.0 <01:14:08> 8 1.33107864 0.15914308 100.0 <01:15:42> 9 0.52874279 0.05713101 56.7 <01:17:16> 10 0.53138590 0.05551458 55.1 <01:18:49> 11 0.08159186 0.00652132 5.6 <01:20:23> 12 0.02183603 0.00241118 1.4 <01:21:56> 13 0.00949297 0.00095942 0.0 <01:23:30> 14 0.00442489 0.00044724 0.0 <01:25:03> 15 0.00098961 0.00008247 0.0 <01:26:37> 16 0.00048199 0.00005719 0.0 <01:28:10> 17 0.00026939 0.00003117 0.0 <01:29:44> 18 0.00006760 0.00000934 0.0 <01:31:17> 19 0.00006825 0.00000744 0.0 <01:32:51> 20 0.00001638 0.00000168 0.0 <01:34:25> 21 0.00000887 0.00000091 0.0 <01:34:28> SCF converged <01:35:58> 22 0.00000365 0.00000048 0.0 <01:37:26> >>>> TOTEN <01:41:47> >>>> POPAN <01:41:47> >>>> DEBYE <01:41:47> >>>> ENGRAD <01:42:42> CalcFitCoeff for gradient <01:58:16> CM5 charges were requested but they are missing in the ADF results file. <01:58:16> current energy
Gary1113 commented 5 months ago

Hi,

I also tried using orca, but it didn't converge. Can you recommend a base group for me? I think there may be fewer suitable base groups for platinum testing. (I am a platinum complex) Or can we directly dock without optimizing the molecules.Message ID: @.***>

<18:39:08> AMS 2023.104 RunTime: Apr09-2024 18:39:08 ShM Nodes: 1 Procs: 6 <18:39:08> ADF 2023.104 RunTime: Apr09-2024 18:39:08 ShM Nodes: 1 Procs: 6 <18:39:08> *** (NO TITLE) *** <18:39:08> Iteration 1 <18:39:09> DIRAC 2023.104 RunTime: Apr09-2024 18:39:09 ShM Nodes: 1 Procs: 1 <18:39:09> Hydrogen (QZ, all electron, 5S 2P 2D) <18:39:09> WARNING: Unknown XC functional for DFT-D3! <18:39:09> PBE parameters will be used for parameters that are not set in input. <18:39:09> Net Charge: 0 (Nuclei minus Electrons) <18:39:09> Symmetry : ATOM <18:39:09> Coordinates <18:39:09> Atom X Y Z (Angstrom) <18:39:09> 1.H 0.000000 0.000000 0.000000 <18:39:09> >>>> CORORT <18:39:09> >>>> CLSMAT <18:39:09> >>>> ORTHON <18:39:09> >>>> GENPT <18:39:09> Block Length= 64 <18:39:09> >>>> PTBAS <18:39:09> >>>> CYCLE <18:39:09> CalcFitR12Fit <18:39:09> CalcFitCoeff <18:39:09> |Error| MaxErr Wt(A-DIIS) <18:39:09> 1 0.00000000 0.00000000 <18:39:09> 2 0.04834841 0.03784122 <18:39:09> 3 0.00919254 0.00902960 100.0 <18:39:09> 4 0.00152001 0.00143884 0.4 <18:39:09> 5 0.00003171 0.00003122 0.0 <18:39:09> 6 0.00000023 0.00000017 0.0 <18:39:09> 7 0.00000000 0.00000000 0.0 <18:39:09> SCF converged <18:39:09> 8 0.00000000 0.00000000 0.0 <18:39:09> >>>> POPAN <18:39:09> >>>> DEBYE <18:39:09> DIRAC 2023.104 RunTime: Apr09-2024 18:39:09 ShM Nodes: 1 Procs: 1 <18:39:09> Nitrogen (QZ, all electron, 8S 4P 2D 2F) <18:39:09> WARNING: Unknown XC functional for DFT-D3! <18:39:09> PBE parameters will be used for parameters that are not set in input. <18:39:09> Net Charge: 0 (Nuclei minus Electrons) <18:39:09> Symmetry : ATOM <18:39:09> Coordinates <18:39:09> Atom X Y Z (Angstrom) <18:39:09> 1.N 0.000000 0.000000 0.000000 <18:39:09> >>>> CORORT <18:39:09> >>>> CLSMAT <18:39:09> >>>> ORTHON <18:39:09> >>>> GENPT <18:39:09> Block Length= 81 <18:39:09> >>>> PTBAS <18:39:09> >>>> CYCLE <18:39:09> CalcFitR12Fit <18:39:09> CalcFitCoeff <18:39:09> |Error| MaxErr Wt(A-DIIS) <18:39:09> 1 0.00000000 0.00000000 <18:39:09> 2 6.74569605 3.40472622 100.0 <18:39:09> 3 2.48078045 2.03155289 100.0 <18:39:09> 4 0.72059707 0.33909283 100.0 <18:39:09> 5 0.75507116 0.45007054 100.0 <18:39:09> 6 0.01525144 0.00703150 6.1 <18:39:10> 7 0.00556368 0.00286822 1.9 <18:39:10> 8 0.00010055 0.00005784 0.0 <18:39:10> 9 0.00000477 0.00000272 0.0 <18:39:10> 10 0.00000011 0.00000006 0.0 <18:39:10> 11 0.00000000 0.00000000 0.0 <18:39:10> SCF converged <18:39:10> 12 0.00000000 0.00000000 0.0 <18:39:10> >>>> POPAN <18:39:10> >>>> DEBYE <18:39:10> DIRAC 2023.104 RunTime: Apr09-2024 18:39:10 ShM Nodes: 1 Procs: 1 <18:39:10> Platinum (QZ, all electron, 22S 17P 11D 6F) <18:39:10> WARNING: Unknown XC functional for DFT-D3! <18:39:10> PBE parameters will be used for parameters that are not set in input. <18:39:10> Net Charge: 0 (Nuclei minus Electrons) <18:39:10> Symmetry : ATOM <18:39:10> Coordinates <18:39:10> Atom X Y Z (Angstrom) <18:39:10> 1.Pt 0.000000 0.000000 0.000000 <18:39:10> >>>> CORORT <18:39:10> >>>> CLSMAT <18:39:10> >>>> ORTHON <18:39:10> >>>> GENPT <18:39:10> Block Length= 97 <18:39:10> >>>> PTBAS <18:39:10> >>>> CYCLE <18:39:11> CalcFitR12Fit <18:39:12> CalcFitCoeff <18:39:22> |Error| MaxErr Wt(A-DIIS) <18:39:22> 1 0.00000000 0.00000000 <18:39:23> 2 619.21824109 67.02870735 100.0 <18:39:24> 3 233.89119881 37.45583416 100.0 <18:39:25> 4 55.31985859 6.46100899 100.0 <18:39:25> 5 39.22634139 6.57726194 100.0 <18:39:26> 6 18.04004947 2.34682283 100.0 <18:39:27> 7 10.15924789 1.53334903 100.0 <18:39:27> 8 1.52055178 0.22641523 100.0 <18:39:28> 9 1.15547487 0.20941274 100.0 <18:39:29> 10 0.59551536 0.10655194 100.0 <18:39:30> 11 0.76022449 0.13311703 100.0 <18:39:30> 12 0.10338766 0.01822521 17.4 <18:39:31> 13 0.01707132 0.00299070 2.0 <18:39:32> 14 0.00034324 0.00006078 0.0 <18:39:32> 15 0.00000189 0.00000030 0.0 <18:39:33> 16 0.00000001 0.00000000 0.0 <18:39:33> SCF converged <18:39:33> 17 0.00000000 0.00000000 0.0 <18:39:34> >>>> POPAN <18:39:34> >>>> DEBYE <18:39:34> DIRAC 2023.104 RunTime: Apr09-2024 18:39:34 ShM Nodes: 1 Procs: 1 <18:39:34> Carbon (QZ, all electron, 7S 4P 2D 2F) <18:39:34> WARNING: Unknown XC functional for DFT-D3! <18:39:34> PBE parameters will be used for parameters that are not set in input. <18:39:34> Net Charge: 0 (Nuclei minus Electrons) <18:39:34> Symmetry : ATOM <18:39:34> Coordinates <18:39:34> Atom X Y Z (Angstrom) <18:39:34> 1.C 0.000000 0.000000 0.000000 <18:39:34> >>>> CORORT <18:39:34> >>>> CLSMAT <18:39:34> >>>> ORTHON <18:39:34> >>>> GENPT <18:39:34> Block Length= 81 <18:39:34> >>>> PTBAS <18:39:34> >>>> CYCLE <18:39:34> CalcFitR12Fit <18:39:34> CalcFitCoeff <18:39:35> |Error| MaxErr Wt(A-DIIS) <18:39:35> 1 0.00000000 0.00000000 <18:39:35> 2 4.67422806 3.34446341 100.0 <18:39:35> 3 1.58005737 1.14063656 100.0 <18:39:35> 4 0.64032462 0.45043619 100.0 <18:39:35> 5 0.42606498 0.30412743 100.0 <18:39:35> 6 0.08812459 0.05884668 58.4 <18:39:35> 7 0.04514486 0.03186194 31.2 <18:39:35> 8 0.00730204 0.00523721 4.3 <18:39:35> 9 0.00021910 0.00015555 0.0 <18:39:35> 10 0.00000140 0.00000094 0.0 <18:39:35> 11 0.00000005 0.00000003 0.0 <18:39:35> 12 0.00000000 0.00000000 0.0 <18:39:35> SCF converged <18:39:35> 13 0.00000000 0.00000000 0.0 <18:39:35> >>>> POPAN <18:39:35> >>>> DEBYE <18:39:35> DIRAC 2023.104 RunTime: Apr09-2024 18:39:35 ShM Nodes: 1 Procs: 1 <18:39:35> Oxygen (QZ, all electron, 8S 4P 2D 2F) <18:39:35> WARNING: Unknown XC functional for DFT-D3! <18:39:35> PBE parameters will be used for parameters that are not set in input. <18:39:35> Net Charge: 0 (Nuclei minus Electrons) <18:39:35> Symmetry : ATOM <18:39:35> Coordinates <18:39:35> Atom X Y Z (Angstrom) <18:39:35> 1.O 0.000000 0.000000 0.000000 <18:39:35> >>>> CORORT <18:39:35> >>>> CLSMAT <18:39:35> >>>> ORTHON <18:39:35> >>>> GENPT <18:39:35> Block Length= 81 <18:39:35> >>>> PTBAS <18:39:35> >>>> CYCLE <18:39:35> CalcFitR12Fit <18:39:35> CalcFitCoeff <18:39:35> |Error| MaxErr Wt(A-DIIS) <18:39:35> 1 0.00000000 0.00000000 <18:39:35> 2 9.76510398 4.15246702 100.0 <18:39:35> 3 3.64648748 2.90118926 100.0 <18:39:35> 4 0.80634863 0.33076934 100.0 <18:39:35> 5 1.03626951 0.48452014 100.0 <18:39:35> 6 0.05890250 0.02584738 25.1 <18:39:35> 7 0.01217762 0.00566688 4.7 <18:39:35> 8 0.00007399 0.00002632 0.0 <18:39:35> 9 0.00001394 0.00000576 0.0 <18:39:35> 10 0.00000066 0.00000030 0.0 <18:39:35> 11 0.00000000 0.00000000 0.0 <18:39:35> SCF converged <18:39:35> 12 0.00000000 0.00000000 0.0 <18:39:35> >>>> POPAN <18:39:35> >>>> DEBYE <18:39:35> DIRAC 2023.104 RunTime: Apr09-2024 18:39:35 ShM Nodes: 1 Procs: 1 <18:39:36> Sulphur (QZ, all electron, 11S 7P 3D 2F) <18:39:36> WARNING: Unknown XC functional for DFT-D3! <18:39:36> PBE parameters will be used for parameters that are not set in input. <18:39:36> Net Charge: 0 (Nuclei minus Electrons) <18:39:36> Symmetry : ATOM <18:39:36> Coordinates <18:39:36> Atom X Y Z (Angstrom) <18:39:36> 1.S 0.000000 0.000000 0.000000 <18:39:36> >>>> CORORT <18:39:36> >>>> CLSMAT <18:39:36> >>>> ORTHON <18:39:36> >>>> GENPT <18:39:36> Block Length= 119 <18:39:36> >>>> PTBAS <18:39:36> >>>> CYCLE <18:39:36> CalcFitR12Fit <18:39:36> CalcFitCoeff <18:39:36> |Error| MaxErr Wt(A-DIIS) <18:39:36> 1 0.00000000 0.00000000 <18:39:36> 2 34.51441128 8.08206682 100.0 <18:39:36> 3 19.83786241 8.16429068 100.0 <18:39:36> 4 3.82345062 1.28021731 100.0 <18:39:36> 5 2.48817645 0.82670191 100.0 <18:39:36> 6 0.63978283 0.23992457 100.0 <18:39:36> 7 0.47268279 0.18233345 100.0 <18:39:36> 8 0.05124967 0.02101489 20.2 <18:39:36> 9 0.00999733 0.00403055 3.1 <18:39:36> 10 0.00017459 0.00005945 0.0 <18:39:36> 11 0.00000266 0.00000091 0.0 <18:39:36> 12 0.00000021 0.00000008 0.0 <18:39:36> 13 0.00000001 0.00000000 0.0 <18:39:36> SCF converged <18:39:36> 14 0.00000000 0.00000000 0.0 <18:39:36> >>>> POPAN <18:39:36> >>>> DEBYE <18:39:36> *** GO1_GOStep1 *** <18:39:36> WARNING: Unknown XC functional for DFT-D3! <18:39:36> PBE parameters will be used for parameters that are not set in input. <18:39:36> >>>> FRAGM <18:39:37> Coordinates <18:39:37> Atom X Y Z (Angstrom) <18:39:37> 1.H -10.277800 -4.805200 -1.264100 <18:39:37> 2.N -9.922400 -5.742900 -1.077700 <18:39:37> 3.H -10.165900 -6.513600 -1.699900 <18:39:37> 4.H -9.679600 -4.861400 -0.625500 <18:39:37> 5.H -10.071600 -4.635500 2.277100 <18:39:37> 6.N -9.735100 -5.588700 2.141000 <18:39:37> 7.H -9.553600 -4.763000 1.570400 <18:39:37> 8.H -9.900900 -6.295300 2.857600 <18:39:37> 9.Pt -8.762200 -6.066500 0.488800 <18:39:37> 10.N -7.132800 -4.958600 0.340500 <18:39:37> 11.C -5.900800 -5.510900 0.294800 <18:39:37> 12.C -7.194400 -3.610500 0.279700 <18:39:37> 13.H -5.822200 -6.607000 0.342500 <18:39:37> 14.C -4.730200 -4.776500 0.191300 <18:39:37> 15.H -8.185700 -3.135000 0.315000 <18:39:37> 16.C -6.081200 -2.791800 0.175500 <18:39:37> 17.H -3.751000 -5.276600 0.158000 <18:39:37> 18.C -4.826300 -3.390100 0.130700 <18:39:37> 19.H -6.187100 -1.697800 0.129500 <18:39:37> 20.C -3.591900 -2.550600 0.018400 <18:39:37> 21.N -3.961900 -1.149400 -0.026900 <18:39:37> 22.H -3.043800 -2.819700 -0.912200 <18:39:37> 23.H -2.938400 -2.732900 0.900800 <18:39:37> 24.C -2.992300 -0.188400 -0.129400 <18:39:37> 25.H -4.936800 -0.881800 0.017400 <18:39:37> 26.C -3.377400 1.269900 -0.176600 <18:39:37> 27.O -1.828500 -0.507800 -0.182200 <18:39:37> 28.C -4.892700 1.398500 -0.094100 <18:39:37> 29.H -3.018600 1.717600 -1.130300 <18:39:37> 30.H -2.913000 1.803700 0.682600 <18:39:37> 31.C -5.277800 2.856800 -0.141300 <18:39:37> 32.H -5.357100 0.864800 -0.953300 <18:39:37> 33.H -5.251500 0.950900 0.859600 <18:39:37> 34.N -6.596700 3.218800 -0.081400 <18:39:37> 35.O -4.422200 3.704800 -0.231800 <18:39:37> 36.C -6.939900 4.518600 -0.123400 <18:39:37> 37.H -7.313400 2.508400 -0.005600 <18:39:37> 38.C -6.216100 5.405600 -0.920200 <18:39:37> 39.C -8.019600 4.979400 0.629700 <18:39:37> 40.H -5.364500 5.042100 -1.514100 <18:39:37> 41.C -6.572000 6.753600 -0.963800 <18:39:37> 42.H -8.590400 4.279900 1.258100 <18:39:37> 43.C -8.375600 6.327400 0.586000 <18:39:37> 44.H -6.001200 7.453100 -1.592100 <18:39:37> 45.C -7.651800 7.214400 -0.210700 <18:39:37> 46.H -9.227200 6.690900 1.179900 <18:39:37> 47.S -8.108700 8.944200 -0.266700 <18:39:37> 48.N -8.506800 9.372200 -1.858800 <18:39:37> 49.O -6.994200 9.752700 0.188100 <18:39:37> 50.O -9.252600 9.170800 0.595000 <18:39:37> 51.H -8.460700 8.674300 -2.601200 <18:39:37> 52.H -8.792400 10.327500 -2.073800 <18:39:37> >>>> CORORT <18:39:37> >>>> CLSMAT <18:39:37> >>>> ORTHON <18:39:37> >>>> GENPT <18:39:39> Block Length= 128 <18:39:40> >>>> PTBAS <18:39:57> combining surface points... <18:39:57> combining surface points... <18:39:57> combining surface points... <18:39:57> >>>> CYCLE <18:40:00> CalcFitR12Fit <18:40:13> CalcFitCoeff <18:43:40> |Error| MaxErr Wt(A-DIIS) <18:43:40> 1 16.29490809 1.10798440 <18:45:35> 2 3.00543970 0.26825012 100.0 <18:47:24> 3 1.26769394 0.09494789 100.0 <18:49:18> 4 1.96258101 0.15835491 100.0 <18:51:01> 5 0.28824262 0.02026469 19.5 <18:52:40> 6 0.17810819 0.01575862 14.9 <18:54:20> 7 0.05941363 0.00641171 5.5 <18:55:59> 8 0.01501236 0.00180857 0.8 <18:57:39> 9 0.00660729 0.00049395 0.0 <18:59:18> 10 0.00412893 0.00039286 0.0 <19:00:57> 11 0.00401656 0.00041042 0.0 <19:02:36> 12 0.00358947 0.00035368 0.0 <19:04:15> 13 0.00416520 0.00033453 0.0 <19:05:53> 14 0.00318988 0.00026589 0.0 <19:07:31> 15 0.00139974 0.00013650 0.0 <19:09:08> 16 0.00052810 0.00003810 0.0 <19:10:46> 17 0.00017879 0.00001050 0.0 <19:12:23> 18 0.00012583 0.00000847 0.0 <19:14:01> 19 0.00006737 0.00000698 0.0 <19:15:40> 20 0.00003874 0.00000604 0.0 <19:17:18> 21 0.00002673 0.00000329 0.0 <19:18:57> 22 0.00001002 0.00000090 0.0 <19:20:36> 23 0.00000439 0.00000030 0.0 <19:20:39> SCF converged <19:22:14> 24 0.00000178 0.00000013 0.0 <19:23:45> >>>> TOTEN <19:28:19> >>>> POPAN <19:28:19> >>>> DEBYE <19:28:20> >>>> ENGRAD <19:29:19> CalcFitCoeff for gradient <19:45:35> CM5 charges were requested but they are missing in the ADF results file. <19:45:36> current energy -12.30183375 Hartree <19:45:36> energy change -12.30183375 0.00052000 F <19:45:36> constrained gradient max 0.17810075 0.00100000 F <19:45:36> constrained gradient rms 0.04021488 0.00066667 F <19:45:36> gradient max 0.17810075 <19:45:36> gradient rms 0.04021488 <19:45:36> cart. step max 0.21159299 0.01000000 F <19:45:36> cart. step rms 0.06801168 0.00666667 F <19:45:36> Iteration 2 <19:45:36> *** GO1_GOStep2 *** <19:45:36> WARNING: Unknown XC functional for DFT-D3! <19:45:36> PBE parameters will be used for parameters that are not set in input. <19:45:36> >>>> FRAGM <19:45:37> Coordinates <19:45:37> Atom X Y Z (Angstrom) <19:45:37> 1.H -10.312066 -5.016793 -1.296755 <19:45:37> 2.N -9.904284 -5.937636 -1.084268 <19:45:37> 3.H -10.119016 -6.715381 -1.705408 <19:45:37> 4.H -9.689581 -5.040935 -0.620746 <19:45:37> 5.H -10.106645 -4.837708 2.330083 <19:45:37> 6.N -9.720794 -5.777186 2.164915 <19:45:37> 7.H -9.566920 -4.938987 1.582927 <19:45:37> 8.H -9.860257 -6.489185 2.879298 <19:45:37> 9.Pt -8.730292 -6.212908 0.496779 <19:45:37> 10.N -7.140211 -5.049134 0.348892 <19:45:37> 11.C -5.893264 -5.563401 0.303279 <19:45:37> 12.C -7.249794 -3.705371 0.288815 <19:45:37> 13.H -5.782204 -6.654291 0.350732 <19:45:37> 14.C -4.750370 -4.790257 0.200052 <19:45:37> 15.H -8.255031 -3.266229 0.324388 <19:45:37> 16.C -6.163896 -2.851949 0.184870 <19:45:37> 17.H -3.759059 -5.259850 0.166834 <19:45:37> 18.C -4.885734 -3.405757 0.139394 <19:45:37> 19.H -6.314346 -1.767260 0.139919 <19:45:37> 20.C -3.659253 -2.546669 0.026998 <19:45:37> 21.N -4.009114 -1.139349 -0.022516 <19:45:37> 22.H -3.111720 -2.817248 -0.900688 <19:45:37> 23.H -3.008945 -2.727574 0.909067 <19:45:37> 24.C -3.023073 -0.197489 -0.125350 <19:45:37> 25.H -4.976186 -0.854719 0.018788 <19:45:37> 26.C -3.378536 1.270635 -0.177570 <19:45:37> 27.O -1.857942 -0.541950 -0.175106 <19:45:37> 28.C -4.889780 1.460169 -0.100234 <19:45:37> 29.H -3.003732 1.700967 -1.129658 <19:45:37> 30.H -2.900497 1.790030 0.679150 <19:45:37> 31.C -5.222850 2.932675 -0.154309 <19:45:37> 32.H -5.372056 0.943215 -0.956773 <19:45:37> 33.H -5.268613 1.032210 0.851973 <19:45:37> 34.N -6.536910 3.324580 -0.097659 <19:45:37> 35.O -4.334726 3.754174 -0.245430 <19:45:37> 36.C -6.885489 4.636036 -0.143029 <19:45:37> 37.H -7.260162 2.621790 -0.018740 <19:45:37> 38.C -6.174661 5.536224 -0.941681 <19:45:37> 39.C -7.967496 5.087632 0.615486 <19:45:37> 40.H -5.325156 5.187129 -1.540392 <19:45:37> 41.C -6.544764 6.878751 -0.978797 <19:45:37> 42.H -8.528073 4.382903 1.243256 <19:45:37> 43.C -8.337581 6.430359 0.577881 <19:45:37> 44.H -5.985438 7.584609 -1.606409 <19:45:37> 45.C -7.625633 7.325035 -0.218884 <19:45:37> 46.H -9.188292 6.783054 1.175042 <19:45:37> 47.S -8.099720 9.047490 -0.266065 <19:45:37> 48.N -8.503058 9.454146 -1.854120 <19:45:37> 49.O -6.989192 9.869312 0.179601 <19:45:37> 50.O -9.246609 9.260474 0.597168 <19:45:37> 51.H -8.449710 8.752337 -2.589382 <19:45:37> 52.H -8.799771 10.402680 -2.074719 <19:45:37> >>>> CORORT <19:45:37> >>>> CLSMAT <19:45:37> >>>> ORTHON <19:45:37> >>>> GENPT <19:45:39> Block Length= 128 <19:45:40> >>>> PTBAS <19:46:02> combining surface points... <19:46:02> combining surface points... <19:46:02> combining surface points... <19:46:02> >>>> CYCLE <19:46:04> CalcFitR12Fit <19:46:20> CalcFitCoeff <19:49:17> using orbital data from restart file <19:49:23> |Error| MaxErr Wt(A-DIIS) <19:49:23> 1 0.58467216 0.05762592 <19:50:59> 2 3.28965752 0.35803930 100.0 <19:52:35> 3 1.30997378 0.15541052 100.0 <19:54:11> 4 0.91072022 0.14313201 100.0 <19:55:47> 5 6.01916490 0.76862979 100.0 <19:57:23> 6 1.88417394 0.42370900 100.0 <19:58:58> 7 0.62193022 0.07618268 75.9 <20:00:34> 8 0.98246823 0.12334325 100.0 <20:02:10> 9 0.17867197 0.01661144 15.8 <20:03:46> 10 0.08460508 0.00774931 6.8 <20:05:21> 11 0.03977618 0.00487311 3.9 <20:06:57> 12 0.01121448 0.00093286 0.0 <20:08:33> 13 0.00527617 0.00036091 0.0 <20:10:08> 14 0.00181319 0.00022768 0.0 <20:11:44> 15 0.00087524 0.00011881 0.0 <20:13:20> 16 0.00062438 0.00006961 0.0 <20:14:56> 17 0.00038332 0.00002094 0.0 <20:16:31> 18 0.00019144 0.00002115 0.0 <20:18:07> 19 0.00009181 0.00000811 0.0 <20:19:43> 20 0.00004124 0.00000385 0.0 <20:21:18> 21 0.00003708 0.00000469 0.0 <20:22:53> 22 0.00002048 0.00000177 0.0 <20:24:29> 23 0.00001387 0.00000133 0.0 <20:26:04> 24 0.00001393 0.00000171 0.0 <20:27:40> 25 0.00000186 0.00000015 0.0 <20:27:44> SCF converged <20:29:15> 26 0.00000169 0.00000017 0.0 <20:30:45> >>>> TOTEN <20:35:12> >>>> POPAN <20:35:12> >>>> DEBYE <20:35:13> >>>> ENGRAD <20:36:09> CalcFitCoeff for gradient <20:51:57> CM5 charges were requested but they are missing in the ADF results file. <20:51:57> current energy -12.33534843 Hartree <20:51:57> energy change -0.03351468 0.00052000 F <20:51:57> constrained gradient max 0.15562154 0.00100000 F <20:51:57> constrained gradient rms 0.03360252 0.00066667 F <20:51:57> gradient max 0.15562154 <20:51:57> gradient rms 0.03360252 <20:51:57> cart. step max 0.14735822 0.01000000 F <20:51:57> cart. step rms 0.04798790 0.00666667 F <20:51:57> Iteration 3 <20:51:58> *** GO1_GOStep3 *** <20:51:58> WARNING: Unknown XC functional for DFT-D3! <20:51:58> PBE parameters will be used for parameters that are not set in input. <20:51:58> >>>> FRAGM <20:51:58> Coordinates <20:51:58> Atom X Y Z (Angstrom) <20:51:58> 1.H -10.355537 -5.164151 -1.366907 <20:51:58> 2.N -9.896688 -6.063112 -1.107227 <20:51:58> 3.H -10.091589 -6.843928 -1.726234 <20:51:58> 4.H -9.697398 -5.150007 -0.625061 <20:51:58> 5.H -10.142604 -4.971068 2.416658 <20:51:58> 6.N -9.711562 -5.894359 2.200708 <20:51:58> 7.H -9.574884 -5.043634 1.597651 <20:51:58> 8.H -9.832173 -6.607842 2.912865 <20:51:58> 9.Pt -8.710831 -6.297392 0.501800 <20:51:58> 10.N -7.144292 -5.101555 0.352909 <20:51:58> 11.C -5.892537 -5.601286 0.307880 <20:51:58> 12.C -7.284945 -3.762291 0.292890 <20:51:58> 13.H -5.770312 -6.686291 0.355976 <20:51:58> 14.C -4.768093 -4.807215 0.204497 <20:51:58> 15.H -8.295080 -3.347080 0.328629 <20:51:58> 16.C -6.212531 -2.894338 0.188868 <20:51:58> 17.H -3.774871 -5.261085 0.171807 <20:51:58> 18.C -4.922556 -3.422924 0.143295 <20:51:58> 19.H -6.388418 -1.819138 0.144380 <20:51:58> 20.C -3.699091 -2.555850 0.031073 <20:51:58> 21.N -4.034309 -1.144063 -0.020495 <20:51:58> 22.H -3.153526 -2.829043 -0.891407 <20:51:58> 23.H -3.052832 -2.738242 0.909907 <20:51:58> 24.C -3.039528 -0.218152 -0.122652 <20:51:58> 25.H -4.995821 -0.848214 0.019090 <20:51:58> 26.C -3.376554 1.257134 -0.177021 <20:51:58> 27.O -1.868860 -0.579883 -0.170993 <20:51:58> 28.C -4.882267 1.509037 -0.104092 <20:51:58> 29.H -2.987751 1.669812 -1.124654 <20:51:58> 30.H -2.886118 1.759460 0.675473 <20:51:58> 31.C -5.166146 2.994837 -0.163107 <20:51:58> 32.H -5.382149 1.012135 -0.956421 <20:51:58> 33.H -5.280286 1.101636 0.843943 <20:51:58> 34.N -6.475559 3.405152 -0.108812 <20:51:58> 35.O -4.253846 3.799233 -0.254604 <20:51:58> 36.C -6.839463 4.730314 -0.155989 <20:51:58> 37.H -7.200068 2.704765 -0.028406 <20:51:58> 38.C -6.141365 5.645102 -0.953338 <20:51:58> 39.C -7.928896 5.167674 0.604174 <20:51:58> 40.H -5.291832 5.312848 -1.550886 <20:51:58> 41.C -6.529994 6.979312 -0.985762 <20:51:58> 42.H -8.477554 4.456669 1.227753 <20:51:58> 43.C -8.318256 6.502272 0.570850 <20:51:58> 44.H -5.982885 7.691880 -1.608974 <20:51:58> 45.C -7.617214 7.405883 -0.223435 <20:51:58> 46.H -9.170002 6.840689 1.166079 <20:51:58> 47.S -8.114227 9.116217 -0.263278 <20:51:58> 48.N -8.510232 9.479659 -1.845823 <20:51:58> 49.O -7.012003 9.958167 0.172380 <20:51:58> 50.O -9.271737 9.311324 0.592532 <20:51:58> 51.H -8.440212 8.768301 -2.564996 <20:51:58> 52.H -8.821017 10.416028 -2.082594 <20:51:58> >>>> CORORT <20:51:58> >>>> CLSMAT <20:51:58> >>>> ORTHON <20:51:59> >>>> GENPT <20:52:01> Block Length= 128 <20:52:01> >>>> PTBAS <20:52:22> combining surface points... <20:52:22> combining surface points... <20:52:22> combining surface points... <20:52:22> >>>> CYCLE <20:52:25> CalcFitR12Fit <20:52:40> CalcFitCoeff <20:55:36> using orbital data from restart file <20:55:42> |Error| MaxErr Wt(A-DIIS) <20:55:42> 1 0.58742632 0.04090428 <20:57:16> 2 3.25207792 0.35106484 100.0 <20:58:51> 3 1.32943677 0.16386163 100.0 <21:00:25> 4 0.86510828 0.13720825 100.0 <21:01:59> 5 6.00315709 0.75147718 100.0 <21:03:34> 6 1.81238852 0.40902510 100.0 <21:05:08> 7 0.58983555 0.07820699 78.0 <21:06:42> 8 0.92081941 0.12900416 100.0 <21:08:17> 9 0.16325234 0.01389889 13.0 <21:09:51> 10 0.07806309 0.00704502 6.1 <21:11:25> 11 0.03795968 0.00421510 3.2 <21:13:00> 12 0.01084078 0.00085467 0.0 <21:14:34> 13 0.00503863 0.00041106 0.0 <21:16:08> 14 0.00190734 0.00022971 0.0 <21:17:42> 15 0.00105958 0.00010595 0.0 <21:19:17> 16 0.00079936 0.00006008 0.0 <21:20:51> 17 0.00068724 0.00005374 0.0 <21:22:25> 18 0.00059929 0.00004550 0.0 <21:23:59> 19 0.00032235 0.00003167 0.0 <21:25:33> 20 0.00019161 0.00002694 0.0 <21:27:08> 21 0.00012399 0.00000911 0.0 <21:28:42> 22 0.00009768 0.00000742 0.0 <21:30:16> 23 0.00006003 0.00000835 0.0 <21:31:50> 24 0.00005442 0.00000746 0.0 <21:33:25> 25 0.00001686 0.00000133 0.0 <21:34:59> 26 0.00001140 0.00000084 0.0 <21:36:33> 27 0.00000723 0.00000085 0.0 <21:36:36> SCF converged <21:38:07> 28 0.00000566 0.00000051 0.0 <21:39:36> >>>> TOTEN <21:43:58> >>>> POPAN <21:43:58> >>>> DEBYE <21:43:58> >>>> ENGRAD <21:44:53> CalcFitCoeff for gradient <22:00:32> CM5 charges were requested but they are missing in the ADF results file. <22:00:33> current energy -12.37704052 Hartree <22:00:33> energy change -0.04169209 0.00052000 F <22:00:33> constrained gradient max 0.12276153 0.00100000 F <22:00:33> constrained gradient rms 0.02527671 0.00066667 F <22:00:33> gradient max 0.12276153 <22:00:33> gradient rms 0.02527671 <22:00:33> cart. step max 0.21123062 0.01000000 F <22:00:33> cart. step rms 0.06469858 0.00666667 F <22:00:33> Iteration 4 <22:00:34> *** GO1_GOStep4 *** <22:00:34> WARNING: Unknown XC functional for DFT-D3! <22:00:34> PBE parameters will be used for parameters that are not set in input. <22:00:34> >>>> FRAGM <22:00:34> Coordinates <22:00:34> Atom X Y Z (Angstrom) <22:00:34> 1.H -10.433131 -5.375382 -1.501102 <22:00:34> 2.N -9.898871 -6.212158 -1.155956 <22:00:34> 3.H -10.052276 -7.000376 -1.772627 <22:00:34> 4.H -9.737471 -5.281595 -0.643523 <22:00:34> 5.H -10.198578 -5.170802 2.581526 <22:00:34> 6.N -9.704329 -6.040673 2.263832 <22:00:34> 7.H -9.610250 -5.174027 1.633987 <22:00:34> 8.H -9.782754 -6.764304 2.967471 <22:00:34> 9.Pt -8.701867 -6.374940 0.503869 <22:00:34> 10.N -7.167296 -5.135719 0.354970 <22:00:34> 11.C -5.911645 -5.622972 0.308159 <22:00:34> 12.C -7.348565 -3.803758 0.298564 <22:00:34> 13.H -5.782693 -6.700470 0.354742 <22:00:34> 14.C -4.811082 -4.801905 0.204815 <22:00:34> 15.H -8.363388 -3.420750 0.336732 <22:00:34> 16.C -6.289322 -2.921640 0.194613 <22:00:34> 17.H -3.817701 -5.238762 0.170460 <22:00:34> 18.C -4.986129 -3.417843 0.145818 <22:00:34> 19.H -6.499987 -1.860161 0.153169 <22:00:34> 20.C -3.760718 -2.550224 0.033394 <22:00:34> 21.N -4.054405 -1.127942 -0.019546 <22:00:34> 22.H -3.220930 -2.833764 -0.880840 <22:00:34> 23.H -3.119573 -2.745162 0.904330 <22:00:34> 24.C -3.041200 -0.235617 -0.121502 <22:00:34> 25.H -5.004847 -0.803269 0.019227 <22:00:34> 26.C -3.349528 1.247243 -0.176736 <22:00:34> 27.O -1.871629 -0.622183 -0.170339 <22:00:34> 28.C -4.842644 1.582432 -0.106760 <22:00:34> 29.H -2.939925 1.634352 -1.116977 <22:00:34> 30.H -2.836815 1.723233 0.667273 <22:00:34> 31.C -5.061233 3.082931 -0.171191 <22:00:34> 32.H -5.369113 1.115561 -0.951352 <22:00:34> 33.H -5.266339 1.204546 0.834529 <22:00:34> 34.N -6.362909 3.506665 -0.117674 <22:00:34> 35.O -4.125992 3.865212 -0.264059 <22:00:34> 36.C -6.758843 4.841550 -0.166343 <22:00:34> 37.H -7.084079 2.804331 -0.033360 <22:00:34> 38.C -6.084289 5.778216 -0.960101 <22:00:34> 39.C -7.862640 5.245926 0.592653 <22:00:34> 40.H -5.230413 5.473659 -1.552677 <22:00:34> 41.C -6.509943 7.098092 -0.988857 <22:00:34> 42.H -8.388422 4.520792 1.208824 <22:00:34> 43.C -8.291900 6.565615 0.562384 <22:00:34> 44.H -5.983722 7.822863 -1.604907 <22:00:34> 45.C -7.612120 7.487962 -0.227484 <22:00:34> 46.H -9.149466 6.876591 1.151623 <22:00:34> 47.S -8.155681 9.175097 -0.259770 <22:00:34> 48.N -8.530834 9.453077 -1.834577 <22:00:34> 49.O -7.073332 10.054569 0.155755 <22:00:34> 50.O -9.333770 9.332887 0.576546 <22:00:34> 51.H -8.425350 8.720926 -2.521336 <22:00:34> 52.H -8.868561 10.365470 -2.108772 <22:00:34> >>>> CORORT <22:00:34> >>>> CLSMAT <22:00:34> >>>> ORTHON <22:00:35> >>>> GENPT <22:00:36> Block Length= 128 <22:00:37> >>>> PTBAS <22:00:58> combining surface points... <22:00:58> combining surface points... <22:00:58> combining surface points... <22:00:58> >>>> CYCLE <22:01:01> CalcFitR12Fit <22:01:16> CalcFitCoeff <22:04:09> using orbital data from restart file <22:04:15> |Error| MaxErr Wt(A-DIIS) <22:04:15> 1 0.90945926 0.09105974 <22:05:48> 2 3.24619410 0.34899328 100.0 <22:07:20> 3 1.37353961 0.17514947 100.0 <22:08:52> 4 0.82991296 0.12869067 100.0 <22:10:25> 5 5.97155765 0.73347516 100.0 <22:11:59> 6 1.76043228 0.38937309 100.0 <22:13:32> 7 0.55211552 0.07428528 74.0 <22:15:04> 8 0.80468959 0.12010001 100.0 <22:16:37> 9 0.14889340 0.01259337 11.7 <22:18:10> 10 0.08315142 0.00859442 7.7 <22:19:43> 11 0.03332424 0.00290908 1.9 <22:21:16> 12 0.01079699 0.00081745 0.0 <22:22:48> 13 0.00376916 0.00038760 0.0 <22:24:21> 14 0.00146911 0.00020213 0.0 <22:25:54> 15 0.00057394 0.00007007 0.0 <22:27:27> 16 0.00019692 0.00001460 0.0 <22:29:00> 17 0.00010748 0.00000909 0.0 <22:30:32> 18 0.00002100 0.00000172 0.0 <22:32:05> 19 0.00001297 0.00000115 0.0 <22:33:38> 20 0.00001078 0.00000109 0.0 <22:35:11> 21 0.00000573 0.00000059 0.0 <22:35:14> SCF converged <22:36:43> 22 0.00000209 0.00000023 0.0 <22:38:10> >>>> TOTEN <22:42:27> >>>> POPAN <22:42:28> >>>> DEBYE <22:42:28> >>>> ENGRAD <22:43:22> CalcFitCoeff for gradient <22:58:49> CM5 charges were requested but they are missing in the ADF results file. <22:58:49> current energy -12.42636135 Hartree <22:58:49> energy change -0.04932083 0.00052000 F <22:58:49> constrained gradient max 0.08133685 0.00100000 F <22:58:49> constrained gradient rms 0.01790680 0.00066667 F <22:58:49> gradient max 0.08133685 <22:58:49> gradient rms 0.01790680 <22:58:49> cart. step max 0.21842917 0.01000000 F <22:58:49> cart. step rms 0.07516286 0.00666667 F <22:58:49> Iteration 5 <22:58:50> *** GO1_GOStep5 *** <22:58:50> WARNING: Unknown XC functional for DFT-D3! <22:58:50> PBE parameters will be used for parameters that are not set in input. <22:58:50> >>>> FRAGM <22:58:50> Coordinates <22:58:50> Atom X Y Z (Angstrom) <22:58:50> 1.H -10.535418 -5.308278 -1.662062 <22:58:50> 2.N -9.980954 -6.085890 -1.222543 <22:58:50> 3.H -10.098350 -6.876800 -1.842916 <22:58:50> 4.H -9.851739 -5.163384 -0.663608 <22:58:50> 5.H -10.208916 -5.176123 2.799955 <22:58:50> 6.N -9.724811 -5.981178 2.331261 <22:58:50> 7.H -9.687124 -5.101109 1.692667 <22:58:50> 8.H -9.748499 -6.737531 3.003222 <22:58:50> 9.Pt -8.787050 -6.232409 0.483455 <22:58:50> 10.N -7.218129 -5.034562 0.337739 <22:58:50> 11.C -5.984312 -5.572916 0.269877 <22:58:50> 12.C -7.368810 -3.700066 0.306363 <22:58:50> 13.H -5.904589 -6.651728 0.298753 <22:58:50> 14.C -4.863491 -4.781295 0.169516 <22:58:50> 15.H -8.370003 -3.296682 0.362228 <22:58:50> 16.C -6.278567 -2.856795 0.204099 <22:58:50> 17.H -3.890266 -5.251646 0.118521 <22:58:50> 18.C -4.992379 -3.389943 0.134046 <22:58:50> 19.H -6.465190 -1.793594 0.184278 <22:58:50> 20.C -3.737588 -2.566789 0.024050 <22:58:50> 21.N -3.979459 -1.134251 -0.011310 <22:58:50> 22.H -3.212891 -2.862802 -0.889859 <22:58:50> 23.H -3.097741 -2.801522 0.880646 <22:58:50> 24.C -2.949372 -0.269100 -0.108854 <22:58:50> 25.H -4.919152 -0.780857 0.033870 <22:58:50> 26.C -3.244605 1.217424 -0.157448 <22:58:50> 27.O -1.780903 -0.671552 -0.162562 <22:58:50> 28.C -4.728051 1.597204 -0.091169 <22:58:50> 29.H -2.816321 1.593216 -1.088632 <22:58:50> 30.H -2.714500 1.674740 0.680290 <22:58:50> 31.C -4.923709 3.103315 -0.157065 <22:58:50> 32.H -5.269788 1.149843 -0.931360 <22:58:50> 33.H -5.171745 1.234693 0.842079 <22:58:50> 34.N -6.228860 3.508705 -0.106893 <22:58:50> 35.O -3.985636 3.886120 -0.246440 <22:58:50> 36.C -6.682456 4.836279 -0.155567 <22:58:50> 37.H -6.931868 2.789238 -0.017079 <22:58:50> 38.C -6.039181 5.809281 -0.931118 <22:58:50> 39.C -7.822054 5.177677 0.580196 <22:58:50> 40.H -5.161601 5.552091 -1.504231 <22:58:50> 41.C -6.532377 7.104505 -0.963920 <22:58:50> 42.H -8.319258 4.424289 1.179833 <22:58:50> 43.C -8.323546 6.470624 0.540558 <22:58:50> 44.H -6.030379 7.855428 -1.562204 <22:58:50> 45.C -7.674573 7.429938 -0.231020 <22:58:50> 46.H -9.208022 6.732291 1.106165 <22:58:50> 47.S -8.303698 9.081055 -0.271219 <22:58:50> 48.N -8.640320 9.288783 -1.845343 <22:58:50> 49.O -7.271744 10.018269 0.146234 <22:58:50> 50.O -9.513873 9.169538 0.527837 <22:58:50> 51.H -8.478974 8.545321 -2.505171 <22:58:50> 52.H -9.015659 10.172334 -2.157248 <22:58:50> >>>> CORORT <22:58:50> >>>> CLSMAT <22:58:51> >>>> ORTHON <22:58:51> >>>> GENPT <22:58:53> Block Length= 128 <22:58:53> >>>> PTBAS <22:59:15> combining surface points... <22:59:15> combining surface points... <22:59:15> combining surface points... <22:59:15> >>>> CYCLE <22:59:17> CalcFitR12Fit <22:59:32> CalcFitCoeff <23:02:27> using orbital data from restart file <23:02:33> |Error| MaxErr Wt(A-DIIS) <23:02:33> 1 0.92114506 0.10773368 <23:04:07> 2 3.37343639 0.31787354 100.0 <23:05:41> 3 1.33940644 0.17072024 100.0 <23:07:15> 4 1.43926236 0.30411224 100.0 <23:08:49> 5 5.83124963 0.83429955 100.0 <23:10:23> 6 1.84464557 0.50983536 100.0 <23:11:57> 7 0.97133926 0.11102441 100.0 <23:13:31> 8 1.21705885 0.13868033 100.0 <23:15:05> 9 0.53023608 0.06315210 62.8 <23:16:39> 10 0.61016096 0.07092734 100.0 <23:18:12> 11 0.10374821 0.01049644 9.6 <23:19:46> 12 0.03221140 0.00309720 2.1 <23:21:20> 13 0.00887245 0.00088647 0.0 <23:22:54> 14 0.00342066 0.00035176 0.0 <23:24:27> 15 0.00062229 0.00006511 0.0 <23:26:01> 16 0.00034696 0.00003188 0.0 <23:27:34> 17 0.00011387 0.00001425 0.0 <23:29:08> 18 0.00005644 0.00000483 0.0 <23:30:41> 19 0.00003173 0.00000338 0.0 <23:32:15> 20 0.00001414 0.00000145 0.0 <23:33:48> 21 0.00001029 0.00000118 0.0 <23:35:22> 22 0.00000430 0.00000048 0.0 <23:35:25> SCF converged <23:36:55> 23 0.00000192 0.00000023 0.0 <23:38:23> >>>> TOTEN <23:42:44> >>>> POPAN <23:42:44> >>>> DEBYE <23:42:44> >>>> ENGRAD <23:43:38> CalcFitCoeff for gradient <23:59:12> CM5 charges were requested but they are missing in the ADF results file. <23:59:12> current energy -12.46144491 Hartree <23:59:12> energy change -0.03508356 0.00052000 F <23:59:12> constrained gradient max 0.06356031 0.00100000 F <23:59:12> constrained gradient rms 0.01513716 0.00066667 F <23:59:12> gradient max 0.06356031 <23:59:12> gradient rms 0.01513716 <23:59:12> cart. step max 0.22353584 0.01000000 F <23:59:12> cart. step rms 0.05433756 0.00666667 F <23:59:12> Iteration 6 <23:59:13> *** GO1_GOStep6 *** <23:59:13> WARNING: Unknown XC functional for DFT-D3! <23:59:13> PBE parameters will be used for parameters that are not set in input. <23:59:13> >>>> FRAGM <23:59:13> Coordinates <23:59:13> Atom X Y Z (Angstrom) <23:59:13> 1.H -10.579285 -5.346561 -1.812368 <23:59:13> 2.N -10.024981 -6.046358 -1.263629 <23:59:13> 3.H -10.084576 -6.862254 -1.860983 <23:59:13> 4.H -9.962430 -5.135653 -0.666841 <23:59:13> 5.H -10.160378 -5.242628 3.023491 <23:59:13> 6.N -9.712359 -5.968018 2.416744 <23:59:13> 7.H -9.763820 -5.092274 1.764634 <23:59:13> 8.H -9.670788 -6.766526 3.038706 <23:59:13> 9.Pt -8.854270 -6.142532 0.493283 <23:59:13> 10.N -7.264581 -4.972730 0.338146 <23:59:13> 11.C -6.043424 -5.537976 0.256368 <23:59:13> 12.C -7.402222 -3.638867 0.314676 <23:59:13> 13.H -5.991412 -6.616348 0.279915 <23:59:13> 14.C -4.914303 -4.759110 0.150582 <23:59:13> 15.H -8.397807 -3.230063 0.381316 <23:59:13> 16.C -6.297229 -2.815718 0.206756 <23:59:13> 17.H -3.951912 -5.246375 0.089608 <23:59:13> 18.C -5.019562 -3.364594 0.123480 <23:59:13> 19.H -6.479224 -1.753260 0.194421 <23:59:13> 20.C -3.748154 -2.567876 0.009961 <23:59:13> 21.N -3.943144 -1.128717 -0.022328 <23:59:13> 22.H -3.229898 -2.879635 -0.899940 <23:59:13> 23.H -3.109386 -2.826574 0.857776 <23:59:13> 24.C -2.898844 -0.284876 -0.112574 <23:59:13> 25.H -4.872372 -0.750457 0.022295 <23:59:13> 26.C -3.179770 1.205713 -0.153441 <23:59:13> 27.O -1.734619 -0.702592 -0.160337 <23:59:13> 28.C -4.653352 1.618678 -0.103087 <23:59:13> 29.H -2.726991 1.578360 -1.071970 <23:59:13> 30.H -2.642727 1.646547 0.686215 <23:59:13> 31.C -4.832816 3.128911 -0.160722 <23:59:13> 32.H -5.197772 1.191433 -0.949471 <23:59:13> 33.H -5.122782 1.262269 0.817425 <23:59:13> 34.N -6.139975 3.522748 -0.129365 <23:59:13> 35.O -3.893486 3.912755 -0.227673 <23:59:13> 36.C -6.631616 4.842394 -0.167750 <23:59:13> 37.H -6.832850 2.791967 -0.054671 <23:59:13> 38.C -5.987651 5.853926 -0.890510 <23:59:13> 39.C -7.814879 5.124268 0.522042 <23:59:13> 40.H -5.077581 5.640696 -1.426811 <23:59:13> 41.C -6.524978 7.131463 -0.915202 <23:59:13> 42.H -8.308959 4.339867 1.079971 <23:59:13> 43.C -8.362681 6.397923 0.486178 <23:59:13> 44.H -6.021867 7.912337 -1.469261 <23:59:13> 45.C -7.712642 7.397699 -0.231485 <23:59:13> 46.H -9.280553 6.614053 1.012814 <23:59:13> 47.S -8.394606 9.025101 -0.260795 <23:59:13> 48.N -8.662851 9.235167 -1.837905 <23:59:13> 49.O -7.408634 9.986432 0.208425 <23:59:13> 50.O -9.642267 9.049550 0.482144 <23:59:13> 51.H -8.454276 8.502738 -2.495092 <23:59:13> 52.H -9.048964 10.108975 -2.162263 <23:59:13> >>>> CORORT <23:59:13> >>>> CLSMAT <23:59:13> >>>> ORTHON <23:59:14> >>>> GENPT <23:59:15> Block Length= 128 <23:59:16> >>>> PTBAS <23:59:37> combining surface points... <23:59:37> combining surface points... <23:59:37> combining surface points... <23:59:37> >>>> CYCLE <23:59:39> CalcFitR12Fit <23:59:54> CalcFitCoeff <00:02:49> using orbital data from restart file <00:02:55> |Error| MaxErr Wt(A-DIIS) <00:02:55> 1 0.99327762 0.13194810 <00:04:29> 2 3.33655126 0.32217787 100.0 <00:06:02> 3 1.36165260 0.17273630 100.0 <00:07:36> 4 1.43637760 0.29989706 100.0 <00:09:10> 5 5.87626526 0.84495086 100.0 <00:10:44> 6 1.88455909 0.52208355 100.0 <00:12:18> 7 0.98887693 0.11848068 100.0 <00:13:51> 8 1.27479280 0.14926006 100.0 <00:15:25> 9 0.53379949 0.06046971 60.1 <00:16:58> 10 0.56610024 0.06271768 60.1 <00:18:32> 11 0.07830955 0.00653870 5.6 <00:20:05> 12 0.02268312 0.00239728 1.4 <00:21:39> 13 0.00975560 0.00093833 0.0 <00:23:13> 14 0.00418169 0.00044617 0.0 <00:24:46> 15 0.00088940 0.00007091 0.0 <00:26:20> 16 0.00050613 0.00006649 0.0 <00:27:53> 17 0.00023559 0.00002304 0.0 <00:29:27> 18 0.00005890 0.00000884 0.0 <00:31:00> 19 0.00005637 0.00000643 0.0 <00:32:34> 20 0.00001632 0.00000171 0.0 <00:34:07> 21 0.00000979 0.00000106 0.0 <00:35:40> 22 0.00000356 0.00000053 0.0 <00:35:44> SCF converged <00:37:14> 23 0.00000244 0.00000025 0.0 <00:38:41> >>>> TOTEN <00:43:01> >>>> POPAN <00:43:01> >>>> DEBYE <00:43:02> >>>> ENGRAD <00:43:56> CalcFitCoeff for gradient <00:59:28> CM5 charges were requested but they are missing in the ADF results file. <00:59:29> current energy -12.48743815 Hartree <00:59:29> energy change -0.02599324 0.00052000 F <00:59:29> constrained gradient max 0.07136018 0.00100000 F <00:59:29> constrained gradient rms 0.01441075 0.00066667 F <00:59:29> gradient max 0.07136018 <00:59:29> gradient rms 0.01441075 <00:59:29> cart. step max 0.22302237 0.01000000 F <00:59:29> cart. step rms 0.05365738 0.00666667 F <00:59:29> Iteration 7 <00:59:30> *** GO1_GOStep7 *** <00:59:30> WARNING: Unknown XC functional for DFT-D3! <00:59:30> PBE parameters will be used for parameters that are not set in input. <00:59:30> >>>> FRAGM <00:59:30> Coordinates <00:59:30> Atom X Y Z (Angstrom) <00:59:30> 1.H -10.601088 -5.428762 -1.937887 <00:59:30> 2.N -10.063795 -6.046173 -1.288548 <00:59:30> 3.H -10.051769 -6.886822 -1.855218 <00:59:30> 4.H -10.089075 -5.160878 -0.647835 <00:59:30> 5.H -10.023608 -5.359952 3.246513 <00:59:30> 6.N -9.650931 -5.997004 2.509275 <00:59:30> 7.H -9.829355 -5.139474 1.849840 <00:59:30> 8.H -9.521983 -6.836468 3.063073 <00:59:30> 9.Pt -8.910584 -6.086495 0.508346 <00:59:30> 10.N -7.311521 -4.932004 0.331903 <00:59:30> 11.C -6.099846 -5.513718 0.224983 <00:59:30> 12.C -7.443786 -3.598770 0.322783 <00:59:30> 13.H -6.066277 -6.591113 0.238345 <00:59:30> 14.C -4.968219 -4.740371 0.110191 <00:59:30> 15.H -8.435719 -3.190123 0.409861 <00:59:30> 16.C -6.330894 -2.786981 0.206685 <00:59:30> 17.H -4.013577 -5.237199 0.030989 <00:59:30> 18.C -5.059318 -3.343883 0.100470 <00:59:30> 19.H -6.512774 -1.725652 0.209716 <00:59:30> 20.C -3.777320 -2.565436 -0.016555 <00:59:30> 21.N -3.937049 -1.122611 -0.034695 <00:59:30> 22.H -3.267343 -2.883018 -0.927309 <00:59:30> 23.H -3.135247 -2.848772 0.818856 <00:59:30> 24.C -2.881109 -0.295633 -0.112148 <00:59:30> 25.H -4.857786 -0.725798 0.013851 <00:59:30> 26.C -3.148510 1.198779 -0.137287 <00:59:30> 27.O -1.720192 -0.726205 -0.158895 <00:59:30> 28.C -4.611173 1.643860 -0.101934 <00:59:30> 29.H -2.671220 1.573567 -1.040751 <00:59:30> 30.H -2.606696 1.619742 0.707630 <00:59:30> 31.C -4.768433 3.158448 -0.145269 <00:59:30> 32.H -5.156517 1.240833 -0.957618 <00:59:30> 33.H -5.107126 1.290247 0.803788 <00:59:30> 34.N -6.075132 3.550757 -0.138391 <00:59:30> 35.O -3.822300 3.936982 -0.183955 <00:59:30> 36.C -6.591645 4.865380 -0.170747 <00:59:30> 37.H -6.763886 2.814749 -0.080116 <00:59:30> 38.C -5.932350 5.909509 -0.830048 <00:59:30> 39.C -7.820661 5.098154 0.453869 <00:59:30> 40.H -4.988457 5.732558 -1.315801 <00:59:30> 41.C -6.500982 7.172758 -0.854656 <00:59:30> 42.H -8.323498 4.287912 0.962221 <00:59:30> 43.C -8.401314 6.356277 0.413058 <00:59:30> 44.H -5.985966 7.979202 -1.355744 <00:59:30> 45.C -7.735490 7.389355 -0.240175 <00:59:30> 46.H -9.353926 6.535438 0.886093 <00:59:30> 47.S -8.452637 8.998813 -0.268658 <00:59:30> 48.N -8.635965 9.222047 -1.849059 <00:59:30> 49.O -7.510790 9.971749 0.262831 <00:59:30> 50.O -9.739624 8.973132 0.403198 <00:59:30> 51.H -8.386788 8.499875 -2.502009 <00:59:30> 52.H -9.017248 10.092595 -2.186160 <00:59:30> >>>> CORORT <00:59:30> >>>> CLSMAT <00:59:30> >>>> ORTHON <00:59:31> >>>> GENPT <00:59:32> Block Length= 128 <00:59:33> >>>> PTBAS <00:59:53> combining surface points... <00:59:53> combining surface points... <00:59:53> combining surface points... <00:59:53> >>>> CYCLE <00:59:56> CalcFitR12Fit <01:00:11> CalcFitCoeff <01:03:06> using orbital data from restart file <01:03:12> |Error| MaxErr Wt(A-DIIS) <01:03:12> 1 0.87162880 0.13036139 <01:04:46> 2 3.31774784 0.32222631 100.0 <01:06:20> 3 1.39219096 0.17540009 100.0 <01:07:53> 4 1.43755470 0.29650812 100.0 <01:09:27> 5 5.92858722 0.85613348 100.0 <01:11:01> 6 1.92046393 0.53313678 100.0 <01:12:35> 7 1.01062199 0.12039838 100.0 <01:14:08> 8 1.33107864 0.15914308 100.0 <01:15:42> 9 0.52874279 0.05713101 56.7 <01:17:16> 10 0.53138590 0.05551458 55.1 <01:18:49> 11 0.08159186 0.00652132 5.6 <01:20:23> 12 0.02183603 0.00241118 1.4 <01:21:56> 13 0.00949297 0.00095942 0.0 <01:23:30> 14 0.00442489 0.00044724 0.0 <01:25:03> 15 0.00098961 0.00008247 0.0 <01:26:37> 16 0.00048199 0.00005719 0.0 <01:28:10> 17 0.00026939 0.00003117 0.0 <01:29:44> 18 0.00006760 0.00000934 0.0 <01:31:17> 19 0.00006825 0.00000744 0.0 <01:32:51> 20 0.00001638 0.00000168 0.0 <01:34:25> 21 0.00000887 0.00000091 0.0 <01:34:28> SCF converged <01:35:58> 22 0.00000365 0.00000048 0.0 <01:37:26> >>>> TOTEN <01:41:47> >>>> POPAN <01:41:47> >>>> DEBYE <01:41:47> >>>> ENGRAD <01:42:42> CalcFitCoeff for gradient <01:58:16> CM5 charges were requested but they are missing in the ADF results file. <01:58:16> current energy -12.51113201 Hartree <01:58:16> energy change -0.02369387 0.00052000 F <01:58:16> constrained gradient max 0.07553436 0.00100000 F <01:58:16> constrained gradient rms 0.01474074
MatthijsHak commented 5 months ago

Hi,

I do not see the whole file as you only printed a part of the ams.log file. A few things to consider with QM optimizations. You already chose a very large basis set and an expensive functional to use. It is often easier to start an initial optimization at a lower level of theory to quickly converge to a structure that is close to a minimum at the higher level of theory. You will then need less iterations at the higher level of theory to eventually converge. I normally start with a GFNxTB pre-optimization (not implemented in MetalDock) before I do any DFT calculations. However, with DFT the structure you provided converged within 63 GOsteps with the following settings:

[QM] engine = ADF basis_set = DZP functional_type = GGA functional = PBE dispersion = GRIMME3 BJDAMP solvent = water

You could increase the basis set to TZP and higher, but remember that that always comes at a cost. Also, our DFT calculations are used to determine the charges for the docking procedure, so I am not 100% sure if you require the highest level of theory for your study case. You can perform some tests, extracting the charges at different level of theories and seeing what the effect is (I would assume not so large). Hopefully this gives you some guidance for your problem.