From owner-chemistry@ccl.net Mon Jul 11 02:57:00 2022 From: "Grigoriy Zhurko reg_zhurko(_)chemcraftprog.com" To: CCL Subject: CCL: CCL CCL: Negative frequencies with C1 symmetry (Orca) Message-Id: <-54758-220711023353-19330-VoP6GyFL90BNUTMsL2JyWQ.@.server.ccl.net> X-Original-From: "Grigoriy Zhurko" Date: Mon, 11 Jul 2022 02:33:50 -0400 Sent to CCL by: "Grigoriy Zhurko" [reg_zhurko|-|chemcraftprog.com] > Imaginary modes under '-10 cm-1' if not many can be safely ignored. Can you provide a citation for this hint? > You > could try to get rid > of the imaginary mode by distorting the structure along the bond, angle or > dihedral which is > causing the imaginary mode. In my case this did not help; more precisely, any repeating of the optimization with another starting point can produce the frequencies without negative ones with some probability. So, if I only want to get rid of the imaginary frequencies, I can achieve that via repeating the optimization, but I suppose that such an approach looks like a kind of quackery. Again, is that correct that small frequencies are usually very anharmonical and thus they produce big errors in computing the entropy? > 'TightSCF TightOpt Grid7 Gridx9' seems to work for all of our systems > upto 200 atoms, producing > accurate results in good agreement with experimental observations. Currently I tried the combination of keywords !TightOpt DefGrid3 VeryTightSCF %geom ENFORCESTRICTCONVERGENCE True. One job with these keywords produced correct frequencies, however I am not sure it will be always so. And this job demanded much more CPU time, so even if it helps, I can't use these keywords with all my jobs. So, again the main question is not how to get rid of the imaginary frequencies, but to explain in the paper, why they are produced and why I can't compute the entropy with my jobs. If I am not mistaken, the vibrational entropy is computed as a sum of contributions by each vibrational mode. So, one more question is, is the following approach correct - omit the small modes when computing the entropy? Grigoriy, https://chemcraftprog.com From owner-chemistry@ccl.net Mon Jul 11 04:23:00 2022 From: "Neese, Frank neese**kofo.mpg.de" To: CCL Subject: CCL: CCL CCL: Negative frequencies with C1 symmetry (Orca) Message-Id: <-54759-220711042143-29092-c8d8l/Bo03H63g2eX8Wdmg]*[server.ccl.net> X-Original-From: "Neese, Frank" Content-Language: en-US Content-Type: multipart/signed; boundary="Apple-Mail=_D8326CE3-1A26-42F5-BA35-E4ADEC8013DE"; protocol="application/pkcs7-signature"; micalg=sha-256 Date: Mon, 11 Jul 2022 08:21:35 +0000 MIME-Version: 1.0 Sent to CCL by: "Neese, Frank" [neese:_:kofo.mpg.de] --Apple-Mail=_D8326CE3-1A26-42F5-BA35-E4ADEC8013DE Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 > In my case this did not help; more precisely, any repeating of the=20 > optimization with another starting point can produce the frequencies = without=20 > negative ones with some probability. So, if I only want to get rid of = the=20 > imaginary frequencies, I can achieve that via repeating the = optimization, but=20 > I suppose that such an approach looks like a kind of quackery. I am not sure what you mean by =E2=80=9Equackery=E2=80=9C? Any optimiser = brings the gradient to zero to find a stationary point. This stationary = point can be a minimum, maximum or a n'th order saddle point. What kind = of point was found is determined by analyzing the eigenvalue structure = of the Hessian. It is not a bug or misbehaviour of the optimiser to land = on a saddle point, especially, when you have loosely bound molecular = complexes as is the case for explicit solvation. It is absolutely proper = procedure to then search for a nearby minimum that eliminates the = negative frequencies.=20 However, it is not the point to repeat the optimisation from "some=E2=80=9C= other starting point and hope that it eliminates the negative = frequencies. Instead, what needs to be done is to displace the system = along the normal mode with the (or one of the) negative frequency(ies) = and then reoptimize.=20 In order to make this as easy as possibles we have provided a compound = script with ORCA 5.0 and later that does this automatically and = systematically. It is as easy to use as:=20 * int -1 1 C 0 0 0 0.00 0.0 0.0 F 1 0 0 1.60 0.0 0.0 H 1 2 0 1.09 90.0 0.0 H 1 3 2 1.09 120.0 90.0 H 1 4 3 1.09 120.0 180.0 F 1 2 4 1.60 180.0 180.0 * %compound "iterativeOptimization.cmp" That is your entire input!=20 The script should be slightly edited to provide your desired level of = theory and a cutoff frequency that you accept as reasonable. I will = provide it below. It should be straightforward to adapt.=20 >> 'TightSCF TightOpt Grid7 Gridx9' seems to work for all of our = systems >> upto 200 atoms, producing >> accurate results in good agreement with experimental observations. These keywords are deprecated with ORCA 5.0 and later (as explained = before) > Currently I tried the combination of keywords !TightOpt DefGrid3=20 > VeryTightSCF %geom ENFORCESTRICTCONVERGENCE True. That is fine and gives you a numerically very sound result.=20 Good luck!=20 IterativeOptimization.cmp: # Name: IterativeOptimization # # *************************************** DESCRIPTION = *********************************************** # iterative Optimization protocol to find structure with no negative # frequencies (e.g. real minima) # =20 # Step 1. Run an optimization and frequencies outside the loop # Step 2. Check the frequencies. If there are negative ones # use the hessian of the appropriate normal mode to adjust # the geometry # # *************************************** DETAILS = ************************************************ # MaxNTries : maximum number of tries to find a minimum # CutOff : CutOff frequency that is still acceptable (negative, in = cm**-1) # ****************************************** METHOD = ************************************************ # # # # Define variables Variable MaxNTries =3D 25; Variable CutOff =3D -10; Variable displacement =3D 0.6; Variable NNegative =3D 0; Variable freqs[]; Variable modes[]; Variable NFreq; Variable limit; Variable done; Variable FinalEnergy;=20 # =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # Start a for loop over number of tries # =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D For itry =46rom 1 To maxNTries Do # ---------------------------------- # Run a geometry optimization # ---------------------------------- New_Step ! tightopt freq verytightscf nopop def2-TZVP xyzfile Step_End# Name: IterativeOptimization # # *************************************** DESCRIPTION = *********************************************** # iterative Optimization protocol to find structure with no negative # frequencies (e.g. real minima) # =20 # Step 1. Run an optimization and frequencies outside the loop # Step 2. Check the frequencies. If there are negative ones # use the hessian of the appropriate normal mode to adjust # the geometry # # *************************************** DETAILS = ************************************************ # MaxNTries : maximum number of tries to find a minimum # CutOff : CutOff frequency that is still acceptable (negative, in = cm**-1) # ****************************************** METHOD = ************************************************ # # # # Define variables Variable MaxNTries =3D 25; Variable CutOff =3D -10; =20 Variable displacement =3D 0.6; Variable NNegative =3D 0; Variable freqs[]; Variable modes[]; Variable NFreq; Variable limit; Variable done; Variable FinalEnergy;=20 # =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # Start a for loop over number of tries # =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D For itry =46rom 1 To maxNTries Do # ---------------------------------- # Run a geometry optimization # ---------------------------------- New_Step ! pbe tightopt freq verytightscf nopop DefGrid3 def2-TZVP def2/J = xyzfile Step_End Read freqs =3D THERMO_FREQS[itry]; Read modes =3D HESSIAN_MODES[itry]; Read NFreq =3D THERMO_NUM_OF_FREQS[itry]; limit =3D NFreq - 1; # ---------------------------------- # check for sufficeintly negative=20 # frequencies # ---------------------------------- NNegative =3D 0; For ifreq =46rom 0 to limit Do if ( freqs[ifreq] < CutOff ) then New_Geom =3D Displace itry modes ifreq displacement NNegative =3D NNegative + 1; endif endfor If ( NNegative =3D 0) then goto OptDone; endif endfor OptDone : if (NNegative>0) then done =3D 0; print("ERROR The program did not find a minimum. There are %9.3lf = negative frequencies after %9.3lf steps", NNegative,itry); #abort(); else done =3D 1; print("SUCCESS minimum found after %9.3lf steps", itry); endif > One job with these keywords=20 > produced correct frequencies, however I am not sure it will be always = so. And=20 > this job demanded much more CPU time, so even if it helps, I can't use = these=20 > keywords with all my jobs. So, again the main question is not how to = get rid=20 > of the imaginary frequencies, but to explain in the paper, why they = are=20 > produced and why I can't compute the entropy with my jobs. > If I am not mistaken, the vibrational entropy is computed as a sum of=20= > contributions by each vibrational mode. So, one more question is, is = the=20 > following approach correct - omit the small modes when computing the = entropy? >=20 > Grigoriy, > https://chemcraftprog.com >=20 >=20 >=20 > -=3D This is automatically added to each message by the mailing script = =3D- > To recover the email address of the author of the message, please = change>=20>=20>=20 > Subscribe/Unsubscribe:=20>=20>=20 > Job: http://www.ccl.net/jobs=20 > Conferences: = http://server.ccl.net/chemistry/announcements/conferences/ >=20>=20>=20>=20 >=20 = --------------------------------------------------------------------------= -- Prof. Dr. Frank Neese=20 Department of Molecular Theory and Spectroscopy Max-Planck Institut f=C3=BCr Kohlenforschung=20 Kaiser-Wilhelm-Platz 1 D-45470 M=C3=BClheim an der Ruhr=20 Germany E-Mail: Frank.Neese|a|kofo.mpg.de=20 = --------------------------------------------------------------------------= -- --Apple-Mail=_D8326CE3-1A26-42F5-BA35-E4ADEC8013DE Content-Disposition: attachment; filename="smime.p7s" Content-Type: application/pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 MIAGCSqGSIb3DQEHAqCAMIACAQExDzANBglghkgBZQMEAgEFADCABgkqhkiG9w0BBwEAAKCCEH4w ggUSMIID+qADAgECAgkA4wvV+K8l2YEwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNVBAYTAkRFMSsw KQYDVQQKDCJULVN5c3RlbXMgRW50ZXJwcmlzZSBTZXJ2aWNlcyBHbWJIMR8wHQYDVQQLDBZULVN5 c3RlbXMgVHJ1c3QgQ2VudGVyMSUwIwYDVQQDDBxULVRlbGVTZWMgR2xvYmFsUm9vdCBDbGFzcyAy MB4XDTE2MDIyMjEzMzgyMloXDTMxMDIyMjIzNTk1OVowgZUxCzAJBgNVBAYTAkRFMUUwQwYDVQQK EzxWZXJlaW4genVyIEZvZXJkZXJ1bmcgZWluZXMgRGV1dHNjaGVuIEZvcnNjaHVuZ3NuZXR6ZXMg ZS4gVi4xEDAOBgNVBAsTB0RGTi1QS0kxLTArBgNVBAMTJERGTi1WZXJlaW4gQ2VydGlmaWNhdGlv biBBdXRob3JpdHkgMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMtg1/9moUHN0vqH l4pzq5lN6mc5WqFggEcVToyVsuXPztNXS43O+FZsFVV2B+pG/cgDRWM+cNSrVICxI5y+NyipCf8F XRgPxJiZN7Mg9mZ4F4fCnQ7MSjLnFp2uDo0peQcAIFTcFV9Kltd4tjTTwXS1nem/wHdN6r1ZB+Ba L2w8pQDcNb1lDY9/Mm3yWmpLYgHurDg0WUU2SQXaeMpqbVvAgWsRzNI8qIv4cRrKO+KA3Ra0Z3qL NupOkSk9s1FcragMvp0049ENF4N1xDkesJQLEvHVaY4l9Lg9K7/AjsMeO6W/VRCrKq4Xl14zzsjz 9AkH4wKGMUZrAcUQDBHHWekCAwEAAaOCAXQwggFwMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU k+PYMiba1fFKpZFK4OpL4qIMz+EwHwYDVR0jBBgwFoAUv1kgNgB5oKAia4zV8mHSuCzLgkowEgYD VR0TAQH/BAgwBgEB/wIBAjAzBgNVHSAELDAqMA8GDSsGAQQBga0hgiwBAQQwDQYLKwYBBAGBrSGC LB4wCAYGZ4EMAQICMEwGA1UdHwRFMEMwQaA/oD2GO2h0dHA6Ly9wa2kwMzM2LnRlbGVzZWMuZGUv cmwvVGVsZVNlY19HbG9iYWxSb290X0NsYXNzXzIuY3JsMIGGBggrBgEFBQcBAQR6MHgwLAYIKwYB BQUHMAGGIGh0dHA6Ly9vY3NwMDMzNi50ZWxlc2VjLmRlL29jc3ByMEgGCCsGAQUFBzAChjxodHRw Oi8vcGtpMDMzNi50ZWxlc2VjLmRlL2NydC9UZWxlU2VjX0dsb2JhbFJvb3RfQ2xhc3NfMi5jZXIw DQYJKoZIhvcNAQELBQADggEBAIcL/z4Cm2XIVi3WO5qYi3FP2ropqiH5Ri71sqQPrhE4eTizDnS6 dl2e6BiClmLbTDPo3flq3zK9LExHYFV/53RrtCyD2HlrtrdNUAtmB7Xts5et6u5/MOaZ/SLick0+ hFvu+c+Z6n/XUjkurJgARH5pO7917tALOxrN5fcPImxHhPalR6D90Bo0fa3SPXez7vTXTf/D6OWS T1k+kEcQSrCFWMBvf/iu7QhCnh7U3xQuTY+8npTD5+32GPg8SecmqKc22CzeIs2LgtjZeOJVEqM7 h0S2EQvVDFKvaYwPBt/QolOLV5h7z/0HJPT8vcP9SpIClxvyt7bPZYoaorVyGTkwggWNMIIEdaAD AgECAgwcOtRQhH7u81j4jncwDQYJKoZIhvcNAQELBQAwgZUxCzAJBgNVBAYTAkRFMUUwQwYDVQQK EzxWZXJlaW4genVyIEZvZXJkZXJ1bmcgZWluZXMgRGV1dHNjaGVuIEZvcnNjaHVuZ3NuZXR6ZXMg ZS4gVi4xEDAOBgNVBAsTB0RGTi1QS0kxLTArBgNVBAMTJERGTi1WZXJlaW4gQ2VydGlmaWNhdGlv biBBdXRob3JpdHkgMjAeFw0xNjExMDMxNTI0NDhaFw0zMTAyMjIyMzU5NTlaMGoxCzAJBgNVBAYT AkRFMQ8wDQYDVQQIDAZCYXllcm4xETAPBgNVBAcMCE11ZW5jaGVuMSAwHgYDVQQKDBdNYXgtUGxh bmNrLUdlc2VsbHNjaGFmdDEVMBMGA1UEAwwMTVBHIENBIC0gRzAyMIIBIjANBgkqhkiG9w0BAQEF AAOCAQ8AMIIBCgKCAQEAnhx459Lh4WqgOs/Md04XxU2yFtfM15ZuJV0PZP7BmqSJKLLPyqmOrADf NdJ5PIGBto2JBhtRRBHdG0GROOvTRHjzOga95WOTeura79T21FWwwAwa29OFnD3ZplQs6HgdwQrZ WNi1WHNJxn/4mA19rNEBUc5urSIpZPvZi5XmlF3v3JHOlx3KWV7mUteB4pwEEfGTg4npPAJbp2o7 arxQdoIq+Pu2OsvqhD7Rk4QeaX+EM1QS4lqd1otW4hE70h/ODPy1xffgbZiuotWQLC6nIwa65Qv6 byqlIX0qZuu99Vsu+r3sWYsL5SBkgecNI7fMJ5tfHrjoxfrKl/ErTAt8GQIDAQABo4ICBTCCAgEw EgYDVR0TAQH/BAgwBgEB/wIBATAOBgNVHQ8BAf8EBAMCAQYwKQYDVR0gBCIwIDANBgsrBgEEAYGt IYIsHjAPBg0rBgEEAYGtIYIsAQEEMB0GA1UdDgQWBBTEiKUH7rh7qgwTv9opdGNSG0lwFjAfBgNV HSMEGDAWgBST49gyJtrV8UqlkUrg6kviogzP4TCBjwYDVR0fBIGHMIGEMECgPqA8hjpodHRwOi8v Y2RwMS5wY2EuZGZuLmRlL2dsb2JhbC1yb290LWcyLWNhL3B1Yi9jcmwvY2FjcmwuY3JsMECgPqA8 hjpodHRwOi8vY2RwMi5wY2EuZGZuLmRlL2dsb2JhbC1yb290LWcyLWNhL3B1Yi9jcmwvY2Fjcmwu Y3JsMIHdBggrBgEFBQcBAQSB0DCBzTAzBggrBgEFBQcwAYYnaHR0cDovL29jc3AucGNhLmRmbi5k ZS9PQ1NQLVNlcnZlci9PQ1NQMEoGCCsGAQUFBzAChj5odHRwOi8vY2RwMS5wY2EuZGZuLmRlL2ds b2JhbC1yb290LWcyLWNhL3B1Yi9jYWNlcnQvY2FjZXJ0LmNydDBKBggrBgEFBQcwAoY+aHR0cDov L2NkcDIucGNhLmRmbi5kZS9nbG9iYWwtcm9vdC1nMi1jYS9wdWIvY2FjZXJ0L2NhY2VydC5jcnQw DQYJKoZIhvcNAQELBQADggEBABLpeD5FygzqOjj+/lAOy20UQOGWlx0RMuPcI4nuyFT8SGmK9lD7 QCg/HoaJlfU/r78ex+SEide326evlFAoJXIFjVyzNltDhpMKrPIDuh2N12zyn1EtagqPL6hu4pVR zcBpl/F2HCvtmMx5K4WN1L1fmHWLcSapdhXLvAZ9RG/B3rqyULLSNN8xHXYXpmtvG0VGJAndZ+lj +BH7uvd3nHWnXEHC2q7iQlDUqg0awIqWJgdLlx1Q8Dg/sodv0m+LN0kOzGvVDRCmowBdWGhhusD+ duKV66pBl+qhC+4LipariWaMqK5ppMQROATjYeNRvwI+nDcEXr2vDaKmdbxgDVwwggXTMIIEu6AD AgECAgwj+ACpryvOlNX8QjAwDQYJKoZIhvcNAQELBQAwajELMAkGA1UEBhMCREUxDzANBgNVBAgM BkJheWVybjERMA8GA1UEBwwITXVlbmNoZW4xIDAeBgNVBAoMF01heC1QbGFuY2stR2VzZWxsc2No YWZ0MRUwEwYDVQQDDAxNUEcgQ0EgLSBHMDIwHhcNMjAxMjE1MDkzNDE3WhcNMjMxMjE1MDkzNDE3 WjCBtTELMAkGA1UEBhMCREUxHDAaBgNVBAgME05vcmRyaGVpbi1XZXN0ZmFsZW4xHTAbBgNVBAcM FE11ZWxoZWltIGFuIGRlciBSdWhyMSAwHgYDVQQKDBdNYXgtUGxhbmNrLUdlc2VsbHNjaGFmdDEx MC8GA1UECwwoTWF4LVBsYW5jay1JbnN0aXR1dCBmdWVyIEtvaGxlbmZvcnNjaHVuZzEUMBIGA1UE AwwLRnJhbmsgTmVlc2UwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxTh2YDDwvcewO lk5b8w32wVnWS2+rHYJWjXA0UZU9ydMP5p72/hYZd9ksHR96f1tRy81hHXdJkQUdW/90AKhuSh9G 9EMavzq/rkpQpNk4oH56+PZRm1Yf2PkMveKIlmEa0ty/aOjSnQbrcG2J+9g3htUDwMgM7PhOEHWz SelxAn+TPOET3KxQNxjoaVJKmO+HbeOhdq7KQteceU1OUPExbuOsiT0VahTDFTDu3pptQeL4iVKI fqwGFMfkl2KblQmqPrPnChugBG2PABzs/a1OtqW79A+lNhOPUL6VqDBhZf/6XDln4VTqE2C65Api ujKAbzanbIvJsKO+3zqF70/dAgMBAAGjggIrMIICJzAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIF 4DAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwQwHQYDVR0OBBYEFL7AlafnmXHbgtIagQ0x wxy3JC64MB8GA1UdIwQYMBaAFMSIpQfuuHuqDBO/2il0Y1IbSXAWMBwGA1UdEQQVMBOBEW5lZXNl QGtvZm8ubXBnLmRlMH0GA1UdHwR2MHQwOKA2oDSGMmh0dHA6Ly9jZHAxLnBjYS5kZm4uZGUvbXBn LWcyLWNhL3B1Yi9jcmwvY2FjcmwuY3JsMDigNqA0hjJodHRwOi8vY2RwMi5wY2EuZGZuLmRlL21w Zy1nMi1jYS9wdWIvY3JsL2NhY3JsLmNybDCBzQYIKwYBBQUHAQEEgcAwgb0wMwYIKwYBBQUHMAGG J2h0dHA6Ly9vY3NwLnBjYS5kZm4uZGUvT0NTUC1TZXJ2ZXIvT0NTUDBCBggrBgEFBQcwAoY2aHR0 cDovL2NkcDEucGNhLmRmbi5kZS9tcGctZzItY2EvcHViL2NhY2VydC9jYWNlcnQuY3J0MEIGCCsG AQUFBzAChjZodHRwOi8vY2RwMi5wY2EuZGZuLmRlL21wZy1nMi1jYS9wdWIvY2FjZXJ0L2NhY2Vy dC5jcnQwPgYDVR0gBDcwNTAPBg0rBgEEAYGtIYIsAQEEMBAGDisGAQQBga0hgiwBAQQIMBAGDisG AQQBga0hgiwCAQQIMA0GCSqGSIb3DQEBCwUAA4IBAQAbLSDAaMfkjnRve01I0O5XrYFZ17AJg5pv TY3jF21fchPEmEzAmire69se/D8cALRmKIhSuUfuucIh3wZ2q/Qk3kZOOOcQcs+Kdl8/X1nGjZTY 3SIO+ud0k/4ayWyBgZpmhLAzYUvmSWXz2DcrAdDaxFeoh9Sc7aYtRa4iqYAgJogQH4hbeTMakWUC 8YGAUP8eiaTDAMfc8M9gRrbpLgRFZgr9oM8koz5Hm0yY9RaL3+rkV2NQ4w3lc1wg/xYBJgVrNMXW GuRIkFaUs7joSC1hzBECc1tJvLifakS7OHw7eD9H8ZY4hrLJRWylLYJuCIyGDMvQil0I2E9wAjLu rxNFMYIDLDCCAygCAQEwejBqMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQH DAhNdWVuY2hlbjEgMB4GA1UECgwXTWF4LVBsYW5jay1HZXNlbGxzY2hhZnQxFTATBgNVBAMMDE1Q RyBDQSAtIEcwMgIMI/gAqa8rzpTV/EIwMA0GCWCGSAFlAwQCAQUAoIIBgzAYBgkqhkiG9w0BCQMx CwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0yMjA3MTEwODIxMzVaMC8GCSqGSIb3DQEJBDEi BCAa+t/Gb6Hdz9HgwuyXl4SEu6kFfocnvFOCo0tveUIBcjCBiQYJKwYBBAGCNxAEMXwwejBqMQsw CQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEgMB4GA1UECgwX TWF4LVBsYW5jay1HZXNlbGxzY2hhZnQxFTATBgNVBAMMDE1QRyBDQSAtIEcwMgIMI/gAqa8rzpTV /EIwMIGLBgsqhkiG9w0BCRACCzF8oHowajELMAkGA1UEBhMCREUxDzANBgNVBAgMBkJheWVybjER MA8GA1UEBwwITXVlbmNoZW4xIDAeBgNVBAoMF01heC1QbGFuY2stR2VzZWxsc2NoYWZ0MRUwEwYD VQQDDAxNUEcgQ0EgLSBHMDICDCP4AKmvK86U1fxCMDANBgkqhkiG9w0BAQsFAASCAQBslJ6mGncR GmcyAeLVYTHXBRvoZuMxvuPKkLdn5CsAx90R3d5l/iOB5zICGUUWWIqsk61bgLaLMfanJCzKb53+ 33J8yBMzba/roWTjTNDd5HVFnF1Aso2+SFFTQKdISJkmFvpTjaClBO5dAwBp7CO2m6e1kCOhD2mV /cDsqv4XPjausbKJr+cPMbeC8h9GZx3cZnJ70EywzROKAEgd+4onaSGcCz9my5ORQ301MDmWJibF bDrkQLZ2WLGMbuASrd4hIqiTx+/BwC7sBheT2YdQ14En85xn9sPgB2xlP17ZnXWTIDWq33sojEFT QDyRwqKglGCmodWu0bn1gMjmPosXAAAAAAAA --Apple-Mail=_D8326CE3-1A26-42F5-BA35-E4ADEC8013DE-- From owner-chemistry@ccl.net Mon Jul 11 04:57:01 2022 From: "Neese, Frank neese+/-kofo.mpg.de" To: CCL Subject: CCL: Negative frequencies with C1 symmetry (Orca) Message-Id: <-54760-220711042639-30644-NObekvkw8PtvcC2CnVWvvw..server.ccl.net> X-Original-From: "Neese, Frank" Content-Language: en-US Content-Type: multipart/signed; boundary="Apple-Mail=_E4700791-9580-48C8-B1EB-3A02142020AA"; protocol="application/pkcs7-signature"; micalg=sha-256 Date: Mon, 11 Jul 2022 08:26:31 +0000 MIME-Version: 1.0 Sent to CCL by: "Neese, Frank" [neese-.-kofo.mpg.de] --Apple-Mail=_E4700791-9580-48C8-B1EB-3A02142020AA Content-Type: multipart/alternative; boundary="Apple-Mail=_00210577-E6E7-425E-B5B7-8FD4D627CE3A" --Apple-Mail=_00210577-E6E7-425E-B5B7-8FD4D627CE3A Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 >=20 > I was getting Negative frequencies whenever I used more than one node = in the calculations.=20 > One of the ORCA users told me that the issue with the appearance of = the Negative frequencies came from using more than one node. Of course, = those frequencies disappeared right after I used one node... hope that's = your problem. >=20 If that is true, it must have been a temporary bug that has long been = fixed.=20 It is definitely not accurate information on the parallelization of = ORCA. =20 Everybody is encouraged to update to ORCA 5.0.3. which is the by far = most powerful of the program yet.=20 >=20 > Le dimanche 10 juillet 2022 =C3=A0 09:44:36 UTC+1, Neese, Frank = neese]![kofo.mpg.de a =C3=A9crit : >=20 >=20 > Just to briefly clarify >=20 >> TightSCF TightOpt Grid7 Gridx9' >=20 > Is ORCA pre 5.0. with 5.0 these old grids are gone and the new grids = are much more accurate and don=E2=80=98t need bumping up.=20 >=20 > The OP has tried these things and the negative frequencies remained, = meaning that they are not numerical noise. The OP was advised to = displace the molecule along the respective real modes. It was also = pointed out to him that there is a compound script that comes with ORCA = 5.0 and later that automatically displaces the molecule along any = negative frequency mode until all negative frequencies are gone.=20 >=20 > That is the best advise I am able to give.=20 >=20 > Sent from my iPad >=20 >> On 10. Jul 2022, at 07:56, Sachin Ramesh sachinadityaramesh() = gmail.com wrote: >>=20 >> =EF=BB=BF >> Hi, >>=20 >> Imaginary modes under '-10 cm-1' if not many can be safely = ignored. You could try to get rid=20 >> of the imaginary mode by distorting the structure along the bond, = angle or dihedral which is=20 >> causing the imaginary mode.=20 >>=20 >> I should add that imaginary modes are tricky to get rid of when = the solvent correction is used.=20 >> The optimization could be done using solvent correction and frequency = can be computed in gas phase.=20 >>=20 >> 'TightSCF TightOpt Grid7 Gridx9' seems to work for all of our = systems upto 200 atoms, producing=20 >> accurate results in good agreement with experimental observations. =20= >>=20 >> Hope this helps=20 >>=20 >> with best=20 >> - Sachin=20 >>=20 >> On Sat, Jul 9, 2022 at 7:32 PM Grigoriy Zhurko = reg_zhurko.:.chemcraftprog.com = > wrote: >>=20 >> Sent to CCL by: "Grigoriy Zhurko" [reg_zhurko()chemcraftprog.com = ] >> Hello, >> I compute some molecules with Orca 5.0.3, and the computation = sometimes=20 >> produces small negative frequencies, despite the symmetry of the = molecules is=20 >> C1. If I repeat the computation with another starting point, with = some=20 >> probability all frequencies are positive. >> I found that this problem arises when two additions to the model are = added:=20 >> the solvent model (!CPCM(Water)) and additions of some explicit water=20= >> molecules to the whole model. I understand that these water molecules = produce=20 >> very small frequencies along the h-bonds, and these frequencies can = become=20 >> negative because of some problems with numerical integration. I tried = the=20 >> combination of options !DefGrid3, !TightOpt, !VeryTightSCF, and still=20= >> sometimes the negative frequencies are produced. Maybe I need to = further=20 >> increase the computational accuracy with options like = "!VeryTightOpt",=20 >> "!DefGrid9", UltraTightSCF? I suppose you understand what I mean; = currently=20 >> I didn't find the information in the manual, how to further decrease = the=20 >> optimization convergence threshold or increase the accuracy of DFT = grid.=20 >> Please suggest how to do that. >> In my work I can avoid using the frequencies since I need mainly the=20= >> energies; however I need to explain this somehow in the paper. I = suppose, it=20 >> is not good to compute the entropy of molecules with my keywords, = because=20 >> small frequencies produce big errors with vibrational entropy. So, = please=20 >> suggest me, what should I write in my papers, to explain that it is = not good=20 >> to compute the Gibbs energy of my molecules, but it is correct to = compute and=20 >> use the common energy. >>=20 >> Grigoriy Zhurko >> https://chemcraftprog.com >>=20 >>=20 >>=20 >> -=3D This is automatically added to each message by the mailing = script =3D-=20 >> E-mail to subscribers: CHEMISTRY**ccl.net = or use: >> <=3D"" a=3D""> >>=20 >> E-mail to administrators: = CHEMISTRY-REQUEST**ccl.ne= t or use >> <=3D"" a=3D""> >> =C2=A0 =C2=A0 =C2=A0 = <=3D"" a=3D""> >>=20 >> Before posting, check wait time at: = http://www.ccl.net = >>=20=20 >> Conferences: = http://server.ccl.net/chemistry/announcements/conferences/ = >>=20= >> <=3D"" a=3D""> >>=20 >> RTFI: = http://www.ccl.net/chemistry/aboutccl/ins= tructions/ >>=20 >>=20 = --------------------------------------------------------------------------= -- Prof. Dr. Frank Neese=20 Department of Molecular Theory and Spectroscopy Max-Planck Institut f=C3=BCr Kohlenforschung=20 Kaiser-Wilhelm-Platz 1 D-45470 M=C3=BClheim an der Ruhr=20 Germany E-Mail: Frank.Neese..kofo.mpg.de=20 = --------------------------------------------------------------------------= -- --Apple-Mail=_00210577-E6E7-425E-B5B7-8FD4D627CE3A Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=utf-8

