Subsections


The R2eff model

This is the simplest of all models in that the dispersion component of the base data - the peak intensity values - is not modelled. It is used to determine either the R2eff or R1ρ values and errors as required for the base data for all other models. It can be selected by setting the model to `R2eff'. Depending on the experiment type, this model will be handled differently. The R2eff/ R1ρ values determined can be later copied to the data pipes of the other dispersion models using the appropriate user functions.

Fixed relaxation period experiments

For the fixed relaxation time period CPMG-type experiments, the R2eff/ R1ρ values are determined by direct calculation using the formula

R2eff(νCPMG) = - $\displaystyle {\frac{{1}}{{T_{\textrm{relax}}}}}$⋅ln$\displaystyle \left(\vphantom{ \frac{I_1(\nu_{\textrm{CPMG}})}{I_0} }\right.$$\displaystyle {\frac{{I_1(\nu_{\textrm{CPMG}})}}{{I_0}}}$$\displaystyle \left.\vphantom{ \frac{I_1(\nu_{\textrm{CPMG}})}{I_0} }\right)$. (11.2)

The values and errors are determined with a single call of the minimise.calculate user function. The R1ρ version of the equation is essentially the same:

R1ρ(ω1) = - $\displaystyle {\frac{{1}}{{T_{\textrm{relax}}}}}$⋅ln$\displaystyle \left(\vphantom{ \frac{I_1(\omega_1)}{I_0} }\right.$$\displaystyle {\frac{{I_1(\omega_1)}}{{I_0}}}$$\displaystyle \left.\vphantom{ \frac{I_1(\omega_1)}{I_0} }\right)$. (11.3)

Errors are calculated using the formula

σR2 = $\displaystyle {\frac{{1}}{{T_{\textrm{relax}}}}}$$\displaystyle \sqrt{{ \left( \frac{\sigma_{I_1}}{I_1(\omega_1)} \right)^2 + \left( \frac{\sigma_{I_0}}{I_0} \right)^2 }}$. (11.4)

The derivation of this is simple enough. Rearranging 11.2,

R2Trelax = - ln$\displaystyle \left(\vphantom{ \frac{I_1}{I_0} }\right.$$\displaystyle {\frac{{I_1}}{{I_0}}}$$\displaystyle \left.\vphantom{ \frac{I_1}{I_0} }\right)$. (11.5)

Using the rule

ln$\displaystyle \left(\vphantom{\frac{X}{Y}}\right.$$\displaystyle {\frac{{X}}{{Y}}}$$\displaystyle \left.\vphantom{\frac{X}{Y}}\right)$ = ln(X) - ln(Y), (11.6)

where X and Y are normally distributed variables, then

R2Trelax = ln(I0) - ln(I1), (11.7)

and

R2 = - $\displaystyle {\frac{{1}}{{T_{\textrm{relax}}}}}$$\displaystyle \left(\vphantom{ \ln(I_0) - \ln(I_1) }\right.$ln(I0) - ln(I1)$\displaystyle \left.\vphantom{ \ln(I_0) - \ln(I_1) }\right)$, (11.8)

Using the estimate from https://en.wikipedia.org/wiki/Propagation_of_uncertainty that for

f = a ln(A), (11.9)

the variance of f is

σf2 = $\displaystyle \left(\vphantom{ a * \frac{\sigma_A}{A} }\right.$a*$\displaystyle {\frac{{\sigma_A}}{{A}}}$$\displaystyle \left.\vphantom{ a * \frac{\sigma_A}{A} }\right)^{2}_{}$, (11.10)

then the R2 variance is

σR22 = $\displaystyle \left(\vphantom{ \frac{1}{T_{\textrm{relax}}} \cdot \frac{\sigma_{I_0}}{I_0} }\right.$$\displaystyle {\frac{{1}}{{T_{\textrm{relax}}}}}$$\displaystyle {\frac{{\sigma_{I_0}}}{{I_0}}}$$\displaystyle \left.\vphantom{ \frac{1}{T_{\textrm{relax}}} \cdot \frac{\sigma_{I_0}}{I_0} }\right)^{2}_{}$ + $\displaystyle \left(\vphantom{ \frac{1}{T_{\textrm{relax}}} \cdot \frac{\sigma_{I_1}}{I_1} }\right.$$\displaystyle {\frac{{1}}{{T_{\textrm{relax}}}}}$$\displaystyle {\frac{{\sigma_{I_1}}}{{I_1}}}$$\displaystyle \left.\vphantom{ \frac{1}{T_{\textrm{relax}}} \cdot \frac{\sigma_{I_1}}{I_1} }\right)^{2}_{}$. (11.11)

Rearranging gives 11.4.

In a number of publications, the error formula from Ishima and Torchia (2005) has been used. This is the collapse of Equation 11.4 by setting σI0 to zero:

σR2 = $\displaystyle {\frac{{\sigma_{I_1}}}{{T_{\textrm{relax}}I_1(\omega_1)}}}$. (11.12)

This is not implemented in relax as it can be shown by simple simulation that the formula is incorrect (see Figure 11.1). This formula significantly underestimates the real errors. The use of the same I0 value for all dispersion points does not cause a decrease in the R2eff error but rather a correlation in the errors.

Figure 11.1: A demonstration of the inaccuracy of the error formula of Equation 11.12 from Ishima and Torchia (2005). This plot was generated using the script test_suite/shared_data/dispersion/error_testing/simulation.py. The bootstrapping simulation involves randomising noise-free I0 and I1 values for each dispersion data point assuming Gaussian errors. The full error formula is from Equation 11.4, the reduced error formula is from Equation 11.12, the bootstrapping using individual dispersion points estimates the errors assuming different I0 randomisations for each dispersion point and each simulation, and the bootstrapping group graph uses the same randomised I0 value for all dispersion points for each simulation.
Image error_comparison

Variable relaxation period experiments

For the variable relaxation time period type experiments, the R2eff/ R1ρ values are determined by fitting to the simple two parameter exponential as in a R1 or R2 analysis. Both R2eff/ R1ρ and the initial peak intensity I0 are optimised using the minimise user function for each exponential curve separately. Monte Carlo simulations are used to obtain the parameter errors.

Links

More information about the R2eff model is available from:

The relax user manual (PDF), created 2020-08-26.