Retention uniformity

Retention uniformity

Retention uniformity, or "RU", is a concept in thin layer chromatography, designed for quantitative measurement of "equal-spreading" of the spots on the chromatographic plate and one of the Chromatographic response functions. It is calculated from the following formula:

R_{U} = 1 - sqrt{frac{6(n+1)}{n(2n+1)}sum_{i=1}^{n}{left(R_{Fi}-frac{i}{n+1} ight)^2

where "n" is the number of compounds separated, "Rf (1...n)" are the Retention factor of the compounds sorted in non-descending order.

Theoretical considerations

The coefficient lies always in range <0,1> and 0 indicates worst case of separation (all Rf values equal to 0 or 1), value 1 indicates ideal equal-spreading of the spots, for example (0.25,0.5,0.75) for three solutes, or (0.2,0.4,0.6,0.8) for four solutes.

This coefficient was proposed as an alternative to earlier approaches, such as "D" (separation response), "Ip" (performance index) or "Sm" (informational entropy). Besides its stable range, the advantage is a stable distribution as a random variable, regardless of compounds investigated.

In contrast to the similar concept called Retention distance, "Ru" is insensitive to "Rf" values close to 0 or 1, or close to themselves. If two values are not separated, it still indicates some "uniformity" of chromatographic system. For example the "Rf" values (0,0.2,0.2,0.3) (two compounds not separated at 0.2 and one at the start ) result in "RU Calculation

The calculation of the "RU" requires some operations and is quite difficult to perform in spreadsheets. The following implementations may help. They take the vector of "Rf" values, returning the single "RU" value.

The R (programming language)/S-PLUS implementation:

ru <- function (x) { x <- sort(x) n <- length(x) i <- (1:n)/(n+1) s <- sum((x-i)^2) ru <- 1-sqrt( (6*(n+1)) / (n*(2*n+1)) * s ); return(ru);

}

The GNU Octave/Matlab implementation:

function res = ru(x) x = sort(x); n = length(x); i = (1:n)./(n+1); s = sum((x-i).^2); res = 1-sqrt((6.*(n+1))./(n.*(2.*n+1)).*s);endfunction

The Scilab implementation:

function res = ru(x) x = gsort(x,"g","i"); n = length(x); i = (1:n)./(n+1); s = sum((x-i).^2); res = 1-sqrt((6.*(n+1))./(n.*(2.*n+1)).*s);endfunction

See also

* Chromatographic response function

References

* Komsta Ł., Markowski W., Misztal G., A proposal for new RF equal-spread criteria with stable distribution parameters as a random variable. J. Planar Chromatogr. 2007 (20) 27-37.


Wikimedia Foundation. 2010.

Игры ⚽ Поможем решить контрольную работу

Look at other dictionaries:

  • Uniformity — may refer to: Distribution uniformity, a measure of how uniformly water is applied to the area being watered Religious uniformity, the promotion of one state religion, denomination, or philosophy to the exclusion of all other religious beliefs… …   Wikipedia

  • Retention distance — Retention distance, or RD , is a concept in thin layer chromatography, designed for quantitative measurement of equal spreading of the spots on the chromatographic plate and one of the Chromatographic response functions. It is calculated from the …   Wikipedia

  • Chromatographic response function — Chromatographic response function, often abbreviated to CRF is a coefficient which characterize in a quantitative manner, the quality of the separation in the result of a chromatography. The CRFs concept have been created during the development… …   Wikipedia

  • HEBREW LANGUAGE — This entry is arranged according to the following scheme: pre biblical biblical the dead sea scrolls mishnaic medieval modern period A detailed table of contents precedes each section. PRE BIBLICAL nature of the evidence the sources phonology… …   Encyclopedia of Judaism

  • chromatography — chromatographer, n. chromatographic /kreuh mat euh graf ik, kroh meuh teuh /, adj. chromatographically, adv. /kroh meuh tog reuh fee/, n. Chem. the separation of mixtures into their constituents by preferential adsorption by a solid, as a column… …   Universalium

  • India — /in dee euh/, n. 1. Hindi, Bharat. a republic in S Asia: a union comprising 25 states and 7 union territories; formerly a British colony; gained independence Aug. 15, 1947; became a republic within the Commonwealth of Nations Jan. 26, 1950.… …   Universalium

  • Terrorism Risk Insurance Act — The Terrorism Risk Insurance Act (TRIA) is a United States federal law signed into law by President George W. Bush on November 26, 2002. The Act created a federal backstop for insurance claims related to acts of terrorism. The Act is intended as… …   Wikipedia

  • education — /ej oo kay sheuhn/, n. 1. the act or process of imparting or acquiring general knowledge, developing the powers of reasoning and judgment, and generally of preparing oneself or others intellectually for mature life. 2. the act or process of… …   Universalium

  • United States — a republic in the N Western Hemisphere comprising 48 conterminous states, the District of Columbia, and Alaska in North America, and Hawaii in the N Pacific. 267,954,767; conterminous United States, 3,022,387 sq. mi. (7,827,982 sq. km); with… …   Universalium

  • Christianity — /kris chee an i tee/, n., pl. Christianities. 1. the Christian religion, including the Catholic, Protestant, and Eastern Orthodox churches. 2. Christian beliefs or practices; Christian quality or character: Christianity mixed with pagan elements; …   Universalium

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”