= I was getting Negative frequencies  whenever I used more = than one node in the calculations. 
One of the ORCA = users told me that the issue  with the = appearance of the Negative frequencies  came from using more than = one node. Of course, those frequencies disappeared right after I used = one node... hope that's your problem.


If that is true, it must have been a = temporary bug that has long been fixed. 
It = is definitely not accurate information on the parallelization of ORCA. =  

Everybody is encouraged to = update to ORCA 5.0.3. which is the by far most powerful of the program = yet. 



=20
=20
Le dimanche 10 juillet 2022 =C3=A0 09:44:36 UTC+1, = Neese, Frank neese]![kofo.mpg.de <owner-chemistry|*|ccl.net> a =C3=A9crit :


Just to briefly clarify

TightSCF TightOpt Grid7 Gridx9'

Is ORCA pre 5.0. with 5.0 these old grids are gone and the new grids are = much more accurate and don=E2=80=98t need bumping up. 

The OP has tried these things and the negative = frequencies remained, meaning that they are not numerical noise. The OP = was advised to displace the molecule along the respective real modes. It = was also pointed out to him that there is a compound script that comes with ORCA 5.0 and later that automatically displaces the = molecule along any negative frequency mode until all negative = frequencies are gone. 

That is the best advise I am able to give. 

Sent from my iPad

On 10. Jul 2022, at 07:56, Sachin = Ramesh sachinadityaramesh() gmail.com <owner-chemistry|*|ccl.net> wrote:

=EF=BB=BF
Hi,

   Imaginary modes under '-10 cm-1' if not = many can be safely ignored. You could try to get rid 
of the imaginary mode by distorting the structure along = the bond, angle or dihedral which is 
causing the imaginary mode. 

   I should add that imaginary modes are = tricky to get rid of when the solvent correction is used. 
The optimization could be done using solvent correction = and frequency can be computed in gas phase. 

  'TightSCF TightOpt Grid7 Gridx9' seems to work = for all of our systems upto 200 atoms, producing 
accurate results in good agreement with experimental = observations.  

Hope this helps 

with best 
- Sachin 

On Sat, = Jul 9, 2022 at 7:32 PM Grigoriy Zhurko reg_zhurko.:.chemcraftprog.com <owner-chemistry**ccl.net> wrote:

Sent to CCL by: "Grigoriy  Zhurko" [reg_zhurko()chemcraftprog.com]
Hello,
I compute some molecules with Orca 5.0.3, and the computation sometimes =
produces small negative frequencies, despite the symmetry of the = molecules is
C1. If I repeat the computation with another starting point, with some =
probability all frequencies are positive.
I found that this problem arises when two additions to the model are = added:
the solvent model (!CPCM(Water)) and additions of some explicit water =
molecules to the whole model. I understand that these water molecules = produce
very small frequencies along the h-bonds, and these frequencies can = become
negative because of some problems with numerical integration. I tried = the
combination of options !DefGrid3, !TightOpt, !VeryTightSCF, and still =
sometimes the negative frequencies are produced. Maybe I need to further =
increase the computational accuracy with options like "!VeryTightOpt", =
"!DefGrid9", UltraTightSCF? I suppose you understand what I mean; = currently
I didn't find the information in the manual, how to further decrease the =
optimization convergence threshold or increase the accuracy of DFT grid. =
Please suggest how to do that.
In my work I can avoid using the frequencies since I need mainly the
energies; however I need to explain this somehow in the paper. I = suppose, it
is not good to compute the entropy of molecules with my keywords, = because
small frequencies produce big errors with vibrational entropy. So, = please
suggest me, what should I write in my papers, to explain that it is not = good
to compute the Gibbs energy of my molecules, but it is correct to = compute and
use the common energy.

Grigoriy Zhurko
https://chemcraftprog.com



-=3D This is automatically added to each message by the mailing script = =3D-=20
E-mail to subscribers: CHEMISTRY**ccl.net or use:
      <=3D"" a=3D"">

E-mail to administrators:
CHEMISTRY-REQUEST**ccl.net or use
      <=3D"" a=3D"">
     
<=3D"" a=3D"">

Before posting, check wait time at:
http://www.ccl.net

Job: http://www.ccl.net/jobs
Conferences: http://server.ccl.net/chemistry/announcements/conferences/

Search Messages: http://www.ccl.net/chemistry/searchccl/index.shtml
      <=3D"" a=3D"">

RTFI:
http://www.ccl.net/chemistry/aboutccl/instructions/


=20

=
---------------------------------------------------------------------= -------
Prof. Dr. Frank Neese 
Department of Molecular Theory = and Spectroscopy
Max-Planck = Institut f=C3=BCr Kohlenforschung 
Kaiser-Wilhelm-Platz 1
D-45470 M=C3=BClheim an der Ruhr 
Germany
---------------------------------------------------------------= -------------

= --Apple-Mail=_00210577-E6E7-425E-B5B7-8FD4D627CE3A-- --Apple-Mail=_E4700791-9580-48C8-B1EB-3A02142020AA Content-Disposition: attachment; filename="smime.p7s" Content-Type: application/pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 MIAGCSqGSIb3DQEHAqCAMIACAQExDzANBglghkgBZQMEAgEFADCABgkqhkiG9w0BBwEAAKCCEH4w ggUSMIID+qADAgECAgkA4wvV+K8l2YEwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNVBAYTAkRFMSsw KQYDVQQKDCJULVN5c3RlbXMgRW50ZXJwcmlzZSBTZXJ2aWNlcyBHbWJIMR8wHQYDVQQLDBZULVN5 c3RlbXMgVHJ1c3QgQ2VudGVyMSUwIwYDVQQDDBxULVRlbGVTZWMgR2xvYmFsUm9vdCBDbGFzcyAy MB4XDTE2MDIyMjEzMzgyMloXDTMxMDIyMjIzNTk1OVowgZUxCzAJBgNVBAYTAkRFMUUwQwYDVQQK EzxWZXJlaW4genVyIEZvZXJkZXJ1bmcgZWluZXMgRGV1dHNjaGVuIEZvcnNjaHVuZ3NuZXR6ZXMg ZS4gVi4xEDAOBgNVBAsTB0RGTi1QS0kxLTArBgNVBAMTJERGTi1WZXJlaW4gQ2VydGlmaWNhdGlv biBBdXRob3JpdHkgMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMtg1/9moUHN0vqH l4pzq5lN6mc5WqFggEcVToyVsuXPztNXS43O+FZsFVV2B+pG/cgDRWM+cNSrVICxI5y+NyipCf8F XRgPxJiZN7Mg9mZ4F4fCnQ7MSjLnFp2uDo0peQcAIFTcFV9Kltd4tjTTwXS1nem/wHdN6r1ZB+Ba L2w8pQDcNb1lDY9/Mm3yWmpLYgHurDg0WUU2SQXaeMpqbVvAgWsRzNI8qIv4cRrKO+KA3Ra0Z3qL NupOkSk9s1FcragMvp0049ENF4N1xDkesJQLEvHVaY4l9Lg9K7/AjsMeO6W/VRCrKq4Xl14zzsjz 9AkH4wKGMUZrAcUQDBHHWekCAwEAAaOCAXQwggFwMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU k+PYMiba1fFKpZFK4OpL4qIMz+EwHwYDVR0jBBgwFoAUv1kgNgB5oKAia4zV8mHSuCzLgkowEgYD VR0TAQH/BAgwBgEB/wIBAjAzBgNVHSAELDAqMA8GDSsGAQQBga0hgiwBAQQwDQYLKwYBBAGBrSGC LB4wCAYGZ4EMAQICMEwGA1UdHwRFMEMwQaA/oD2GO2h0dHA6Ly9wa2kwMzM2LnRlbGVzZWMuZGUv cmwvVGVsZVNlY19HbG9iYWxSb290X0NsYXNzXzIuY3JsMIGGBggrBgEFBQcBAQR6MHgwLAYIKwYB BQUHMAGGIGh0dHA6Ly9vY3NwMDMzNi50ZWxlc2VjLmRlL29jc3ByMEgGCCsGAQUFBzAChjxodHRw Oi8vcGtpMDMzNi50ZWxlc2VjLmRlL2NydC9UZWxlU2VjX0dsb2JhbFJvb3RfQ2xhc3NfMi5jZXIw DQYJKoZIhvcNAQELBQADggEBAIcL/z4Cm2XIVi3WO5qYi3FP2ropqiH5Ri71sqQPrhE4eTizDnS6 dl2e6BiClmLbTDPo3flq3zK9LExHYFV/53RrtCyD2HlrtrdNUAtmB7Xts5et6u5/MOaZ/SLick0+ hFvu+c+Z6n/XUjkurJgARH5pO7917tALOxrN5fcPImxHhPalR6D90Bo0fa3SPXez7vTXTf/D6OWS T1k+kEcQSrCFWMBvf/iu7QhCnh7U3xQuTY+8npTD5+32GPg8SecmqKc22CzeIs2LgtjZeOJVEqM7 h0S2EQvVDFKvaYwPBt/QolOLV5h7z/0HJPT8vcP9SpIClxvyt7bPZYoaorVyGTkwggWNMIIEdaAD AgECAgwcOtRQhH7u81j4jncwDQYJKoZIhvcNAQELBQAwgZUxCzAJBgNVBAYTAkRFMUUwQwYDVQQK EzxWZXJlaW4genVyIEZvZXJkZXJ1bmcgZWluZXMgRGV1dHNjaGVuIEZvcnNjaHVuZ3NuZXR6ZXMg ZS4gVi4xEDAOBgNVBAsTB0RGTi1QS0kxLTArBgNVBAMTJERGTi1WZXJlaW4gQ2VydGlmaWNhdGlv biBBdXRob3JpdHkgMjAeFw0xNjExMDMxNTI0NDhaFw0zMTAyMjIyMzU5NTlaMGoxCzAJBgNVBAYT AkRFMQ8wDQYDVQQIDAZCYXllcm4xETAPBgNVBAcMCE11ZW5jaGVuMSAwHgYDVQQKDBdNYXgtUGxh bmNrLUdlc2VsbHNjaGFmdDEVMBMGA1UEAwwMTVBHIENBIC0gRzAyMIIBIjANBgkqhkiG9w0BAQEF AAOCAQ8AMIIBCgKCAQEAnhx459Lh4WqgOs/Md04XxU2yFtfM15ZuJV0PZP7BmqSJKLLPyqmOrADf NdJ5PIGBto2JBhtRRBHdG0GROOvTRHjzOga95WOTeura79T21FWwwAwa29OFnD3ZplQs6HgdwQrZ WNi1WHNJxn/4mA19rNEBUc5urSIpZPvZi5XmlF3v3JHOlx3KWV7mUteB4pwEEfGTg4npPAJbp2o7 arxQdoIq+Pu2OsvqhD7Rk4QeaX+EM1QS4lqd1otW4hE70h/ODPy1xffgbZiuotWQLC6nIwa65Qv6 byqlIX0qZuu99Vsu+r3sWYsL5SBkgecNI7fMJ5tfHrjoxfrKl/ErTAt8GQIDAQABo4ICBTCCAgEw EgYDVR0TAQH/BAgwBgEB/wIBATAOBgNVHQ8BAf8EBAMCAQYwKQYDVR0gBCIwIDANBgsrBgEEAYGt IYIsHjAPBg0rBgEEAYGtIYIsAQEEMB0GA1UdDgQWBBTEiKUH7rh7qgwTv9opdGNSG0lwFjAfBgNV HSMEGDAWgBST49gyJtrV8UqlkUrg6kviogzP4TCBjwYDVR0fBIGHMIGEMECgPqA8hjpodHRwOi8v Y2RwMS5wY2EuZGZuLmRlL2dsb2JhbC1yb290LWcyLWNhL3B1Yi9jcmwvY2FjcmwuY3JsMECgPqA8 hjpodHRwOi8vY2RwMi5wY2EuZGZuLmRlL2dsb2JhbC1yb290LWcyLWNhL3B1Yi9jcmwvY2Fjcmwu Y3JsMIHdBggrBgEFBQcBAQSB0DCBzTAzBggrBgEFBQcwAYYnaHR0cDovL29jc3AucGNhLmRmbi5k ZS9PQ1NQLVNlcnZlci9PQ1NQMEoGCCsGAQUFBzAChj5odHRwOi8vY2RwMS5wY2EuZGZuLmRlL2ds b2JhbC1yb290LWcyLWNhL3B1Yi9jYWNlcnQvY2FjZXJ0LmNydDBKBggrBgEFBQcwAoY+aHR0cDov L2NkcDIucGNhLmRmbi5kZS9nbG9iYWwtcm9vdC1nMi1jYS9wdWIvY2FjZXJ0L2NhY2VydC5jcnQw DQYJKoZIhvcNAQELBQADggEBABLpeD5FygzqOjj+/lAOy20UQOGWlx0RMuPcI4nuyFT8SGmK9lD7 QCg/HoaJlfU/r78ex+SEide326evlFAoJXIFjVyzNltDhpMKrPIDuh2N12zyn1EtagqPL6hu4pVR zcBpl/F2HCvtmMx5K4WN1L1fmHWLcSapdhXLvAZ9RG/B3rqyULLSNN8xHXYXpmtvG0VGJAndZ+lj +BH7uvd3nHWnXEHC2q7iQlDUqg0awIqWJgdLlx1Q8Dg/sodv0m+LN0kOzGvVDRCmowBdWGhhusD+ duKV66pBl+qhC+4LipariWaMqK5ppMQROATjYeNRvwI+nDcEXr2vDaKmdbxgDVwwggXTMIIEu6AD AgECAgwj+ACpryvOlNX8QjAwDQYJKoZIhvcNAQELBQAwajELMAkGA1UEBhMCREUxDzANBgNVBAgM BkJheWVybjERMA8GA1UEBwwITXVlbmNoZW4xIDAeBgNVBAoMF01heC1QbGFuY2stR2VzZWxsc2No YWZ0MRUwEwYDVQQDDAxNUEcgQ0EgLSBHMDIwHhcNMjAxMjE1MDkzNDE3WhcNMjMxMjE1MDkzNDE3 WjCBtTELMAkGA1UEBhMCREUxHDAaBgNVBAgME05vcmRyaGVpbi1XZXN0ZmFsZW4xHTAbBgNVBAcM FE11ZWxoZWltIGFuIGRlciBSdWhyMSAwHgYDVQQKDBdNYXgtUGxhbmNrLUdlc2VsbHNjaGFmdDEx MC8GA1UECwwoTWF4LVBsYW5jay1JbnN0aXR1dCBmdWVyIEtvaGxlbmZvcnNjaHVuZzEUMBIGA1UE AwwLRnJhbmsgTmVlc2UwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCxTh2YDDwvcewO lk5b8w32wVnWS2+rHYJWjXA0UZU9ydMP5p72/hYZd9ksHR96f1tRy81hHXdJkQUdW/90AKhuSh9G 9EMavzq/rkpQpNk4oH56+PZRm1Yf2PkMveKIlmEa0ty/aOjSnQbrcG2J+9g3htUDwMgM7PhOEHWz SelxAn+TPOET3KxQNxjoaVJKmO+HbeOhdq7KQteceU1OUPExbuOsiT0VahTDFTDu3pptQeL4iVKI fqwGFMfkl2KblQmqPrPnChugBG2PABzs/a1OtqW79A+lNhOPUL6VqDBhZf/6XDln4VTqE2C65Api ujKAbzanbIvJsKO+3zqF70/dAgMBAAGjggIrMIICJzAJBgNVHRMEAjAAMA4GA1UdDwEB/wQEAwIF 4DAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwQwHQYDVR0OBBYEFL7AlafnmXHbgtIagQ0x wxy3JC64MB8GA1UdIwQYMBaAFMSIpQfuuHuqDBO/2il0Y1IbSXAWMBwGA1UdEQQVMBOBEW5lZXNl QGtvZm8ubXBnLmRlMH0GA1UdHwR2MHQwOKA2oDSGMmh0dHA6Ly9jZHAxLnBjYS5kZm4uZGUvbXBn LWcyLWNhL3B1Yi9jcmwvY2FjcmwuY3JsMDigNqA0hjJodHRwOi8vY2RwMi5wY2EuZGZuLmRlL21w Zy1nMi1jYS9wdWIvY3JsL2NhY3JsLmNybDCBzQYIKwYBBQUHAQEEgcAwgb0wMwYIKwYBBQUHMAGG J2h0dHA6Ly9vY3NwLnBjYS5kZm4uZGUvT0NTUC1TZXJ2ZXIvT0NTUDBCBggrBgEFBQcwAoY2aHR0 cDovL2NkcDEucGNhLmRmbi5kZS9tcGctZzItY2EvcHViL2NhY2VydC9jYWNlcnQuY3J0MEIGCCsG AQUFBzAChjZodHRwOi8vY2RwMi5wY2EuZGZuLmRlL21wZy1nMi1jYS9wdWIvY2FjZXJ0L2NhY2Vy dC5jcnQwPgYDVR0gBDcwNTAPBg0rBgEEAYGtIYIsAQEEMBAGDisGAQQBga0hgiwBAQQIMBAGDisG AQQBga0hgiwCAQQIMA0GCSqGSIb3DQEBCwUAA4IBAQAbLSDAaMfkjnRve01I0O5XrYFZ17AJg5pv TY3jF21fchPEmEzAmire69se/D8cALRmKIhSuUfuucIh3wZ2q/Qk3kZOOOcQcs+Kdl8/X1nGjZTY 3SIO+ud0k/4ayWyBgZpmhLAzYUvmSWXz2DcrAdDaxFeoh9Sc7aYtRa4iqYAgJogQH4hbeTMakWUC 8YGAUP8eiaTDAMfc8M9gRrbpLgRFZgr9oM8koz5Hm0yY9RaL3+rkV2NQ4w3lc1wg/xYBJgVrNMXW GuRIkFaUs7joSC1hzBECc1tJvLifakS7OHw7eD9H8ZY4hrLJRWylLYJuCIyGDMvQil0I2E9wAjLu rxNFMYIDLDCCAygCAQEwejBqMQswCQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQH DAhNdWVuY2hlbjEgMB4GA1UECgwXTWF4LVBsYW5jay1HZXNlbGxzY2hhZnQxFTATBgNVBAMMDE1Q RyBDQSAtIEcwMgIMI/gAqa8rzpTV/EIwMA0GCWCGSAFlAwQCAQUAoIIBgzAYBgkqhkiG9w0BCQMx CwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0yMjA3MTEwODI2MzBaMC8GCSqGSIb3DQEJBDEi BCBDRXj3gGVAl3P7eR6d5dk8t2cjes7k0AflImX1hsLWYzCBiQYJKwYBBAGCNxAEMXwwejBqMQsw CQYDVQQGEwJERTEPMA0GA1UECAwGQmF5ZXJuMREwDwYDVQQHDAhNdWVuY2hlbjEgMB4GA1UECgwX TWF4LVBsYW5jay1HZXNlbGxzY2hhZnQxFTATBgNVBAMMDE1QRyBDQSAtIEcwMgIMI/gAqa8rzpTV /EIwMIGLBgsqhkiG9w0BCRACCzF8oHowajELMAkGA1UEBhMCREUxDzANBgNVBAgMBkJheWVybjER MA8GA1UEBwwITXVlbmNoZW4xIDAeBgNVBAoMF01heC1QbGFuY2stR2VzZWxsc2NoYWZ0MRUwEwYD VQQDDAxNUEcgQ0EgLSBHMDICDCP4AKmvK86U1fxCMDANBgkqhkiG9w0BAQsFAASCAQAekGovcRwj evrMOSDyBrcWA77mX/ISdJCe45EklrcBdZCDJtKV6Gd5Iie5XDJZGCjTGr2+IxF3TE7NVYU4Y8xk kn6JK7/WOnez9d9gSQt9Ziz6cG1c+OBJgztHhkHJmo7S/KxTl3Vhdnp+ADO9mkWovIecmntBMbgn CXECLICYacyJi7pqH/WdxzuAMv3LH/jf4wCD8Dl222Y52iSYwVva2mSfCbIx7Sdp2YXGvH9LLUL3 U3MTh6TWGJurJ8a9nwOM+3h4JBq4cemyD+/H8P9JK6uvXOIqatoZ6++RAgEgawzmqiaVVtd5GvbT 5Y+3ktvpRypkGv7RfsOTmfvpftT8AAAAAAAA --Apple-Mail=_E4700791-9580-48C8-B1EB-3A02142020AA-- From owner-chemistry@ccl.net Mon Jul 11 05:32:01 2022 From: "SUMANGLA ARORA arorasumangla:gmail.com" To: CCL Subject: CCL: Generation of .gbw file for each step in optimization Message-Id: <-54761-220711045520-9490-Puge4VMV6SWxmmtprx2yXg ~~ server.ccl.net> X-Original-From: "SUMANGLA ARORA" Date: Mon, 11 Jul 2022 04:55:15 -0400 Sent to CCL by: "SUMANGLA ARORA" [arorasumangla(-)gmail.com] Dear All, I am optimizing a structure using the ORCA-5.0.3. In that, I need to generate .gbw file for every step. Is it possible to generate a .gbw file for each step? If yes, how can we do so? Thanks & Regards, Sumangla From owner-chemistry@ccl.net Mon Jul 11 06:11:00 2022 From: "Sachin Ramesh sachinadityaramesh^gmail.com" To: CCL Subject: CCL: [CCL] CCL CCL: Negative frequencies with C1 symmetry (Orca) Message-Id: <-54762-220711061005-17731-2py5r2DUxG7iFy65Kqjj0g * server.ccl.net> X-Original-From: Sachin Ramesh Content-Type: multipart/alternative; boundary="000000000000e2f5ac05e384c04a" Date: Mon, 11 Jul 2022 15:41:38 +0530 MIME-Version: 1.0 Sent to CCL by: Sachin Ramesh [sachinadityaramesh##gmail.com] --000000000000e2f5ac05e384c04a Content-Type: text/plain; charset="UTF-8" There are several discussions on the ORCA users forum ( https://orcaforum.kofo.mpg.de/) regarding imaginary modes. I think the topic "Imaginary frequencies after optimization Pd complex" should be helpful. -Sachin On Mon, Jul 11, 2022 at 2:40 PM Grigoriy Zhurko reg_zhurko(_) chemcraftprog.com wrote: > > Sent to CCL by: "Grigoriy Zhurko" [reg_zhurko|-|chemcraftprog.com] > > Imaginary modes under '-10 cm-1' if not many can be safely ignored. > > Can you provide a citation for this hint? > > > You > > could try to get rid > > of the imaginary mode by distorting the structure along the bond, angle > or > > dihedral which is > > causing the imaginary mode. > > In my case this did not help; more precisely, any repeating of the > optimization with another starting point can produce the frequencies > without > negative ones with some probability. So, if I only want to get rid of the > imaginary frequencies, I can achieve that via repeating the optimization, > but > I suppose that such an approach looks like a kind of quackery. > Again, is that correct that small frequencies are usually very > anharmonical > and thus they produce big errors in computing the entropy? > > > 'TightSCF TightOpt Grid7 Gridx9' seems to work for all of our systems > > upto 200 atoms, producing > > accurate results in good agreement with experimental observations. > > Currently I tried the combination of keywords !TightOpt DefGrid3 > VeryTightSCF %geom ENFORCESTRICTCONVERGENCE True. One job with these > keywords > produced correct frequencies, however I am not sure it will be always so. > And > this job demanded much more CPU time, so even if it helps, I can't use > these > keywords with all my jobs. So, again the main question is not how to get > rid > of the imaginary frequencies, but to explain in the paper, why they are > produced and why I can't compute the entropy with my jobs. > If I am not mistaken, the vibrational entropy is computed as a sum of > contributions by each vibrational mode. So, one more question is, is the > following approach correct - omit the small modes when computing the > entropy? > > Grigoriy, > https://chemcraftprog.com> > > --000000000000e2f5ac05e384c04a Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
There are several discussions on the ORCA users forum= (https://orcaforum.kofo.mpg.de/= )
=C2=A0regarding=C2=A0imaginary modes.=C2=A0

=C2=A0I think = the topic "Imaginary frequencies after optimization Pd complex" s= hould be helpful.

-Sachin=C2=A0

On Mon, Jul 11,= 2022 at 2:40 PM Grigoriy Zhurko reg_zhurko(_)chemcraftprog.com <owner-chemistry!=!ccl.net> wrote:

Sent to CCL by: "Grigoriy=C2=A0 Zhurko" [reg_zhurko|-|chemcraftpro= g.com]
>=C2=A0 =C2=A0 Imaginary modes under '-10 cm-1' if not many can = be safely ignored.

=C2=A0Can you provide a citation for this hint?

>=C2=A0 You
> could try to get rid
> of the imaginary mode by distorting the structure along the bond, angl= e or
> dihedral which is
> causing the imaginary mode.

=C2=A0 In my case this did not help; more precisely, any repeating of the <= br> optimization with another starting point can produce the frequencies withou= t
negative ones with some probability. So, if I only want to get rid of the <= br> imaginary frequencies, I can achieve that via repeating the optimization, b= ut
I suppose that such an approach looks like a kind of quackery.
=C2=A0 Again, is that correct that small frequencies are usually very anhar= monical
and thus they produce big errors in computing the entropy?

>=C2=A0 =C2=A0'TightSCF TightOpt Grid7 Gridx9' seems to work for= all of our systems
> upto 200 atoms, producing
> accurate results in good agreement with experimental observations.

=C2=A0 Currently I tried the combination of keywords !TightOpt DefGrid3 VeryTightSCF %geom ENFORCESTRICTCONVERGENCE True. One job with these keywor= ds
produced correct frequencies, however I am not sure it will be always so. A= nd
this job demanded much more CPU time, so even if it helps, I can't use = these
keywords with all my jobs. So, again the main question is not how to get ri= d
of the imaginary frequencies, but to explain in the paper, why they are produced and why I can't compute the entropy with my jobs.
If I am not mistaken, the vibrational entropy is computed as a sum of
contributions by each vibrational mode. So, one more question is, is the following approach correct - omit the small modes when computing the entrop= y?

Grigoriy,
= https://chemcraftprog.com



-=3D This is automatically added to each message by the mailing script =3D-=
E-mail to subscribers: CHEMISTRY!=!ccl.net or use:
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/cgi-bin/ccl/s= end_ccl_message

E-mail to administrators: CHEMISTRY-REQUEST!=!ccl.net or use
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/cgi-bin/ccl/s= end_ccl_message
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/chemistry/sub_un= sub.shtml

Before posting, check wait time at: http://www.ccl.net

Job: http://www.ccl.net/jobs
Conferences: http://server.ccl.net/chemist= ry/announcements/conferences/

Search Messages: http://www.ccl.net/chemistry/sear= chccl/index.shtml
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/spammers.txt

RTFI: http://www.ccl.net/chemistry/aboutccl/ins= tructions/


--000000000000e2f5ac05e384c04a-- From owner-chemistry@ccl.net Mon Jul 11 06:46:00 2022 From: "Simmie, John john.simmie ~~ nuigalway.ie" To: CCL Subject: CCL: CCL CCL: Negative frequencies with C1 symmetry (Orca) & Entropy Message-Id: <-54763-220711062110-26864-tbS7X+q/weVnPs6lFdytJg-#-server.ccl.net> X-Original-From: "Simmie, John" Content-Language: en-US Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" Date: Mon, 11 Jul 2022 10:21:00 +0000 MIME-Version: 1.0 Sent to CCL by: "Simmie, John" [john.simmie : nuigalway.ie] > One job with these keywords > produced correct frequencies, however I am not sure it will be always so. And > this job demanded much more CPU time, so even if it helps, I can't use these > keywords with all my jobs. So, again the main question is not how to get rid > of the imaginary frequencies, but to explain in the paper, why they are > produced and why I can't compute the entropy with my jobs. > If I am not mistaken, the vibrational entropy is computed as a sum of > contributions by each vibrational mode. So, one more question is, is the > following approach correct - omit the small modes when computing the entropy? Small modes do contribute very strongly to the vibrational entropy whereas for example C--H stretches are of much less relevance So no, you cannot ignore them; the question that you have to consider is whether such modes are true vibrations and if not whether a different treatment is required. Emeritus Professor John M. Simmie School of Chemistry Rm 243 National University of Ireland, Galway Ireland H91 TK33 +353-86-805-9948 ::: +353-91-592462 0000-0003-0714-7956 From owner-chemistry@ccl.net Mon Jul 11 07:21:00 2022 From: "Massimo Ottonelli Massimo.Ottonelli|a|unige.it" To: CCL Subject: CCL: Gaussian 09 limit on SCF for MM Message-Id: <-54764-220711070529-1095-nLdFYT0fCLdn16b6J+5nig++server.ccl.net> X-Original-From: Massimo Ottonelli Content-Disposition: inline Content-Type: text/plain; charset=utf-8; format=flowed; DelSp=Yes Date: Mon, 11 Jul 2022 13:05:20 +0200 MIME-Version: 1.0 Sent to CCL by: Massimo Ottonelli [Massimo.Ottonelli*|*unige.it] Dear all, performing an scf MM (Uff) calculations on a very large system with G09 I get an error since the limit of scf steps is passed. I remember that the MaxStp limit (default ) can be overcomed with the IOP command but I don't remember the correct sintax. Could someone help me in recover it? Thanks in advance -- ====================================================== Dr. Massimo Ottonelli, PhD in Chimica Teorica Address: Universita' degli studi di Genova via Dodecaneso, 31 I-16146 Genova Dipartimento di Chimica e Chimica Industriale Laboratorio di Chimica Teorica e Quantistica E-mail:massimo.ottonelli-,-unige.it Tel: +39-010-3536105 ====================================================== From owner-chemistry@ccl.net Mon Jul 11 11:38:01 2022 From: "Peter Jarowski peterjarowski-.-gmail.com" To: CCL Subject: CCL: CCL CCL: Negative frequencies with C1 symmetry (Orca) & Entropy Message-Id: <-54765-220711093306-14535-odpdaMwdZ+BJMNS9pflKNA===server.ccl.net> X-Original-From: Peter Jarowski Content-Type: multipart/alternative; boundary="0000000000003997e205e38797c9" Date: Mon, 11 Jul 2022 15:32:49 +0200 MIME-Version: 1.0 Sent to CCL by: Peter Jarowski [peterjarowski[*]gmail.com] --0000000000003997e205e38797c9 Content-Type: text/plain; charset="UTF-8" Hi Thanks for this. However, again, this statement is made without quantitative support or a reference. If we indeed need to remove these little lateral frequencies we should know what magnitude of error they introduce beforehand. Perhaps for many of us, a few kal/mol error in entropy is acceptable because we can depend, for example, on error cancellation later on. "contribute very strongly " is not a technical statement. Searching for such a reference would be difficult. Perhaps someone knows from where this policy comes from. Best regards, Peter On Mon, Jul 11, 2022 at 3:28 PM Simmie, John john.simmie ~~ nuigalway.ie < owner-chemistry]-[ccl.net> wrote: > > Sent to CCL by: "Simmie, John" [john.simmie : nuigalway.ie] > > One job with these keywords > > produced correct frequencies, however I am not sure it will be always > so. And > > this job demanded much more CPU time, so even if it helps, I can't use > these > > keywords with all my jobs. So, again the main question is not how to get > rid > > of the imaginary frequencies, but to explain in the paper, why they are > > produced and why I can't compute the entropy with my jobs. > > If I am not mistaken, the vibrational entropy is computed as a sum of > > contributions by each vibrational mode. So, one more question is, is the > > following approach correct - omit the small modes when computing the > entropy? > > Small modes do contribute very strongly to the vibrational entropy whereas > for example C--H stretches are of much less relevance > So no, you cannot ignore them; the question that you have to consider is > whether such modes are true vibrations and if not whether a different > treatment is required. > > Emeritus Professor John M. Simmie > School of Chemistry Rm 243 > National University of Ireland, Galway > Ireland H91 TK33 > +353-86-805-9948 ::: +353-91-592462 > 0000-0003-0714-7956> > > --0000000000003997e205e38797c9 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Hi Thanks for this.

However, again, this statement is made without quantitative suppor= t or a reference. If we indeed need to remove these little lateral frequenc= ies we should know what magnitude of error they introduce beforehand. Perha= ps for many of us, a few kal/mol error in entropy is acceptable because we = can depend, for example, on error cancellation later on.

"contribute very strongly " is not a technical statement. = Searching for such a reference would be difficult. Perhaps someone knows fr= om where this policy comes from.

Best regards,

Peter

<= div dir=3D"ltr" class=3D"gmail_attr">On Mon, Jul 11, 2022 at 3:28 PM Simmie= , John john.simmie ~~ nuigalway.ie <= owner-chemistry]-[ccl.net> = wrote:

Sent to CCL by: "Simmie, John" [john.simmie : nuigalway.ie]
> One job with these keywords
> produced correct frequencies, however I am not sure it will be always = so. And
> this job demanded much more CPU time, so even if it helps, I can't= use these
> keywords with all my jobs. So, again the main question is not how to g= et rid
> of the imaginary frequencies, but to explain in the paper, why they ar= e
> produced and why I can't compute the entropy with my jobs.
> If I am not mistaken, the vibrational entropy is computed as a sum of =
> contributions by each vibrational mode. So, one more question is, is t= he
> following approach correct - omit the small modes when computing the e= ntropy?

Small modes do contribute very strongly to the vibrational entropy whereas = for example C--H stretches are of much less relevance
So no, you cannot ignore them; the question that you have to consider is wh= ether such modes are true vibrations and if not whether a different treatme= nt is required.

=C2=A0 =C2=A0Emeritus Professor John M. Simmie
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0School of Chemistry=C2=A0 =C2=A0Rm 243 National University of Ireland, Galway
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 Ireland H91 TK33 +353-86-805-9948 ::: +353-91-592462
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 0000-0003-0714-7956



-=3D This is automatically added to each message by the mailing script =3D-=
E-mail to subscribers: CHEMISTRY]-[ccl.net or use:
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/cgi-bin/ccl/s= end_ccl_message

E-mail to administrators: CHEMISTRY-REQUEST]-[ccl.net or use
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/cgi-bin/ccl/s= end_ccl_message
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/chemistry/sub_un= sub.shtml

Before posting, check wait time at: http://www.ccl.net

Job: http://www.ccl.net/jobs
Conferences: http://server.ccl.net/chemist= ry/announcements/conferences/

Search Messages: http://www.ccl.net/chemistry/sear= chccl/index.shtml
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/spammers.txt

RTFI: http://www.ccl.net/chemistry/aboutccl/ins= tructions/


--0000000000003997e205e38797c9-- From owner-chemistry@ccl.net Mon Jul 11 12:13:00 2022 From: "=?UTF-8?Q?Jo=C3=A3o_Paulo_Ara=C3=BAjo?= joaojpkl56++gmail.com" To: CCL Subject: CCL: Gaussian 09 limit on SCF for MM Message-Id: <-54766-220711101241-22683-U/femb86WBSaHhkuBDcVyQ[a]server.ccl.net> X-Original-From: =?UTF-8?Q?Jo=C3=A3o_Paulo_Ara=C3=BAjo?= Content-Type: multipart/alternative; boundary="000000000000c8377905e3882442" Date: Mon, 11 Jul 2022 11:12:24 -0300 MIME-Version: 1.0 Sent to CCL by: =?UTF-8?Q?Jo=C3=A3o_Paulo_Ara=C3=BAjo?= [joaojpkl56**gmail.com] --000000000000c8377905e3882442 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable IOp(1/152) L103: Control of MaxStp (allocated max number of steps in L103). 0 Default: compute based on number of variables, NStep, etc. N>0 Make MaxStp at least N. N<0 Make MaxStp at least -N. Em seg., 11 de jul. de 2022 =C3=A0s 10:02, Massimo Ottonelli Massimo.Ottone= lli|a| unige.it escreveu: > > Sent to CCL by: Massimo Ottonelli [Massimo.Ottonelli*|*unige.it] > Dear all, > performing an scf MM (Uff) calculations on a very large system with > G09 I get an error since the limit of > scf steps is passed. > I remember that the MaxStp limit (default ) can be overcomed with > the IOP command but I don't remember the > correct sintax. Could someone help me in recover it? > > Thanks in advance > > -- > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > Dr. Massimo Ottonelli, PhD in Chimica Teorica > Address: Universita' degli studi di Genova > via Dodecaneso, 31 I-16146 Genova > Dipartimento di Chimica e Chimica Industriale > Laboratorio di Chimica Teorica e Quantistica > E-mail:massimo.ottonelli * unige.it > Tel: +39-010-3536105 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D > > > > -=3D This is automatically added to each message by the mailing script = =3D-> > > --000000000000c8377905e3882442 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable

IOp(1/1= 52)

L103: Control of Ma= xStp (allocated max number of steps in L103).

0 Default: compute based on number of variables, NStep, etc.
N>0 Make MaxStp at least N.
N<0 Make MaxStp at least -N.

Em seg., 11 de jul. = de 2022 =C3=A0s 10:02, Massimo Ottonelli Massimo.Ottonelli|a|unige.it <o= wner-chemistry+*+ccl.net> escreveu:

Sent to CCL by: Massimo Ottonelli [Massimo.Ottonelli*|*unige.it]
=C2=A0 Dear all,
=C2=A0 performing an scf MM (Uff) calculations on a very large system with= =C2=A0
G09 I get an error since the limit of
=C2=A0 scf steps is passed.
=C2=A0 I remember that the MaxStp limit (default ) can be overcomed with=C2= =A0
the IOP command but I don't remember the
=C2=A0 correct sintax. Could someone help me in recover it?

=C2=A0 =C2=A0 Thanks in advance

--
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D
=C2=A0 Dr. Massimo Ottonelli, PhD in Chimica Teorica
=C2=A0 Address: Universita' degli studi di Genova
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0via Do= decaneso, 31 I-16146 Genova
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Dipart= imento di Chimica e Chimica Industriale
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Labora= torio di Chimica Teorica e Quantistica
=C2=A0 E-mail:massimo.ottonelli * unige.it
=C2=A0 Tel: +39-010-3536105
=C2=A0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D



-=3D This is automatically added to each message by the mailing script =3D-=
E-mail to subscribers: CHEMISTRY+*+ccl.net or use:
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/cgi-bin/ccl/s= end_ccl_message

E-mail to administrators: CHEMISTRY-REQUEST+*+ccl.net or use
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/cgi-bin/ccl/s= end_ccl_message
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/chemistry/sub_un= sub.shtml

Before posting, check wait time at: http://www.ccl.net

Job: http://www.ccl.net/jobs
Conferences: http://server.ccl.net/chemist= ry/announcements/conferences/

Search Messages: http://www.ccl.net/chemistry/sear= chccl/index.shtml
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/spammers.txt

RTFI: http://www.ccl.net/chemistry/aboutccl/ins= tructions/


--000000000000c8377905e3882442-- From owner-chemistry@ccl.net Mon Jul 11 12:48:01 2022 From: "Grigoriy Zhurko reg_zhurko-#-chemcraftprog.com" To: CCL Subject: CCL: CCL CCL: Negative frequencies with C1 symmetry (Orca) Message-Id: <-54767-220711114837-3086-B+a1ApIZepXC9mj6XxYHLw**server.ccl.net> X-Original-From: Grigoriy Zhurko Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=utf-8 Date: Mon, 11 Jul 2022 18:47:43 +0300 MIME-Version: 1.0 Sent to CCL by: Grigoriy Zhurko [reg_zhurko**chemcraftprog.com] > I am not sure what you mean by „quackery“? Any optimiser brings the gradient to zero to find a stationary point. This stationary point can be a minimum, maximum or a n'th order saddle point. What kind of point was found is determined by analyzing the eigenvalue structure of the Hessian. It is not a bug or misbehaviour of the optimiser to land on a saddle point, especially, when you have loosely bound molecular complexes as is the case for explicit solvation. It is absolutely proper procedure to then search for a nearby minimum that eliminates the negative frequencies. > However, it is not the point to repeat the optimisation from "some“ other starting point and hope that it eliminates the negative frequencies. Instead, what needs to be done is to displace the system along the normal mode with the (or one of the) negative frequency(ies) and then reoptimize. I tried this and it didn't help. My computation indeed finds a local minimun, not a saddle point. It is very strange for me to hear, that a saddle point can be found by the optimizer when the molecule has C1 symmetry. If that is possible, I suppose that the optimization convergence graph (energy vs optimization step) can show that. In my case, the optimization convergence graph shows that the energy is lowered during the optimization. Again, my main question is not how to get rid of the imaginary frequencies, but how to explain in the paper, why the computed energies are correct despite of these frequencies. Grigoriy. From owner-chemistry@ccl.net Mon Jul 11 13:23:00 2022 From: "Grigoriy Zhurko reg_zhurko ~ chemcraftprog.com" To: CCL Subject: CCL: [CCL] CCL CCL: Negative frequencies with C1 symmetry (Orca) Message-Id: <-54768-220711114840-3128-/SmZfap5VQYL3zgOc6XX4A**server.ccl.net> X-Original-From: Grigoriy Zhurko Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii Date: Mon, 11 Jul 2022 18:48:23 +0300 MIME-Version: 1.0 Sent to CCL by: Grigoriy Zhurko [reg_zhurko++chemcraftprog.com] > There are several discussions on the ORCA users forum ( > https://orcaforum.kofo.mpg.de/) > regarding imaginary modes. > I think the topic "Imaginary frequencies after optimization Pd complex" > should be helpful. I was unable to find this topic there, can you provide me an URL? Grigoriy. From owner-chemistry@ccl.net Mon Jul 11 13:58:00 2022 From: "=?utf-8?B?TWFyaXVzeiBSYWRvxYQ=?= mariusz.radon-$-uj.edu.pl" To: CCL Subject: CCL: CCL CCL: Negative frequencies with C1 symmetry (Orca) Message-Id: <-54769-220711121600-14664-qaeKozl9AY4FkotT/B5GBQ_._server.ccl.net> X-Original-From: =?utf-8?B?TWFyaXVzeiBSYWRvxYQ=?= Content-ID: <74F371CE5C7851428CFDB1362553407A_._eurprd04.prod.outlook.com> Content-Language: en-US Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" Date: Mon, 11 Jul 2022 16:15:51 +0000 MIME-Version: 1.0 Sent to CCL by: =?utf-8?B?TWFyaXVzeiBSYWRvxYQ=?= [mariusz.radon~!~uj.edu.pl] > On 11 Jul 2022, at 08:33, Grigoriy Zhurko reg_zhurko(_)chemcraftprog.com wrote: > (…) > So, again the main question is not how to get rid > of the imaginary frequencies, but to explain in the paper, why they are > produced and why I can't compute the entropy with my jobs. > If I am not mistaken, the vibrational entropy is computed as a sum of > contributions by each vibrational mode. So, one more question is, is the > following approach correct - omit the small modes when computing the entropy? > > Grigoriy, > https://chemcraftprog.com > Dear Grigoriy: The quasi-harmonic approximation (for entropy) is probably what you are looking for: 10.1021/jp205508z 10.1002/chem.201200497 10.12688/f1000research.22758.1 Take care, Mariusz -- Mariusz Radon, Ph.D., D.Sc. Associate Professor Faculty of Chemistry, Jagiellonian University Address: Gronostajowa 2, 30-387 Krakow, Poland Room C1-06, Phone: 48-12-686-24-89 E-mail: mradon-.-chemia.uj.edu.pl (mariusz.radon-.-uj.edu.pl) Web: https://tungsten.ch.uj.edu.pl/~mradon ORCID: https://orcid.org/0000-0002-1901-8521 From owner-chemistry@ccl.net Mon Jul 11 14:33:01 2022 From: "Simmie, John john.simmie*nuigalway.ie" To: CCL Subject: CCL: CCL CCL: Negative frequencies with C1 symmetry (Orca) & Entropy Message-Id: <-54770-220711140846-2194-BVIr31LrIFuHPUouPxtLow[#]server.ccl.net> X-Original-From: "Simmie, John" Content-Language: en-US Content-Type: multipart/related; boundary="_004_AS8PR01MB78633E474D3F4D331B6E4FF794879AS8PR01MB7863eurp_"; type="multipart/alternative" Date: Mon, 11 Jul 2022 18:08:37 +0000 MIME-Version: 1.0 Sent to CCL by: "Simmie, John" [john.simmie*|*nuigalway.ie] --_004_AS8PR01MB78633E474D3F4D331B6E4FF794879AS8PR01MB7863eurp_ Content-Type: multipart/alternative; boundary="_000_AS8PR01MB78633E474D3F4D331B6E4FF794879AS8PR01MB7863eurp_" --_000_AS8PR01MB78633E474D3F4D331B6E4FF794879AS8PR01MB7863eurp_ Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 QW55IHBoeXNpY2FsIGNoZW1pc3RyeSB0ZXh0Ym9vayBtYXkgc3VwcGx5IHlvdSB3aXRoIHRoZSBm b3JtdWxhDQpbY2lkOmltYWdlMDAxLnBuZ0AwMUQ4OTU1OS45RjE0QUQzMF0NCkEgYnJpZWYgZXhw bG9yYXRpb24gd2lsbCBzaG93IHlvdSB0aGUgc3Ryb25nIGNvbnRyaWJ1dGlvbiB0byB0aGUgdmli cmF0aW9uYWwgZW50cm9weSBvZiB0aGUgdmlicmF0aW9uYWwgbW9kZSDigKYNCg0KRnJvbTogb3du ZXItY2hlbWlzdHJ5K2pvaG4uc2ltbWllPT1udWlnYWx3YXkuaWVAY2NsLm5ldCA8b3duZXItY2hl bWlzdHJ5K2pvaG4uc2ltbWllPT1udWlnYWx3YXkuaWVAY2NsLm5ldD4gT24gQmVoYWxmIE9mIFBl dGVyIEphcm93c2tpIHBldGVyamFyb3dza2ktLi1nbWFpbC5jb20NClNlbnQ6IE1vbmRheSAxMSBK dWx5IDIwMjIgMTQ6MzMNClRvOiBTaW1taWUsIEpvaG4gPGpvaG4uc2ltbWllQG51aWdhbHdheS5p ZT4NClN1YmplY3Q6IENDTDogQ0NMIENDTDogTmVnYXRpdmUgZnJlcXVlbmNpZXMgd2l0aCBDMSBz eW1tZXRyeSAoT3JjYSkgJiBFbnRyb3B5DQoNCkVYVEVSTkFMIEVNQUlMOiBUaGlzIGVtYWlsIG9y aWdpbmF0ZWQgb3V0c2lkZSBOVUkgR2Fsd2F5LiBEbyBub3Qgb3BlbiBhdHRhY2htZW50cyBvciBj bGljayBvbiBsaW5rcyB1bmxlc3MgeW91IGJlbGlldmUgdGhlIGNvbnRlbnQgaXMgc2FmZS4NClLD jU9NSFBIT1NUIFNFQUNIVFJBQ0g6IE7DrW9yIHRow6FpbmlnIGFuIHLDrW9taHBob3N0IHNlbyDD syBPw4kgR2FpbGxpbWguIE7DoSBob3NjYWlsIGNlYW5nYWx0w6FpbiBhZ3VzIG7DoSBjbGljZcOh aWwgYXIgbmFpc2MgbXVyYSBnY3JlaWRlYW5uIHTDuiBnbyBiaGZ1aWwgYW4gdC3DoWJoYXIgc8Oh YmjDoWlsdGUuDQoNCkhpIFRoYW5rcyBmb3IgdGhpcy4NCg0KSG93ZXZlciwgYWdhaW4sIHRoaXMg c3RhdGVtZW50IGlzIG1hZGUgd2l0aG91dCBxdWFudGl0YXRpdmUgc3VwcG9ydCBvciBhIHJlZmVy ZW5jZS4gSWYgd2UgaW5kZWVkIG5lZWQgdG8gcmVtb3ZlIHRoZXNlIGxpdHRsZSBsYXRlcmFsIGZy ZXF1ZW5jaWVzIHdlIHNob3VsZCBrbm93IHdoYXQgbWFnbml0dWRlIG9mIGVycm9yIHRoZXkgaW50 cm9kdWNlIGJlZm9yZWhhbmQuIFBlcmhhcHMgZm9yIG1hbnkgb2YgdXMsIGEgZmV3IGthbC9tb2wg ZXJyb3IgaW4gZW50cm9weSBpcyBhY2NlcHRhYmxlIGJlY2F1c2Ugd2UgY2FuIGRlcGVuZCwgZm9y IGV4YW1wbGUsIG9uIGVycm9yIGNhbmNlbGxhdGlvbiBsYXRlciBvbi4NCg0KImNvbnRyaWJ1dGUg dmVyeSBzdHJvbmdseSAiIGlzIG5vdCBhIHRlY2huaWNhbCBzdGF0ZW1lbnQuIFNlYXJjaGluZyBm b3Igc3VjaCBhIHJlZmVyZW5jZSB3b3VsZCBiZSBkaWZmaWN1bHQuIFBlcmhhcHMgc29tZW9uZSBr bm93cyBmcm9tIHdoZXJlIHRoaXMgcG9saWN5IGNvbWVzIGZyb20uDQoNCkJlc3QgcmVnYXJkcywN Cg0KUGV0ZXINCg0KT24gTW9uLCBKdWwgMTEsIDIwMjIgYXQgMzoyOCBQTSBTaW1taWUsIEpvaG4g am9obi5zaW1taWUgfn4gbnVpZ2Fsd2F5LmllPGh0dHA6Ly9udWlnYWx3YXkuaWU+IDxvd25lci1j aGVtaXN0cnkgLiBjY2wubmV0PG1haWx0bzpvd25lci1jaGVtaXN0cnklMjAuJTIwY2NsLm5ldD4+ IHdyb3RlOg0KDQpTZW50IHRvIENDTCBieTogIlNpbW1pZSwgSm9obiIgW2pvaG4uc2ltbWllIDog bnVpZ2Fsd2F5LmllPGh0dHA6Ly9udWlnYWx3YXkuaWU+XQ0KPiBPbmUgam9iIHdpdGggdGhlc2Ug a2V5d29yZHMNCj4gcHJvZHVjZWQgY29ycmVjdCBmcmVxdWVuY2llcywgaG93ZXZlciBJIGFtIG5v dCBzdXJlIGl0IHdpbGwgYmUgYWx3YXlzIHNvLiBBbmQNCj4gdGhpcyBqb2IgZGVtYW5kZWQgbXVj aCBtb3JlIENQVSB0aW1lLCBzbyBldmVuIGlmIGl0IGhlbHBzLCBJIGNhbid0IHVzZSB0aGVzZQ0K PiBrZXl3b3JkcyB3aXRoIGFsbCBteSBqb2JzLiBTbywgYWdhaW4gdGhlIG1haW4gcXVlc3Rpb24g aXMgbm90IGhvdyB0byBnZXQgcmlkDQo+IG9mIHRoZSBpbWFnaW5hcnkgZnJlcXVlbmNpZXMsIGJ1 dCB0byBleHBsYWluIGluIHRoZSBwYXBlciwgd2h5IHRoZXkgYXJlDQo+IHByb2R1Y2VkIGFuZCB3 aHkgSSBjYW4ndCBjb21wdXRlIHRoZSBlbnRyb3B5IHdpdGggbXkgam9icy4NCj4gSWYgSSBhbSBu b3QgbWlzdGFrZW4sIHRoZSB2aWJyYXRpb25hbCBlbnRyb3B5IGlzIGNvbXB1dGVkIGFzIGEgc3Vt IG9mDQo+IGNvbnRyaWJ1dGlvbnMgYnkgZWFjaCB2aWJyYXRpb25hbCBtb2RlLiBTbywgb25lIG1v cmUgcXVlc3Rpb24gaXMsIGlzIHRoZQ0KPiBmb2xsb3dpbmcgYXBwcm9hY2ggY29ycmVjdCAtIG9t aXQgdGhlIHNtYWxsIG1vZGVzIHdoZW4gY29tcHV0aW5nIHRoZSBlbnRyb3B5Pw0KDQpTbWFsbCBt b2RlcyBkbyBjb250cmlidXRlIHZlcnkgc3Ryb25nbHkgdG8gdGhlIHZpYnJhdGlvbmFsIGVudHJv cHkgd2hlcmVhcyBmb3IgZXhhbXBsZSBDLS1IIHN0cmV0Y2hlcyBhcmUgb2YgbXVjaCBsZXNzIHJl bGV2YW5jZQ0KU28gbm8sIHlvdSBjYW5ub3QgaWdub3JlIHRoZW07IHRoZSBxdWVzdGlvbiB0aGF0 IHlvdSBoYXZlIHRvIGNvbnNpZGVyIGlzIHdoZXRoZXIgc3VjaCBtb2RlcyBhcmUgdHJ1ZSB2aWJy YXRpb25zIGFuZCBpZiBub3Qgd2hldGhlciBhIGRpZmZlcmVudCB0cmVhdG1lbnQgaXMgcmVxdWly ZWQuDQoNCiAgIEVtZXJpdHVzIFByb2Zlc3NvciBKb2huIE0uIFNpbW1pZQ0KICAgICAgICAgU2No b29sIG9mIENoZW1pc3RyeSAgIFJtIDI0Mw0KTmF0aW9uYWwgVW5pdmVyc2l0eSBvZiBJcmVsYW5k LCBHYWx3YXkNCiAgICAgICAgICAgICAgICBJcmVsYW5kIEg5MSBUSzMzDQorMzUzLTg2LTgwNS05 OTQ4IDo6OiArMzUzLTkxLTU5MjQ2Mg0KICAgICAgICAgIDAwMDAtMDAwMy0wNzE0LTc5NTYNCg0K DQoNCi09IFRoaXMgaXMgYXV0b21hdGljYWxseSBhZGRlZCB0byBlYWNoIG1lc3NhZ2UgYnkgdGhl IG1haWxpbmcgc2NyaXB0ID0tPGJyDQoNCg0KRS1tYWlsIHRvIHN1YnNjcmliZXJzOiBDSEVNSVNU UlkgLiBjY2wubmV0PG1haWx0bzpDSEVNSVNUUlklMjAuJTIwY2NsLm5ldD4gb3IgdXNlOg0KICAg ICAgaHR0cDovL3d3dy5jY2wubmV0L2NnaS1iaW4vY2NsL3NlbmRfY2NsX21lc3NhZ2UNCg0KRS1t YWlsIHRvIGFkbWluaXN0cmF0b3JzOiBDSEVNSVNUUlktUkVRVUVTVCAuIGNjbC5uZXQ8bWFpbHRv OkNIRU1JU1RSWS1SRVFVRVNUJTIwLiUyMGNjbC5uZXQ+IG9yIHVzZQ0KICAgICAgaHR0cDovL3d3 dy5jY2wubmV0L2NnaS1iaW4vY2NsL3NlbmRfY2NsX21lc3NhZ2UNCjxicg0KICAgICAgaHR0cDov L3d3dy5jY2wubmV0L2NoZW1pc3RyeS9zdWJfdW5zdWIuc2h0bWwNCg0KQmVmb3JlIHBvc3Rpbmcs IGNoZWNrIHdhaXQgdGltZSBhdDogaHR0cDovL3d3dy5jY2wubmV0DQoNCkpvYjogaHR0cDovL3d3 dy5jY2wubmV0L2pvYnMNCkNvbmZlcmVuY2VzOiBodHRwOi8vc2VydmVyLmNjbC5uZXQvY2hlbWlz dHJ5L2Fubm91bmNlbWVudHMvY29uZmVyZW5jZXMvDQoNClNlYXJjaCBNZXNzYWdlczogaHR0cDov L3d3dy5jY2wubmV0L2NoZW1pc3RyeS9zZWFyY2hjY2wvaW5kZXguc2h0bWwNCjxicg0KICAgICAg aHR0cDovL3d3dy5jY2wubmV0L3NwYW1tZXJzLnR4dA0KDQpSVEZJOiBodHRwOi8vd3d3LmNjbC5u ZXQvY2hlbWlzdHJ5L2Fib3V0Y2NsL2luc3RydWN0aW9ucy8NCg0K --_000_AS8PR01MB78633E474D3F4D331B6E4FF794879AS8PR01MB7863eurp_ Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: base64 PGh0bWwgeG1sbnM6dj0idXJuOnNjaGVtYXMtbWljcm9zb2Z0LWNvbTp2bWwiIHhtbG5zOm89InVy bjpzY2hlbWFzLW1pY3Jvc29mdC1jb206b2ZmaWNlOm9mZmljZSIgeG1sbnM6dz0idXJuOnNjaGVt YXMtbWljcm9zb2Z0LWNvbTpvZmZpY2U6d29yZCIgeG1sbnM6bT0iaHR0cDovL3NjaGVtYXMubWlj cm9zb2Z0LmNvbS9vZmZpY2UvMjAwNC8xMi9vbW1sIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcv VFIvUkVDLWh0bWw0MCI+DQo8aGVhZD4NCjxtZXRhIGh0dHAtZXF1aXY9IkNvbnRlbnQtVHlwZSIg Y29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PXV0Zi04Ij4NCjxtZXRhIG5hbWU9IkdlbmVyYXRv ciIgY29udGVudD0iTWljcm9zb2Z0IFdvcmQgMTUgKGZpbHRlcmVkIG1lZGl1bSkiPg0KPCEtLVtp ZiAhbXNvXT48c3R5bGU+dlw6KiB7YmVoYXZpb3I6dXJsKCNkZWZhdWx0I1ZNTCk7fQ0Kb1w6KiB7 YmVoYXZpb3I6dXJsKCNkZWZhdWx0I1ZNTCk7fQ0Kd1w6KiB7YmVoYXZpb3I6dXJsKCNkZWZhdWx0 I1ZNTCk7fQ0KLnNoYXBlIHtiZWhhdmlvcjp1cmwoI2RlZmF1bHQjVk1MKTt9DQo8L3N0eWxlPjwh W2VuZGlmXS0tPjxzdHlsZT48IS0tDQovKiBGb250IERlZmluaXRpb25zICovDQpAZm9udC1mYWNl DQoJe2ZvbnQtZmFtaWx5OiJDYW1icmlhIE1hdGgiOw0KCXBhbm9zZS0xOjIgNCA1IDMgNSA0IDYg MyAyIDQ7fQ0KQGZvbnQtZmFjZQ0KCXtmb250LWZhbWlseTpDYWxpYnJpOw0KCXBhbm9zZS0xOjIg MTUgNSAyIDIgMiA0IDMgMiA0O30NCi8qIFN0eWxlIERlZmluaXRpb25zICovDQpwLk1zb05vcm1h bCwgbGkuTXNvTm9ybWFsLCBkaXYuTXNvTm9ybWFsDQoJe21hcmdpbjowY207DQoJZm9udC1zaXpl OjExLjBwdDsNCglmb250LWZhbWlseToiQ2FsaWJyaSIsc2Fucy1zZXJpZjt9DQphOmxpbmssIHNw YW4uTXNvSHlwZXJsaW5rDQoJe21zby1zdHlsZS1wcmlvcml0eTo5OTsNCgljb2xvcjpibHVlOw0K CXRleHQtZGVjb3JhdGlvbjp1bmRlcmxpbmU7fQ0Kc3Bhbi5FbWFpbFN0eWxlMTgNCgl7bXNvLXN0 eWxlLXR5cGU6cGVyc29uYWwtcmVwbHk7DQoJZm9udC1mYW1pbHk6IkNhbGlicmkiLHNhbnMtc2Vy aWY7DQoJY29sb3I6d2luZG93dGV4dDt9DQouTXNvQ2hwRGVmYXVsdA0KCXttc28tc3R5bGUtdHlw ZTpleHBvcnQtb25seTsNCglmb250LXNpemU6MTAuMHB0O30NCkBwYWdlIFdvcmRTZWN0aW9uMQ0K CXtzaXplOjYxMi4wcHQgNzkyLjBwdDsNCgltYXJnaW46NzIuMHB0IDcyLjBwdCA3Mi4wcHQgNzIu MHB0O30NCmRpdi5Xb3JkU2VjdGlvbjENCgl7cGFnZTpXb3JkU2VjdGlvbjE7fQ0KLS0+PC9zdHls ZT48IS0tW2lmIGd0ZSBtc28gOV0+PHhtbD4NCjxvOnNoYXBlZGVmYXVsdHMgdjpleHQ9ImVkaXQi IHNwaWRtYXg9IjEwMjYiIC8+DQo8L3htbD48IVtlbmRpZl0tLT48IS0tW2lmIGd0ZSBtc28gOV0+ PHhtbD4NCjxvOnNoYXBlbGF5b3V0IHY6ZXh0PSJlZGl0Ij4NCjxvOmlkbWFwIHY6ZXh0PSJlZGl0 IiBkYXRhPSIxIiAvPg0KPC9vOnNoYXBlbGF5b3V0PjwveG1sPjwhW2VuZGlmXS0tPg0KPC9oZWFk Pg0KPGJvZHkgbGFuZz0iRU4tSUUiIGxpbms9ImJsdWUiIHZsaW5rPSJwdXJwbGUiIHN0eWxlPSJ3 b3JkLXdyYXA6YnJlYWstd29yZCI+DQo8ZGl2IGNsYXNzPSJXb3JkU2VjdGlvbjEiPg0KPHAgY2xh c3M9Ik1zb05vcm1hbCI+PHNwYW4gc3R5bGU9Im1zby1mYXJlYXN0LWxhbmd1YWdlOkVOLVVTIj5B bnkgcGh5c2ljYWwgY2hlbWlzdHJ5IHRleHRib29rIG1heSBzdXBwbHkgeW91IHdpdGggdGhlIGZv cm11bGE8bzpwPjwvbzpwPjwvc3Bhbj48L3A+DQo8cCBjbGFzcz0iTXNvTm9ybWFsIj48c3BhbiBz dHlsZT0ibXNvLWZhcmVhc3QtbGFuZ3VhZ2U6RU4tVVMiPjxpbWcgd2lkdGg9IjQ3MSIgaGVpZ2h0 PSIxMDgiIHN0eWxlPSJ3aWR0aDo0LjkwODNpbjtoZWlnaHQ6MS4xMjVpbiIgaWQ9IlBpY3R1cmVf eDAwMjBfMSIgc3JjPSJjaWQ6aW1hZ2UwMDEucG5nQDAxRDg5NTU5LjlGMTRBRDMwIj48L3NwYW4+ PHNwYW4gc3R5bGU9Im1zby1mYXJlYXN0LWxhbmd1YWdlOkVOLVVTIj48bzpwPjwvbzpwPjwvc3Bh bj48L3A+DQo8cCBjbGFzcz0iTXNvTm9ybWFsIj48c3BhbiBzdHlsZT0ibXNvLWZhcmVhc3QtbGFu Z3VhZ2U6RU4tVVMiPkEgYnJpZWYgZXhwbG9yYXRpb24gd2lsbCBzaG93IHlvdSB0aGUgc3Ryb25n IGNvbnRyaWJ1dGlvbiB0byB0aGUgdmlicmF0aW9uYWwgZW50cm9weSBvZiB0aGUgdmlicmF0aW9u YWwgbW9kZSDigKY8bzpwPjwvbzpwPjwvc3Bhbj48L3A+DQo8cCBjbGFzcz0iTXNvTm9ybWFsIj48 c3BhbiBzdHlsZT0ibXNvLWZhcmVhc3QtbGFuZ3VhZ2U6RU4tVVMiPjxvOnA+Jm5ic3A7PC9vOnA+ PC9zcGFuPjwvcD4NCjxkaXY+DQo8ZGl2IHN0eWxlPSJib3JkZXI6bm9uZTtib3JkZXItdG9wOnNv bGlkICNFMUUxRTEgMS4wcHQ7cGFkZGluZzozLjBwdCAwY20gMGNtIDBjbSI+DQo8cCBjbGFzcz0i TXNvTm9ybWFsIj48Yj48c3BhbiBsYW5nPSJFTi1VUyI+RnJvbTo8L3NwYW4+PC9iPjxzcGFuIGxh bmc9IkVOLVVTIj4gb3duZXItY2hlbWlzdHJ5K2pvaG4uc2ltbWllPT1udWlnYWx3YXkuaWVAY2Ns Lm5ldCAmbHQ7b3duZXItY2hlbWlzdHJ5K2pvaG4uc2ltbWllPT1udWlnYWx3YXkuaWVAY2NsLm5l dCZndDsNCjxiPk9uIEJlaGFsZiBPZiA8L2I+UGV0ZXIgSmFyb3dza2kgcGV0ZXJqYXJvd3NraS0u LWdtYWlsLmNvbTxicj4NCjxiPlNlbnQ6PC9iPiBNb25kYXkgMTEgSnVseSAyMDIyIDE0OjMzPGJy Pg0KPGI+VG86PC9iPiBTaW1taWUsIEpvaG4gJmx0O2pvaG4uc2ltbWllQG51aWdhbHdheS5pZSZn dDs8YnI+DQo8Yj5TdWJqZWN0OjwvYj4gQ0NMOiBDQ0wgQ0NMOiBOZWdhdGl2ZSBmcmVxdWVuY2ll cyB3aXRoIEMxIHN5bW1ldHJ5IChPcmNhKSAmYW1wOyBFbnRyb3B5PG86cD48L286cD48L3NwYW4+ PC9wPg0KPC9kaXY+DQo8L2Rpdj4NCjxwIGNsYXNzPSJNc29Ob3JtYWwiPjxvOnA+Jm5ic3A7PC9v OnA+PC9wPg0KPGRpdj4NCjxwIGNsYXNzPSJNc29Ob3JtYWwiIHN0eWxlPSJiYWNrZ3JvdW5kOmxp Z2h0eWVsbG93Ij48Yj48c3BhbiBzdHlsZT0iY29sb3I6YmxhY2siPkVYVEVSTkFMIEVNQUlMOjwv c3Bhbj48L2I+PHNwYW4gc3R5bGU9ImNvbG9yOmJsYWNrIj4gVGhpcyBlbWFpbCBvcmlnaW5hdGVk IG91dHNpZGUgTlVJIEdhbHdheS4gRG8gbm90IG9wZW4gYXR0YWNobWVudHMgb3IgY2xpY2sgb24g bGlua3MgdW5sZXNzIHlvdSBiZWxpZXZlIHRoZSBjb250ZW50IGlzIHNhZmUuDQo8YnI+DQo8Yj5S w41PTUhQSE9TVCBTRUFDSFRSQUNIOjwvYj4gTsOtb3IgdGjDoWluaWcgYW4gcsOtb21ocGhvc3Qg c2VvIMOzIE/DiSBHYWlsbGltaC4gTsOhIGhvc2NhaWwgY2VhbmdhbHTDoWluIGFndXMgbsOhIGNs aWNlw6FpbCBhciBuYWlzYyBtdXJhIGdjcmVpZGVhbm4gdMO6IGdvIGJoZnVpbCBhbiB0LcOhYmhh ciBzw6FiaMOhaWx0ZS4NCjwvc3Bhbj48bzpwPjwvbzpwPjwvcD4NCjwvZGl2Pg0KPHAgY2xhc3M9 Ik1zb05vcm1hbCI+PG86cD4mbmJzcDs8L286cD48L3A+DQo8ZGl2Pg0KPGRpdj4NCjxkaXY+DQo8 ZGl2Pg0KPHAgY2xhc3M9Ik1zb05vcm1hbCI+SGkgVGhhbmtzIGZvciB0aGlzLjxvOnA+PC9vOnA+ PC9wPg0KPC9kaXY+DQo8ZGl2Pg0KPHAgY2xhc3M9Ik1zb05vcm1hbCI+PG86cD4mbmJzcDs8L286 cD48L3A+DQo8L2Rpdj4NCjxkaXY+DQo8cCBjbGFzcz0iTXNvTm9ybWFsIj5Ib3dldmVyLCBhZ2Fp biwgdGhpcyBzdGF0ZW1lbnQgaXMgbWFkZSB3aXRob3V0IHF1YW50aXRhdGl2ZSBzdXBwb3J0IG9y IGEgcmVmZXJlbmNlLiBJZiB3ZSBpbmRlZWQgbmVlZCB0byByZW1vdmUgdGhlc2UgbGl0dGxlIGxh dGVyYWwgZnJlcXVlbmNpZXMgd2Ugc2hvdWxkIGtub3cgd2hhdCBtYWduaXR1ZGUgb2YgZXJyb3Ig dGhleSBpbnRyb2R1Y2UgYmVmb3JlaGFuZC4gUGVyaGFwcyBmb3IgbWFueSBvZiB1cywgYQ0KIGZl dyBrYWwvbW9sIGVycm9yIGluIGVudHJvcHkgaXMgYWNjZXB0YWJsZSBiZWNhdXNlIHdlIGNhbiBk ZXBlbmQsIGZvciBleGFtcGxlLCBvbiBlcnJvciBjYW5jZWxsYXRpb24gbGF0ZXIgb24uPG86cD48 L286cD48L3A+DQo8L2Rpdj4NCjxkaXY+DQo8cCBjbGFzcz0iTXNvTm9ybWFsIj48bzpwPiZuYnNw OzwvbzpwPjwvcD4NCjwvZGl2Pg0KPGRpdj4NCjxwIGNsYXNzPSJNc29Ob3JtYWwiPiZxdW90O2Nv bnRyaWJ1dGUgdmVyeSBzdHJvbmdseSAmcXVvdDsgaXMgbm90IGEgdGVjaG5pY2FsIHN0YXRlbWVu dC4gU2VhcmNoaW5nIGZvciBzdWNoIGEgcmVmZXJlbmNlIHdvdWxkIGJlIGRpZmZpY3VsdC4gUGVy aGFwcyBzb21lb25lIGtub3dzIGZyb20gd2hlcmUgdGhpcyBwb2xpY3kgY29tZXMgZnJvbS48bzpw PjwvbzpwPjwvcD4NCjwvZGl2Pg0KPGRpdj4NCjxwIGNsYXNzPSJNc29Ob3JtYWwiPjxvOnA+Jm5i c3A7PC9vOnA+PC9wPg0KPC9kaXY+DQo8ZGl2Pg0KPHAgY2xhc3M9Ik1zb05vcm1hbCI+QmVzdCBy ZWdhcmRzLDxvOnA+PC9vOnA+PC9wPg0KPC9kaXY+DQo8ZGl2Pg0KPHAgY2xhc3M9Ik1zb05vcm1h bCI+PG86cD4mbmJzcDs8L286cD48L3A+DQo8L2Rpdj4NCjxkaXY+DQo8cCBjbGFzcz0iTXNvTm9y bWFsIj5QZXRlcjxvOnA+PC9vOnA+PC9wPg0KPC9kaXY+DQo8L2Rpdj4NCjxwIGNsYXNzPSJNc29O b3JtYWwiPjxvOnA+Jm5ic3A7PC9vOnA+PC9wPg0KPGRpdj4NCjxkaXY+DQo8cCBjbGFzcz0iTXNv Tm9ybWFsIj5PbiBNb24sIEp1bCAxMSwgMjAyMiBhdCAzOjI4IFBNIFNpbW1pZSwgSm9obiBqb2hu LnNpbW1pZSB+fiA8YSBocmVmPSJodHRwOi8vbnVpZ2Fsd2F5LmllIj4NCm51aWdhbHdheS5pZTwv YT4gJmx0OzxhIGhyZWY9Im1haWx0bzpvd25lci1jaGVtaXN0cnklMjAuJTIwY2NsLm5ldCI+b3du ZXItY2hlbWlzdHJ5IC4gY2NsLm5ldDwvYT4mZ3Q7IHdyb3RlOjxvOnA+PC9vOnA+PC9wPg0KPC9k aXY+DQo8YmxvY2txdW90ZSBzdHlsZT0iYm9yZGVyOm5vbmU7Ym9yZGVyLWxlZnQ6c29saWQgI0ND Q0NDQyAxLjBwdDtwYWRkaW5nOjBjbSAwY20gMGNtIDYuMHB0O21hcmdpbi1sZWZ0OjQuOHB0O21h cmdpbi1yaWdodDowY20iPg0KPHAgY2xhc3M9Ik1zb05vcm1hbCIgc3R5bGU9Im1hcmdpbi1ib3R0 b206MTIuMHB0Ij48YnI+DQpTZW50IHRvIENDTCBieTogJnF1b3Q7U2ltbWllLCBKb2huJnF1b3Q7 IFtqb2huLnNpbW1pZSA6IDxhIGhyZWY9Imh0dHA6Ly9udWlnYWx3YXkuaWUiIHRhcmdldD0iX2Js YW5rIj4NCm51aWdhbHdheS5pZTwvYT5dPGJyPg0KJmd0OyBPbmUgam9iIHdpdGggdGhlc2Uga2V5 d29yZHMgPGJyPg0KJmd0OyBwcm9kdWNlZCBjb3JyZWN0IGZyZXF1ZW5jaWVzLCBob3dldmVyIEkg YW0gbm90IHN1cmUgaXQgd2lsbCBiZSBhbHdheXMgc28uIEFuZCA8YnI+DQomZ3Q7IHRoaXMgam9i IGRlbWFuZGVkIG11Y2ggbW9yZSBDUFUgdGltZSwgc28gZXZlbiBpZiBpdCBoZWxwcywgSSBjYW4n dCB1c2UgdGhlc2UgPGJyPg0KJmd0OyBrZXl3b3JkcyB3aXRoIGFsbCBteSBqb2JzLiBTbywgYWdh aW4gdGhlIG1haW4gcXVlc3Rpb24gaXMgbm90IGhvdyB0byBnZXQgcmlkIDxicj4NCiZndDsgb2Yg dGhlIGltYWdpbmFyeSBmcmVxdWVuY2llcywgYnV0IHRvIGV4cGxhaW4gaW4gdGhlIHBhcGVyLCB3 aHkgdGhleSBhcmUgPGJyPg0KJmd0OyBwcm9kdWNlZCBhbmQgd2h5IEkgY2FuJ3QgY29tcHV0ZSB0 aGUgZW50cm9weSB3aXRoIG15IGpvYnMuPGJyPg0KJmd0OyBJZiBJIGFtIG5vdCBtaXN0YWtlbiwg dGhlIHZpYnJhdGlvbmFsIGVudHJvcHkgaXMgY29tcHV0ZWQgYXMgYSBzdW0gb2YgPGJyPg0KJmd0 OyBjb250cmlidXRpb25zIGJ5IGVhY2ggdmlicmF0aW9uYWwgbW9kZS4gU28sIG9uZSBtb3JlIHF1 ZXN0aW9uIGlzLCBpcyB0aGUgPGJyPg0KJmd0OyBmb2xsb3dpbmcgYXBwcm9hY2ggY29ycmVjdCAt IG9taXQgdGhlIHNtYWxsIG1vZGVzIHdoZW4gY29tcHV0aW5nIHRoZSBlbnRyb3B5Pzxicj4NCjxi cj4NClNtYWxsIG1vZGVzIGRvIGNvbnRyaWJ1dGUgdmVyeSBzdHJvbmdseSB0byB0aGUgdmlicmF0 aW9uYWwgZW50cm9weSB3aGVyZWFzIGZvciBleGFtcGxlIEMtLUggc3RyZXRjaGVzIGFyZSBvZiBt dWNoIGxlc3MgcmVsZXZhbmNlPGJyPg0KU28gbm8sIHlvdSBjYW5ub3QgaWdub3JlIHRoZW07IHRo ZSBxdWVzdGlvbiB0aGF0IHlvdSBoYXZlIHRvIGNvbnNpZGVyIGlzIHdoZXRoZXIgc3VjaCBtb2Rl cyBhcmUgdHJ1ZSB2aWJyYXRpb25zIGFuZCBpZiBub3Qgd2hldGhlciBhIGRpZmZlcmVudCB0cmVh dG1lbnQgaXMgcmVxdWlyZWQuPGJyPg0KPGJyPg0KJm5ic3A7ICZuYnNwO0VtZXJpdHVzIFByb2Zl c3NvciBKb2huIE0uIFNpbW1pZTxicj4NCiZuYnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyAmbmJz cDtTY2hvb2wgb2YgQ2hlbWlzdHJ5Jm5ic3A7ICZuYnNwO1JtIDI0Mzxicj4NCk5hdGlvbmFsIFVu aXZlcnNpdHkgb2YgSXJlbGFuZCwgR2Fsd2F5PGJyPg0KJm5ic3A7ICZuYnNwOyAmbmJzcDsgJm5i c3A7ICZuYnNwOyAmbmJzcDsgJm5ic3A7ICZuYnNwOyBJcmVsYW5kIEg5MSBUSzMzPGJyPg0KKzM1 My04Ni04MDUtOTk0OCA6OjogKzM1My05MS01OTI0NjI8YnI+DQombmJzcDsgJm5ic3A7ICZuYnNw OyAmbmJzcDsgJm5ic3A7IDAwMDAtMDAwMy0wNzE0LTc5NTY8YnI+DQo8YnI+DQo8YnI+DQo8YnI+ DQotPSBUaGlzIGlzIGF1dG9tYXRpY2FsbHkgYWRkZWQgdG8gZWFjaCBtZXNzYWdlIGJ5IHRoZSBt YWlsaW5nIHNjcmlwdCA9LSZsdDticjxicj4NCjxicj4NCjxicj4NCkUtbWFpbCB0byBzdWJzY3Jp YmVyczogPGEgaHJlZj0ibWFpbHRvOkNIRU1JU1RSWSUyMC4lMjBjY2wubmV0IiB0YXJnZXQ9Il9i bGFuayI+Q0hFTUlTVFJZIC4gY2NsLm5ldDwvYT4gb3IgdXNlOjxicj4NCiZuYnNwOyAmbmJzcDsg Jm5ic3A7IDxhIGhyZWY9Imh0dHA6Ly93d3cuY2NsLm5ldC9jZ2ktYmluL2NjbC9zZW5kX2NjbF9t ZXNzYWdlIiB0YXJnZXQ9Il9ibGFuayI+aHR0cDovL3d3dy5jY2wubmV0L2NnaS1iaW4vY2NsL3Nl bmRfY2NsX21lc3NhZ2U8L2E+PGJyPg0KPGJyPg0KRS1tYWlsIHRvIGFkbWluaXN0cmF0b3JzOiA8 YSBocmVmPSJtYWlsdG86Q0hFTUlTVFJZLVJFUVVFU1QlMjAuJTIwY2NsLm5ldCIgdGFyZ2V0PSJf YmxhbmsiPg0KQ0hFTUlTVFJZLVJFUVVFU1QgLiBjY2wubmV0PC9hPiBvciB1c2U8YnI+DQombmJz cDsgJm5ic3A7ICZuYnNwOyA8YSBocmVmPSJodHRwOi8vd3d3LmNjbC5uZXQvY2dpLWJpbi9jY2wv c2VuZF9jY2xfbWVzc2FnZSIgdGFyZ2V0PSJfYmxhbmsiPmh0dHA6Ly93d3cuY2NsLm5ldC9jZ2kt YmluL2NjbC9zZW5kX2NjbF9tZXNzYWdlPC9hPjxicj4NCiZsdDticjxicj4NCiZuYnNwOyAmbmJz cDsgJm5ic3A7IDxhIGhyZWY9Imh0dHA6Ly93d3cuY2NsLm5ldC9jaGVtaXN0cnkvc3ViX3Vuc3Vi LnNodG1sIiB0YXJnZXQ9Il9ibGFuayI+aHR0cDovL3d3dy5jY2wubmV0L2NoZW1pc3RyeS9zdWJf dW5zdWIuc2h0bWw8L2E+PGJyPg0KPGJyPg0KQmVmb3JlIHBvc3RpbmcsIGNoZWNrIHdhaXQgdGlt ZSBhdDogPGEgaHJlZj0iaHR0cDovL3d3dy5jY2wubmV0IiB0YXJnZXQ9Il9ibGFuayI+DQpodHRw Oi8vd3d3LmNjbC5uZXQ8L2E+PGJyPg0KPGJyPg0KSm9iOiA8YSBocmVmPSJodHRwOi8vd3d3LmNj bC5uZXQvam9icyIgdGFyZ2V0PSJfYmxhbmsiPmh0dHA6Ly93d3cuY2NsLm5ldC9qb2JzPC9hPg0K PGJyPg0KQ29uZmVyZW5jZXM6IDxhIGhyZWY9Imh0dHA6Ly9zZXJ2ZXIuY2NsLm5ldC9jaGVtaXN0 cnkvYW5ub3VuY2VtZW50cy9jb25mZXJlbmNlcy8iIHRhcmdldD0iX2JsYW5rIj4NCmh0dHA6Ly9z ZXJ2ZXIuY2NsLm5ldC9jaGVtaXN0cnkvYW5ub3VuY2VtZW50cy9jb25mZXJlbmNlcy88L2E+PGJy Pg0KPGJyPg0KU2VhcmNoIE1lc3NhZ2VzOiA8YSBocmVmPSJodHRwOi8vd3d3LmNjbC5uZXQvY2hl bWlzdHJ5L3NlYXJjaGNjbC9pbmRleC5zaHRtbCIgdGFyZ2V0PSJfYmxhbmsiPg0KaHR0cDovL3d3 dy5jY2wubmV0L2NoZW1pc3RyeS9zZWFyY2hjY2wvaW5kZXguc2h0bWw8L2E+PGJyPg0KJmx0O2Jy PGJyPg0KJm5ic3A7ICZuYnNwOyAmbmJzcDsgPGEgaHJlZj0iaHR0cDovL3d3dy5jY2wubmV0L3Nw YW1tZXJzLnR4dCIgdGFyZ2V0PSJfYmxhbmsiPmh0dHA6Ly93d3cuY2NsLm5ldC9zcGFtbWVycy50 eHQ8L2E+PGJyPg0KPGJyPg0KUlRGSTogPGEgaHJlZj0iaHR0cDovL3d3dy5jY2wubmV0L2NoZW1p c3RyeS9hYm91dGNjbC9pbnN0cnVjdGlvbnMvIiB0YXJnZXQ9Il9ibGFuayI+DQpodHRwOi8vd3d3 LmNjbC5uZXQvY2hlbWlzdHJ5L2Fib3V0Y2NsL2luc3RydWN0aW9ucy88L2E+PGJyPg0KPGJyPg0K PG86cD48L286cD48L3A+DQo8L2Jsb2NrcXVvdGU+DQo8L2Rpdj4NCjwvZGl2Pg0KPC9kaXY+DQo8 L2Rpdj4NCjwvYm9keT4NCjwvaHRtbD4NCg== --_000_AS8PR01MB78633E474D3F4D331B6E4FF794879AS8PR01MB7863eurp_-- --_004_AS8PR01MB78633E474D3F4D331B6E4FF794879AS8PR01MB7863eurp_ Content-Type: image/png; name="image001.png" Content-Description: image001.png Content-Disposition: inline; filename="image001.png"; size=3674; creation-date="Mon, 11 Jul 2022 18:08:37 GMT"; modification-date="Mon, 11 Jul 2022 18:08:37 GMT" Content-ID: Content-Transfer-Encoding: base64 iVBORw0KGgoAAAANSUhEUgAAAdcAAABrCAMAAAASJThJAAAAilBMVEX///8AAADPz8/l5eX7+/u1 tbVzc3M3Nzfz8/Oenp4yMjL39/fIyMjh4eHAwMCVlZXp6emurq7Z2dmlpaXu7u5oaGjb29tcXFyb m5vT09NNTU1ubm6FhYW8vLxAQEBlZWWKiop6enohISFWVlYaGhoSEhI0NDROTk4oKChGRkYUFBQ9 PT0cHBxXV1fghSa/AAANi0lEQVR4nO1dCbupQBieL0UU2lBExXEOx/H//96dpdJGG0W393lul9Fp e2e+fSaEevTo0aNHjx49evTo8WTwEGDd9qV0GbvgKQ8bOiEPC3NOoTZ0xv8SOnvG5m9zvG4bOlMP jEtzvAoNnakHxqjntZPoee0mel67iZ7XbqLntZvoee0mel67if+G10mrZ28cneTVGB+TTYqHkKSC SD7ruqDqgqAvG7ug5tFJXpHpJFt0GW9m3+Tj8qwgDxDylOYuqHF0k9f1LNlyJRt7Q7Zz/A9shDqt 77vJKwwSDdKCbM8y4nlJQmgKFm5r7nqaR7u88rI1fMHj5U6IO4I0cIixZI3wZszhjQFIWf2RtNI8 pX+7hlZ5VYQJHF5wrrFt2QbIaHEmX4hmHRp4MzsjaU53oD90Gi3LYeEl0vkyHyMNGH0SSeNL1I5a uJKvd6Hzuf2Web3As4zS2c+VgjBIrCIdCwJ7hxiTMuURVODpvgJMn3TWt0W7vErH3QtOJeChivb4 dNwFubSFimENeE+nX+3uByna5VV+SXmVi5XoAMQpkncyG6AXslEdpA8RGb/7xQvO+l5ol9c58TcC BB95K73jfXBWKmxEpOwMMIHyiDUsqbV01tESHCz3rf8gVN0urwBEQMrmEm2PJ9BY4wXmhY8q2OMD HOPaUhzjzYBI3CkbrcilO8yxR6VjWlVd1ztfQ9cqrxLxcow9APDKEHwjdQsBwfkYkwCSCnlm0Ct8 qTdHq7wKYKLBUUNnEJES8KpCYe2n/tH/dgAPd5u6Ja6zI2iVVwcUxSbDFvM6CHjdFTeR13NeFEX+ APAwNeO2kbhRG8wq2OmmVnmFHSIjTYMVCnlVLoUPKcFuuMHwvGEyHhxDYbH+RGx/GjyZkFY0bfIq w2ZBEqIusV0DXku4IDKMn3Z5T4bwCg/5fuf1Uk+tTV51WNG2XzJoGa98Gc9SLq6JG4YIpXy1TPCp lkl2MwEkE5Nt8npiUQmN0sN43RslDinn2Evt4SdD45WDtlslm0jJBxoz29/zBNNRBS/w17aQ4LtF Xqc+LTa2ihGzh/elVKEFILNPsvyEK3we1OKe2l2cuGQLLfmwTuTjErPmfeOmcBjsEz2pRV63wK6F uJ+4t51ha5aUXtjxZTrnzabU7ve1D6GkRZFDhqRH+Rrjjxfsu8th8tqFeB67RV5t1qs5GCFBJrxO yiolFeiI5b2mbqIYllBbDNMQqCYFQVX6oKijcJYNmSPKVIHYgLYS58zj1Zi77gwfPyUVcsBPFcNQ MIJulOYVWK8WYKgSQXx+7IRmYo2J/T3Cd+k/fAIk+552X8FNLUhCtXoQe44OxxNSDuQkHLnBGX1+ +OvcIUJqnjg7sFrLAI95xS6/OZ2qe1Moa3nyyz+Aq21P4MyCfCleZWCWgQAsHjypED3gXTLlvg1a RRvuWW3S7Qeyl5i9Vw5gulFm+Dj2F/KreFZEDM8OLPKNpXLCQR7F540/5vXPv8IzNW3KAZtFRF5Y vl96v25txpR/GUs4Almu+Id1od7jdRv8wJtXKMOrwfkgotyU0NDB+hTzqhBaWeWdM+eY5OSTyREb YrW1D3mdBXSKFWTk0r89j/3fdr3/03HXy/KCmi2eR5syvE7NMYVJ+gamb4LHhXBEAyrVB1R/nkyf CTlZcunGL+chr1fQ/U/Fg3sh5sCynxobt/8PrwBu+HlcUQ5fPd8kXgJiQbU5sZ0GgObMPrKTygeL x6gN9JDXFQTOccpJzsfCt9CsntfyIHlpdzPlMa9+JIkOEnWBuAkig+24SfzFEmIxp4e8zoMcC6pQ 5wV+LA3rIZLa6CyvGr4vRR+HZi9WrzeXowivxnysJ6JFMnEVVgcsai1fa1pUnY5MZMBaQoYMduK4 WCxGFexjuwmgckXm1ndj8DFo1+oor1sHa9MxscqDEJMQFYgFePVMTYdQ4TEoSrAJuotKByMZKVPc JFualfA8Fex+RL4+5pWD5BkLw/athwUw3dxNXqfaCFYrk6SSA6msR8s38nndkOeLSclJTTnZ8f4I sEcZ+ZYTl5AfjljpdxLBXyxc9AM6L0nqF3jsirrJK6HxRMaVGI7ScyleVZbQ2+SlMPINnAkrFvOR F2/iHhErbbwINlElbACYC+y+CcG5ussre+S/QZBpXYrXtSPPZjP5AKlMWwz6w18pyvFKia2QnTBh R8kNbzHO6yAXRsH9Xgkl62IDjZfg9ZjHqxg/DGs04CqoGIIgPKybyae1LK+U2PyjJrGhSdULuEFD jNcT5EOKroHaEuizFuNtQey3LK/z+GFYo3Z7QHVRmNfA4JrnlIVlgt2/DGE9SIxXLh/0KckFdnwh /DRY/CoCnsryqsSO4tsiGpxKP9o7KMqrEMSRJYA7aWsp3gUjlrfld0gIo9Fd16+5vGZCu8nCuvOA C/MaynRqEgR2dtTe5t15BG4kYun6RvcmLEGqx6tYLStSCQVjMPd4LWUPGxDE72d1u31RXnehGUxv QMVXQLqUDosClbEr34i+Bdtq8cofG+R1Vixoeo/XTSl7+CcIENQu1ZpAtGTiLq/8/uQPTZ0x4vln LpIC4CGY1xo63HV45U+Nzlc1k7HXTNzzc2LzUMYAj+UrFsRgi8Zy7Va50igmEO2PjNclpG4FS4g9 NZdkX1IYjBirSI2HG6pkLyhBqsPrpGLM6yGE+97bqIBbQeJKhDKPpfWlMDCnRuPDw1wn0WW2SYXE ShwDiC3pwHg9Q6rgVeCQvHGGw8khMIYX1HTb5EpEXvWujnMQ6HC3Vs56XDPuP57kBtFyIHHpIUhm d0x1elGGxXEa+ef/ZKXWk0lBVA+OM5wp5tVZ2RyaDfEds+pA5ZbPmeFfnZXw+GDWFeBUvyBKi4ci Ga8CfCfFBX2UvCHe2mUaEqnasarzqjxhNQgzXSFIDTtmri88QwFdlMN7O9QZPtE8XSGIz1gSZwmx QhhfvxYyS3aniPdTFtV5HeaoqCKwU1NqNdIi0YEpuv7aBWH/2dZ5ycQKUqu9NYApxErDy9SZctgY qlypm8XrYFqgm4jPeEz7VD0lXXKCo6rFwA9kuMOC4fZg6pxTaGUaggexNanK8MrDUKmsCDJ43eo3 tS7v/y7n9fl7dD6fJ5NoEGb8hBe0DABJmx+kzMkcTIXaF1QMe2Nk/g0VMnDjpplXIcQWQGuFVxvc 6NdSdeEm2JVv9846BMEnBzg8Wvb08Yp/m9g+NydHS1YJFIR8Rlcy+87+JV9cvOGokbGT/bLNRJU1 5rWGJZOTm3kN/uI9sVy9f43V0bJ4lUP3SmJzxfxItBoZPNaNe3ldtRp3Yw7xwXlWjUtVrUfEsAhI Y/5Yssp6WWfMqeBW/+OK4BOvhyvH67C6ZZrF6zgMPLMwf1A7o0Y8Azt4wpJNMiLFeZUvZwpS8EWi mcIXq7JmUp3WjKgrz7enjokOq92NiRfBsbY3WhrbhNNQjtcahmkWr4swounSrQfs/+glXiMF0FWr 55ckOLBwidHoT0GzaGG042lfdy7ur2r9D8E4OWvx9fAS8qXN+a88hHMR6HOQvrLWKgA3/Fy1alNY EctoKaHlccqUtU0lwn6JJbFhkN6ejHnXW5CzxEpFz4GY9PHb5FXAxglPGPXFgALpfj54Bq/nLTmQ ZmDx6vNH1ybBoxedbWIgrUbJPznVmvWjPsHlLgUvGbVvk1cXezmWCrDxzUczY10BNVoQWYRXbrUY JmKiEhEL1gr/qT9afWtYx8JY8PBPqrPQEwN2H8t6lYbX7IxcJfVc2uR1T3SCdbMxfjOKLbcQidUW 4PUiI2sCXs5e+UFuvarp7WPSaBXBKZVcaJHXJbVSb2pMgoxwu1OuGnfEsQPl3FW+7tSrV8QznBqc 5ndO54xa5FXH7rsQOf02y2csV407ZoR5GYo6Ci5/fSDMa/mpoVHwDWrYjEKHFnk9w0CI8jTMivGU q8adrMm7vs1RTsTHza/40HMr8N8bLfIKJ+c7mvbNlHz3eOW3swi2rHkKm6mGsZwu69bN9LwWRIrX LZw4LqIIjUwL9B6vRlYp5BOrcXteCyLFK1lTWoHbIpc6ZC14eVcOizEwdfrETErPa0GkeB0Rjna3 QM8u01AppV+tW5VY3dVEe14LIsmrSEu1XPL0aA5byfJy6NrCxXnFDo7vuY7rLsBW2x5uGa3xqtLv GnxJO2q7mtkyVC0Vl3ACYmvLYz27m30MWuP1m6Va2UQmcYZdTrjM0qt/CdE4op5XjascAdYcJ9RJ xjDY9eKIraPt9w4aKit8ZPukowmzaNz/AHnFbyozj+unU/Y144hto21ecxGpxtXJLKCcalzFBTg8 4S1lp/qV2q3i7Xn9azyXSZGfO3hvvD2vbivVfQY8oQqyTbw9r1YrvGo5mYO3x9vzyleZLV8b8oer 1/fnFS3akIj2p8+uf39ep21Md4Hf5s/5VLw/r2jY/MvQ+Q+3hj+CV+UJL6MpCfezgxLoI3hFq8bf cv/78e9f/wRe+f0r1iF4AK/Jl8u9Bp/AK/ZhG3w5IwlKfHTIn+IjeEVy8XeH1ke6yPoD0SCvddzQ bYMDdvv5oxWhS3O8enTlTlVtYdLv/4Mte8bCvjleA6TmOPV4HsKVYt/1Fao9evTo0aNHjx49evTo 0aPHQ/wDYT6h4ISK7bEAAAAASUVORK5CYII= --_004_AS8PR01MB78633E474D3F4D331B6E4FF794879AS8PR01MB7863eurp_-- From owner-chemistry@ccl.net Mon Jul 11 15:08:00 2022 From: "Fco. Javier Modrego modrego|a|unizar.es" To: CCL Subject: CCL: Gaussian 09 limit on SCF for MM Message-Id: <-54771-220711144016-32164-zBhAidTZdxbmYYk1gRm6GA[A]server.ccl.net> X-Original-From: "Fco. Javier Modrego" Content-Type: multipart/alternative; boundary="Apple-Mail=_90CB4022-DF33-46EF-A5B4-E17C9E068FC0" Date: Mon, 11 Jul 2022 20:40:07 +0200 Mime-Version: 1.0 (Mac OS X Mail 12.4 \(3445.104.21\)) Sent to CCL by: "Fco. Javier Modrego" [modrego!=!unizar.es] --Apple-Mail=_90CB4022-DF33-46EF-A5B4-E17C9E068FC0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 Setting SCF(MaxCycle=3DN) is not enough instead of tweeking iOPs? > El 11 jul 2022, a las 16:12, Jo=C3=A3o Paulo Ara=C3=BAjo = joaojpkl56++gmail.com escribi=C3=B3: >=20 > IOp(1/152) >=20 > L103: Control of MaxStp (allocated max number of steps in L103). >=20 > 0 Default: compute based on number of variables, NStep, etc. > N>0 Make MaxStp at least N. > N<0 Make MaxStp at least -N. >=20 > Em seg., 11 de jul. de 2022 =C3=A0s 10:02, Massimo Ottonelli = Massimo.Ottonelli|a|unige.it > escreveu: >=20 > Sent to CCL by: Massimo Ottonelli [Massimo.Ottonelli*|*unige.it = ] > Dear all, > performing an scf MM (Uff) calculations on a very large system with =20= > G09 I get an error since the limit of > scf steps is passed. > I remember that the MaxStp limit (default ) can be overcomed with =20= > the IOP command but I don't remember the > correct sintax. Could someone help me in recover it? >=20 > Thanks in advance >=20 > --=20 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > Dr. Massimo Ottonelli, PhD in Chimica Teorica > Address: Universita' degli studi di Genova > via Dodecaneso, 31 I-16146 Genova > Dipartimento di Chimica e Chimica Industriale > Laboratorio di Chimica Teorica e Quantistica > E-mail:massimo.ottonelli * unige.it > Tel: +39-010-3536105 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D >=20 >=20 >=20 > -=3D This is automatically added to each message by the mailing script = =3D- >=20 >=20 >=20 > E-mail to subscribers: CHEMISTRY() ccl.net or use:= >=20 > E-mail to administrators: CHEMISTRY-REQUEST() ccl.net = or use= >=20 >=20= >=20= >=20=20 > Conferences: = http://server.ccl.net/chemistry/announcements/conferences/ = >=20= >=20 >=20= >=20= >=20 >=20 Prof. Dr. F.J. Modrego Department of Inorganic Chemistry Facultad de Ciencias University of Zaragoza 50009 ZARAGOZA SPAIN Tel <34>-976-762288 Fax <34>-976-761187 E-mail: modrego++unizar.es --Apple-Mail=_90CB4022-DF33-46EF-A5B4-E17C9E068FC0 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=utf-8 Setting SCF(MaxCycle=3DN) is not enough instead of tweeking = iOPs?



El 11 jul 2022, a las 16:12, Jo=C3=A3o Paulo Ara=C3=BAjo = joaojpkl56++gmail.com <owner-chemistry++ccl.net> escribi=C3=B3:

IOp(1/152)

L103: Control of MaxStp (allocated max number = of steps in L103).

0 Default: compute based on number of variables, NStep, = etc.
N>0 Make MaxStp at least N.
N<0 Make MaxStp at least = -N.

Em seg., 11 = de jul. de 2022 =C3=A0s 10:02, Massimo Ottonelli Massimo.Ottonelli|a|unige.it <owner-chemistry() = ccl.net> escreveu:

Sent to CCL by: Massimo Ottonelli [Massimo.Ottonelli*|*unige.it]
  Dear all,
  performing an scf MM (Uff) calculations on a very large system = with 
G09 I get an error since the limit of
  scf steps is passed.
  I remember that the MaxStp limit (default ) can be overcomed = with 
the IOP command but I don't remember the
  correct sintax. Could someone help me in recover it?
=
    Thanks in advance

--
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D
  Dr. Massimo Ottonelli, PhD in Chimica Teorica
  Address: Universita' degli studi di Genova
                   via = Dodecaneso, 31 I-16146 Genova
                  =  Dipartimento di Chimica e Chimica Industriale
                  =  Laboratorio di Chimica Teorica e Quantistica
  E-mail:massimo.ottonelli * unige.it
  Tel: +39-010-3536105
  =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D



-=3D This is automatically added to each message by the mailing script = =3D-



E-mail to subscribers: CHEMISTRY() ccl.net or use:
      http://www.ccl.net/cgi-bin/ccl/send_ccl_message

E-mail to administrators: CHEMISTRY-REQUEST() ccl.net or use
      http://www.ccl.net/cgi-bin/ccl/send_ccl_message


      http://www.ccl.net/chemistry/sub_unsub.shtml
=
Before posting, check wait time at: http://www.ccl.net

Job: http://www.ccl.net/jobs
Conferences: http://server.ccl.net/chemistry/announcements/conferences/<= br class=3D"">
Search Messages: http://www.ccl.net/chemistry/searchccl/index.shtml


      http://www.ccl.net/spammers.txt

RTFI: http://www.ccl.net/chemistry/aboutccl/instructions/



Prof. Dr. F.J. = Modrego
Department of = Inorganic Chemistry
Facultad de Ciencias
University of Zaragoza
50009 = ZARAGOZA
SPAIN
Tel = <34>-976-762288
Fax = <34>-976-761187

= --Apple-Mail=_90CB4022-DF33-46EF-A5B4-E17C9E068FC0-- From owner-chemistry@ccl.net Mon Jul 11 15:43:01 2022 From: "Henrique C. S. Junior henriquecsj[]gmail.com" To: CCL Subject: CCL: [CCL] CCL CCL: Negative frequencies with C1 symmetry (Orca) Message-Id: <-54772-220711151408-32728-TETc0Zhl+ZDJeYPTyxbngw|*|server.ccl.net> X-Original-From: "Henrique C. S. Junior" Content-Type: multipart/alternative; boundary="000000000000c2088b05e38c5a94" Date: Mon, 11 Jul 2022 16:12:01 -0300 MIME-Version: 1.0 Sent to CCL by: "Henrique C. S. Junior" [henriquecsj::gmail.com] --000000000000c2088b05e38c5a94 Content-Type: text/plain; charset="UTF-8" Here is the link, Grigoriy: https://orcaforum.kofo.mpg.de/viewtopic.php?f=11&t=6361&start=10 On Mon, Jul 11, 2022 at 4:09 PM Grigoriy Zhurko reg_zhurko ~ chemcraftprog.com wrote: > > Sent to CCL by: Grigoriy Zhurko [reg_zhurko++chemcraftprog.com] > > > There are several discussions on the ORCA users forum ( > > https://orcaforum.kofo.mpg.de/) > > regarding imaginary modes. > > > I think the topic "Imaginary frequencies after optimization Pd complex" > > should be helpful. > > I was unable to find this topic there, can you provide me an URL? > Grigoriy.> > > -- *Henrique C. S. Junior* --000000000000c2088b05e38c5a94 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
On Mon, Jul 11, 2022 at 4:09 PM Grigoriy Zhurko r= eg_zhurko ~ chemcraftprog.com <= owner-chemistry!^!ccl.net> = wrote:

Sent to CCL by: Grigoriy Zhurko [reg_zhurko++chemcraftprog.com]

> There are several discussions on the ORCA users forum (
> https://orcaforum.kofo.mpg.de/)
>=C2=A0 regarding imaginary modes.

>=C2=A0 I think the topic "Imaginary frequencies after optimization= Pd complex"
> should be helpful.

=C2=A0 I was unable to find this topic there, can you provide me an URL? =C2=A0 Grigoriy.



-=3D This is automatically added to each message by the mailing script =3D-=
E-mail to subscribers: CHEMISTRY!^!ccl.net or use:
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/cgi-bin/ccl/s= end_ccl_message

E-mail to administrators: CHEMISTRY-REQUEST!^!ccl.net or use
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/cgi-bin/ccl/s= end_ccl_message
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/chemistry/sub_un= sub.shtml

Before posting, check wait time at: http://www.ccl.net

Job: http://www.ccl.net/jobs
Conferences: http://server.ccl.net/chemist= ry/announcements/conferences/

Search Messages: http://www.ccl.net/chemistry/sear= chccl/index.shtml
=C2=A0 =C2=A0 =C2=A0 http://www.ccl.net/spammers.txt

RTFI: http://www.ccl.net/chemistry/aboutccl/ins= tructions/




--
= Henrique C. S. Junior

--000000000000c2088b05e38c5a94--