Kind regards,
Michael
Hi!
I tried to use your suggestion and the program says the following: "Note: Albeit "orca_2mklpath" parameter in settings.ini has been defined, the orca_2mkl executable file cannot be located, therefore the .gbw file cannot be directly opened by Multiwfn".So, what do I do?
PS: I'm new at this, just trying it for the first time
Multiwfn cannot directly open .gbw file because it is a private binary format of ORCA. If you want to directly use .gbw file as input file of Multiwfn without manually converting it to .molden file, which is supported by Multiwfn, you should define "orca_2mklpath" in settings.ini to actual path of orca_2mkl executable file in ORCA folder, in this case Multiwfn will automatically invoking orca_2mkl to convert .gbw to .molden when Multiwfn loads .gbw file.
]]>So, what do I do?
PS: I'm new at this, just trying it for the first time
When I choose to export the cube file, does it export the ESP values at all the points or just the ones in the surface being displayed?
Thanks.
Jim
]]>Example input file:
! mp2 def2-SVP keepdens
%mp2
density relaxed
natorbs true
end
* xyz 0 1
O -0.00000000 -0.00000000 0.11930801
H 0.00000000 0.75895306 -0.47723204
H -0.00000000 -0.75895306 -0.47723204
*
After calculation, you will have h2o.mp2nat and h2o.pmp2re in current folder, the former contains nature orbitals, the latter contains density matrix, both of them corresponding to MP2 relaxed density.
Then rename .mp2nat as .gbw
mv h2o.mp2nat h2o.gbw
Use h2o.gbw as input file for Multiwfn to carry out ESP analysis as I described in 1#, then use below command to calculate ESP on surface vertices:
orca_vpot h2o.gbw h2o.pmp2re surfptpos.txt out.txt
The resulting out.txt records ESP corresponding to MP2 relaxed density.
]]>Perform a regular single point calculation for water
! B3LYP def2-SVP keepdens
%maxcore 1000
%pal nprocs 4 end
* xyz 0 1
O -0.00000000 -0.00000000 0.11930801
H 0.00000000 0.75895306 -0.47723204
H -0.00000000 -0.75895306 -0.47723204
*
After calculation, you can find h2o.gbw and h2o.scfp in current folder, the latter records density matrix.
Run below command to convert h2o.gbw file to h2o.molden.input
orca_2mkl h2o -molden
PS: This step can be skipped if orca_2mklpath in settings.ini file of Multiwfn has been set to actual path of orca_2mkl, because in this case Multiwfn can directly open .gbw file by automatically invoking orca_2mkl.
Boot up Multiwfn and input
h2o.molden.input
12 // Quantitative analysis of molecular surface
5 // Let Multiwfn load mapped function values from external file
1 // Load mapped function at all surface vertices from plain text file
0 // Start analysis
Now you can find surfptpos.txt in current folder, which contains position of all surface vertices. Put it to the folder containing h2o.gbw and h2o.scfp, then run below command in this folder
orca_vpot h2o.gbw h2o.scfp surfptpos.txt out.txt
The outputted out.txt contains ESP value of surface vertices.
Now, input the path of the out.txt file in Multiwfn window, Multiwfn will load ESP from this file and then analyze ESP on molecular surface.
]]>