IUPAC - retention factor (R05359) (2024)

Alphabetical Index

Additional Indexes

Physical ConstantsUnits of MeasurePhysical QuantitiesSI PrefixesRing IndexGeneral FormulaeExact FormulaeSource DocumentsTerms by IUPAC Div.

Version 3.0.1 (6463 Terms)

DOI: 10.1351/goldbook

Jan Kaiser - Content Editor
Stuart Chalk - Technical Editor
Joint Subcommitteeon the IUPAC Gold Book

');let patternb = new RegExp("\\.\\.\\. @" + lcode + "@", 'g'); html=html.replace(patternb,'...

' + title + '

');let patternc = new RegExp("vs\\. @" + lcode + "@", 'g'); html=html.replace(patternc,'vs.

' + title + '

');let patternd = new RegExp("Cf\\. @" + lcode + "@", 'g'); html=html.replace(patternd,'Cf.

' + title + '

');let patterne = new RegExp("cf\\. @" + lcode + "@", 'g'); html=html.replace(patterne,'cf.

' + title + '

');let patternf = new RegExp("E\\.g\\. @" + lcode + "@", 'g'); html=html.replace(patternf,'E.g.

' + title + '

');let patterng = new RegExp("e\\.g\\. @" + lcode + "@", 'g'); html=html.replace(patterng,'e.g.

' + title + '

');let patternh = new RegExp("i\\.e\\. @" + lcode + "@", 'g'); html=html.replace(patternh,'i.e.

' + title + '

');let patterni = new RegExp("\\. @" + lcode + "@", 'g'); html=html.replace(patterni,'.

' + ucfirst(title) + '

');let patternj = new RegExp("
@" + lcode + "@", 'g'); html=html.replace(patternj,'

' + ucfirst(title) + '

');let patternk = new RegExp("@" + lcode + "@", 'g'); html=html.replace(patternk,'

' + title + '

'); }); $(this).html(html); }); $(".chemimg").each(function() { let size=$(".notecard").width(); let file=$(this).html(); let data=jdata.chemimg[file]; if($(this).hasClass("row")) { let ratio = size/data.width; let cols, offset; if(ratio < 1) { cols=10;offset=1; } else if(ratio > 1 && ratio < 2) { cols=8;offset=2; } else if(ratio > 2 && ratio < 3) { cols=6;offset=3; } else if(ratio > 3 && ratio < 6) { cols=4;offset=4; } else { cols=2;offset=5; } $(this).html('IUPAC - retention factor (R05359) (1)'); } else { $(this).html('IUPAC - retention factor (R05359) (2)'); } }); return false; }); $("#notecard").on("click",".term",function(e) {let code = $(this).attr("data-code");// TODO: add logging of clicks herelet linkout = '/terms/view/' + code;if (e.metaKey||e.ctrlKey) {window.open(linkout);} else {location.assign(linkout);}}); $("#github").on("click", function () { let tcode=jdata.code; let ttitle='retention factor in column chromatography, k'; let body=$('#ghbody').val(); let type=$('#error option:selected').val(); let user=$('#user').val(); let userid=$('#userid').val(); // create POST JSON array... let post={ title: ttitle + " (" + tcode + ")", body: body + " - (" + user + ")", assignees: ["stuchalk"], milestone: 1, labels: [type] }; if("" === type || (type!=="term - good" && body==="")) { alert('Please select the type of error'); return false; } else if(type==="term - good") { // add to the feedback database post.userid=userid; post.code=tcode; post.body="Term verified by " + user; $.ajax({ type: 'POST', dataType: 'json', context: document.body, url: 'https://goldbook.iupac.org//admin/feedback', data: post, success: function (data, textStatus, XHR) { let message=""; if(data.response==="success") { message="Feedback sent. Thanks!"; alert(message); location.reload(); } else { message="Error saving your submission. Please report to stu@goldbook.iupac.org."; alert(message); } return false; }, error: function (data, textStatus, XHR) { alert("AJAX error. Please contact stu@goldbook.iupac.org."); return false; } }); } else { // send issue to GitHub and then add to the feedback database $.ajax({ type: 'POST', dataType: 'json', context: document.body, url: 'https://api.github.com/repos/iupac/Gold-Book-Website-v2/issues?access_token=1c29903ecd25e0e87273857a247b4714abb4c08d', data: JSON.stringify(post), success: function (data, textStatus, XHR) { // send data to database post.userid=userid; post.code=tcode; post.issue=data["number"]; // on success send add to the feedback database $.ajax({ type: 'POST', dataType: 'json', context: document.body, url: 'https://goldbook.iupac.org//admin/feedback', data: post, success: function (data, textStatus, XHR) { let message; if(data.response === "success") { message="Feedback sent. Thanks!"; alert(message); window.location.reload(); // reloads from server not cache } else { message="Error saving your submission. Please report to stu@goldbook.iupac.org."; alert(message); } return false; }, error: function (data, textStatus, XHR) { alert("Communication error. Please report to stu@goldbook.iupac.org."); return false; } }); return false; }, error: function (data, textStatus, XHR) { alert("Error saving your submission. Please contact stu@goldbook.iupac.org."); return false; } }); return false; } }); $("#errors").hover( function () { $("#fform").hide();$("#fback").show(); }, function () { $("#fback").hide();$("#fform").show(); } ); $('#copy').on('click',function() {let doi = $("#doi").text();navigator.clipboard.writeText(doi);}); $('.replacement').on('blur', function() { // update the 'displayed' field in the 'links' table with value to display for link let code=$(this).attr('code'); let value=$(this).attr('val'); let text=$(this).text(); $.ajax({ type: 'POST', dataType: "text", context: document.body, url: 'https://goldbook.iupac.org/links/updatefield/displayed', data: { code: code,value: value, text: text }, success: function (data, textStatus, XHR) { // send data to database if(data=="error") { alert("Error saving to the DB."); } else { alert('Done!'); //window.location.reload(true); // true reloads from server not cache } return false; }, error: function (data, textStatus, XHR) { alert("Error saving the change."); return false; } }); return false; }); $('.chemimage').mousemove(function(e) { let imageid=$(this).attr('imageid'); let image=$('#image'); let popup=$('#popup'); alert(imageid); image.attr('src','../../../img/inline/' + imageid + 'png'); popup.offset({ top: e.pageY - popup.outerHeight(), left: e.pageX - popup.outerHeight() }); popup.show(); }).mouseleave(function () { let popup=$('#popup'); popup.hide(); }); });

