<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://sobereva.com/wfnbbs/extern.php?action=feed&amp;tid=811&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Multiwfn forum / The "ORCA_CP.sh" script was prepared for a trimer complex]]></title>
		<link>http://sobereva.com/wfnbbs/viewtopic.php?id=811</link>
		<description><![CDATA[The most recent posts in The "ORCA_CP.sh" script was prepared for a trimer complex.]]></description>
		<lastBuildDate>Mon, 17 Apr 2023 15:32:29 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: The "ORCA_CP.sh" script was prepared for a trimer complex]]></title>
			<link>http://sobereva.com/wfnbbs/viewtopic.php?pid=3100#p3100</link>
			<description><![CDATA[<p>Dear Tian,</p><p>Many many thanks for your highly kind attention and very valuable recommendation. Please, also, accept my highest apology for taking your valuable time while I well know you are extremely busy, my nice friend.</p><p>Please be aware that, taking your nice suggestion, I did perform two calculations using G16 and Orca 5.0.3 employing the method you introduced (HF/def2-SVP tight SCF) and both results are exactly the same making me completely relieved the prepared script works without any problem. </p><p>Yours sincerely,<br />Saeed</p>]]></description>
			<author><![CDATA[dummy@example.com (saeed_E)]]></author>
			<pubDate>Mon, 17 Apr 2023 15:32:29 +0000</pubDate>
			<guid>http://sobereva.com/wfnbbs/viewtopic.php?pid=3100#p3100</guid>
		</item>
		<item>
			<title><![CDATA[Re: The "ORCA_CP.sh" script was prepared for a trimer complex]]></title>
			<link>http://sobereva.com/wfnbbs/viewtopic.php?pid=3099#p3099</link>
			<description><![CDATA[<p>Dear Saeed,</p><p>I am too busy to check and test the script. As long as the result of the script is identical to counterpoise=3 task of Gaussian, the script must be correct. I suggest performing the comparison at HF/def2-SVP level, and use &quot;tightSCF&quot; in ORCA. In this case, it is expected that the results of the two codes are exactly the same.</p><p>Best,</p><p>Tian</p>]]></description>
			<author><![CDATA[dummy@example.com (sobereva)]]></author>
			<pubDate>Mon, 17 Apr 2023 12:57:06 +0000</pubDate>
			<guid>http://sobereva.com/wfnbbs/viewtopic.php?pid=3099#p3099</guid>
		</item>
		<item>
			<title><![CDATA[The "ORCA_CP.sh" script was prepared for a trimer complex]]></title>
			<link>http://sobereva.com/wfnbbs/viewtopic.php?pid=3096#p3096</link>
			<description><![CDATA[<p>Dear Tian,</p><p>Taken the so nice &quot;ORCA_CP.sh&quot; script into account and a simple analysis on what this script does, I did edit it so that it becomes able to extract corresponding values for a given trimer complex including three monomers. This script is respectfully given as below. If possible, please confirm its content is completely correct so that I can use it for my purposes. Please be aware that this script extracts results only in atomic units and kcal/mol.</p><p>#This script is used to print binding energy for all output files<br />#Corresponding to the task created by Multiwfn (<a href="http://sobereva.com/542" rel="nofollow">http://sobereva.com/542</a>)<br />#!/bin/bash<br />for inf in *.out<br />do<br />echo File: $inf<br />grep &quot;FINAL SINGLE POINT ENERGY&quot; $inf |cut -c 29-45|tr &quot;\n&quot; &quot; &quot; &gt; tmp.txt<br />read Etot E1 E2 E3 E4 E5 E6&lt; tmp.txt<br />echo &quot; E(ABC) = $Etot Hartree&quot;<br />echo &quot; E(A)_ABC = $E1&#160; &#160; E(A) = $E4 Hartree&quot;<br />echo &quot; E(B)_ABC = $E2&#160; &#160; E(B) = $E5 Hartree&quot;<br />echo &quot; E(C)_ABC = $E3&#160; &#160; E(C) = $E6 Hartree&quot;<br />echo &quot; Raw interaction energy:&quot;<br />echo &quot;$Etot-($E4)-($E5)-($E6)&quot; |bc | awk &#039;{printf &quot;%10.7f Hartree\n&quot;, $0}&#039;<br />echo &quot;627.51*($Etot-($E4)-($E5)-($E6))&quot; |bc | awk &#039;{printf &quot;%10.3f kcal/mol\n&quot;, $0}&#039;<br />echo &quot; BSSE corrected interaction energy:&quot;<br />echo &quot;$Etot-($E1)-($E2)-($E3)&quot; |bc | awk &#039;{printf &quot;%10.7f Hartree\n&quot;, $0}&#039;<br />echo &quot;627.51*($Etot-($E1)-($E2)-($E3))&quot; |bc | awk &#039;{printf &quot;%10.3f kcal/mol\n&quot;, $0}&#039;<br />echo &quot; BSSE correction energy:&quot;<br />echo &quot;($E4)-($E1)+($E5)-($E2)+($E6)-($E3)&quot; |bc | awk &#039;{printf &quot;%10.7f Hartree\n&quot;, $0}&#039;<br />echo &quot;627.51*(($E4)-($E1)+($E5)-($E2)+($E6)-($E3))&quot; |bc | awk &#039;{printf &quot;%10.3f kcal/mol\n&quot;, $0}&#039;<br />echo &quot; BSSE corrected complex energy:&quot;<br />echo &quot;$Etot+($E4)-($E1)+($E5)-($E2)+($E6)-($E3)&quot; |bc | awk &#039;{printf &quot;%10.7f Hartree\n&quot;, $0}&#039;<br />echo<br />rm -r tmp.txt<br />done</p><p>This script was checked for a ternary complex using Orca as well as G16 and corresponding results were highly close to each other; that is:<br />with G16: raw_interaction energy, corrected_interaction energy, and BSSE was calculated to be -24.74, -23.48, and 1.25 kcal/mol, respectively, while using Orca and executing this script, these values were computed to be -24.56, -23.30, and 1.26 kcal/mol. In consequence, if you also agree, the above script seems to work quite fine.</p><p>In advance, too many thanks for your kind attention and your highly valuable time.</p><p>Sincerely yours,<br />Saeed</p>]]></description>
			<author><![CDATA[dummy@example.com (saeed_E)]]></author>
			<pubDate>Sun, 16 Apr 2023 18:47:53 +0000</pubDate>
			<guid>http://sobereva.com/wfnbbs/viewtopic.php?pid=3096#p3096</guid>
		</item>
	</channel>
</rss>
