Processing and plotting for rovibrational line lists (DAT2GR)

The DAT2GR program is used to process and to generate plots from rovibrational infrared and Raman line lists generated by the RCI and RVCI programs that are part of the VSCF and VCI progam.

The DAT2GR program (DAT2GR)

DAT2GR,options

The DAT2GR program allows for the processing of rovibrational line lists (IR and Raman) to modify data, apply line-broadening and temperature effects or generate plots. The file containing the line list must be generated before by the RCI or RVCI methods which are part of the VSCF or VCI programs. DAT2GR does not require any XSURF or VSCF calculations prior to its call, but requests at least a Hartree-Fock calculation, which is always needed in Molpro.
The following options are available:

The following example generates a rovibrational IR spectrum for the spectral range between 900 and 1100 cm$^{-1}$ for the given temperature of 300 K from the line list provided in the file H2CS_IR_VCI_J3.dat and dumps the output to H2CS_IR_VCI_J3_graph.dat.

!options: --logfile-scratch
memory,50,m
mass,iso

geometry={
   S
   C,S,rcs
   H1,C,rch,S,ahcs
   H2,C,rch,S,ahcs,H1,180
}

rcs = 1.2 ang
rch = 1.0 ang
ahcs = 120 degree

basis=vdz
hf
dat2gr, extern='H2CS_IR_VCI_J3.dat', Emin=900, Emax=1100, Einc=1d-1
dat2gr, type='IR', profile='Voigt', dump='H2CS_IR_VCI_J3_graph.dat', TList='300', print=2

This example generates a Gauss-broadened rovibrational Raman spectrum from 0 to 200 cm$^{-1}$ for a set of FWHM of $\{0.5,1.0,2.0\}$ cm$^{-1}$ and temperatures of $\{5,50,150,295\}$ K from the line list provided in the file H2CS_Raman_RVCI_J3.dat and dumps the output to H2CS_Raman_RVCI_J3_Gauss.dat by re-calculating intensities from the transition moments $R_0$ and $R_2$ and uses a polarization angle of $90^\circ$ and a laser frequency of $514$ nm.

!options: --logfile-scratch
memory,50,m
mass,iso

geometry={
   S
   C,S,rcs
   H1,C,rch,S,ahcs
   H2,C,rch,S,ahcs,H1,180
}

rcs = 1.2 ang
rch = 1.0 ang
ahcs = 120 degree

basis=vdz
hf
DAT2GR,extern='H2CS_Raman_RVCI_J3.dat',dump='H2CS_Raman_RVCI_J3_Gauss.dat',TLIST='5,50,150,295',METHOD='INT_TM',PROFILE='GAUSS',EMIN=0,EMAX=200,EINC=1d-2,FWHM_LIST='0.5,1.0,2.0',RAMAN_POLANG=90,RAMAN_LFREQ=514