IUPAC - retention factor (R05359) (3)

https://doi.org/10.1351/goldbook.R05359

A measure of the time the sample component resides in the stationary phase relative to the time it resides in the mobile phase; it expresses how much longer a sample component is retarded by the stationary phase than it would take to travel through the column with the velocity of the mobile phase. Mathematically, it is the ratio of the @R05366@ (time) and the @H02833@ (time): \[k=\frac{V_{\text{R}}^{'}}{V_{\text{M}}}=\frac{t_{\text{R}}^{'}}{t_{\text{M}}}\] If the @D01814@ is independent of sample component concentration, then the retention factor is also equal to the ratio of the amounts of a sample component in the stationary and mobile phases respectively, at equilibrium: \[k=\frac{\text{amount of component in stationary phase}}{\text{amount of component in mobile phase}}\] If the fraction of the sample component in the mobile phase is \(R\), then the fraction in the stationary phase is \(1 - R\); thus \[k=\frac{1- R}{R}\] In former nomenclatures and in the literature one may find the expressions @P04440@, capacity ratio, capacity factor or @E02305@ to describe this term. In the literature the symbol \(k^{'}\) is often used for the retention factor, particularly in liquid @C01075@. The original reason for this was to clearly distinguish it from the @P04437@ (@D01813@) for which the symbol K had been utilized. Since, however, the distribution constants are all identified with a subscript, there is no reason to add the prime sign to this symbol. It should be emphasized that all the recognized nomenclatures (IUPAC, BS, ASTM) have always clearly identified the capacity factor with the symbol \(k\) and not \(k^{'}\). The logarithm of the retention factor is equivalent to the \(R_{\text{M}}\) value used in @P04682@. The symbol \(\kappa \) is suggested to express \[\kappa =\log _{10}k=\log _{10}\left[\frac{1- R}{R}\right]\]

Source:
PAC, 1993, 65, 819. (Nomenclature for chromatography (IUPAC Recommendations 1993)) on page 843 [Terms] [Paper]

Citation: 'retention factor' in IUPAC Compendium of Chemical Terminology, 3rd ed. International Union of Pure and Applied Chemistry; 2006. Online version 3.0.1, 2019. https://doi.org/10.1351/goldbook.R05359RISBibTexEndNote

Div. VPDFTextJSONHistoryQuantity

Last revised: February 24, 2014

IUPAC - retention factor (R05359) (2024)

References

Top Articles
Latest Posts
Article information

Author: Jeremiah Abshire

Last Updated:

Views: 5964

Rating: 4.3 / 5 (54 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Jeremiah Abshire

Birthday: 1993-09-14

Address: Apt. 425 92748 Jannie Centers, Port Nikitaville, VT 82110

Phone: +8096210939894

Job: Lead Healthcare Manager

Hobby: Watching movies, Watching movies, Knapping, LARPing, Coffee roasting, Lacemaking, Gaming

Introduction: My name is Jeremiah Abshire, I am a outstanding, kind, clever, hilarious, curious, hilarious, outstanding person who loves writing and wants to share my knowledge and understanding with you.