.. _x-ray-cpp: Complex polarization propagator in the X-ray region =================================================== .. objectives:: - Learn how to run a complex polarization propagator (CPP) calculation. .. keypoints:: - Run a CPP calculation. - Plot the absorption spectrum. - Perform scalability test of the CPP calculation. Introduction ------------ In this exercise we will use an efficient implementation of the complex polarization propagator approach (CPP) to compute the near-edge X-ray absorption fine-structure spectrum of free-base porphyrin. Conventional response theory solves a generalized eigenvalue problem and provides excitation energies starting from the lowest excited states. It is therefore impractical to study spectral regions with high density-of-states. The CPP approach introduces a damping term which, from a purely computational perspective, removes the singularities of the response functions at resonance frequencies. The damped response theory can be applied to any frequency region of interest. You may read more in `this paper `_ :cite:`Kauczor2014-vg` The CPP solver in VeloxChem will solve multiple frequencies simultaneously. The complex response equations for a given frequency can be expressed in terms of a coupled set of linear equations for a real symmetric matrix .. math:: \begin{pmatrix} E^{[2]} & -\omega S^{[2]} & \gamma S^{[2]} & 0 \\ -\omega S^{[2]} & E^{[2]} & 0 & \gamma S^{[2]} \\ \gamma S^{[2]} & 0 & -E^{[2]} &\omega S^{[2]} \\ 0 & \gamma S^{[2]} & \omega S^{[2]} & -E^{[2]} \end{pmatrix} \begin{pmatrix} X^R_g\\ X^R_u\\ X^I_u\\ X^I_g \end{pmatrix} = \begin{pmatrix} G^R_g\\ G^R_u\\ -G^I_u\\ -G^I_g \end{pmatrix} Here, :math:`\omega` is the frequency, :math:`\gamma` is the damping parameter, :math:`E^{[2]}` and :math:`S^{[2]}` are the Hessian and metric matrices, respectively, and :math:`G` is the gradient vector. The :math:`R`/:math:`I` superscripts denote real/imaginary components, while the :math:`g`/:math:`u` subscripts denote *gerade*/*ungerade* symmetry. System: free-base porphyrin --------------------------- .. raw:: html
Input file ---------- Below is the input file for a CPP calculation of free-base porphyrin. You can read more about the VeloxChem input keywords in `this page `_. .. literalinclude:: inputs/porphyrin.inp :emphasize-lines: 10-13 Exercise -------- - Submit a job Runs the above example on **16** nodes. On Beskow this will take around 9 minutes so please make sure that you specify a proper walltime limit in the job script. - Plot and analyse the spectrum The absorption spectrum will be printed at the end of the output file. Compare this to the results provided in `this Jupyter notebook on MyBinder `_, where analysis of polarization dependence and the association of features to chemically unique atoms is also available. Results for a smaller system (vinylfluoride) are also available. - Run scalability test Run the CPP calculation on fewer number of nodes and plot the speedup with respect to the number of nodes.