<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.28.3">
</HEAD>
<BODY>
Dear all<BR>
I wonder which is the best way to determine the deuterium order parameters of partially unsaturated chains like the oleoyl chain of POPC, more specifically I wonder if I should use the -unsat flag in g_order for this case. I checked several papers on unsaturated lipids, see for instance:<BR>
1.- <A HREF="http://persweb.wabash.edu/facstaff/FELLERS/publications/jpc_01.pdf">http://persweb.wabash.edu/facstaff/FELLERS/publications/jpc_01.pdf</A><BR>
2.- <A HREF="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1225825/pdf/biophysj00084-0102.pdf">http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1225825/pdf/biophysj00084-0102.pdf</A><BR>
3.- <A HREF="http://www.sciencedirect.com/science?_ob=MImg&amp;_imagekey=B94RW-4V8X9MG-P-1&amp;_cdi=56421&amp;_user=10&amp;_pii=S0006349597782596&amp;_coverDate=11%2F30%2F1997&amp;_sk=%23TOC%2356421%231997%23999269994%23800076%23FLP%23display%23Volume_73,_Issue_5,_Pages_2249-2849_%28November_1997%29%23tagged%23Volume%23first%3D73%23Issue%23first%3D5%23date%23%28November_1997%29%23&amp;view=c&amp;_gw=y&amp;wchp=dGLbVlz-zSkzV&amp;md5=778ad27c9fc1e0b3874b178e36451cb4&amp;ie=/sdarticle.pdf">http://www.sciencedirect.com/science?_ob=MImg&amp;_imagekey=B94RW-4V8X9MG-P-1&amp;_cdi=56421&amp;_user=10&amp;_pii=S0006349597782596&amp;_coverDate=11%2F30%2F1997&amp;_sk=%23TOC%2356421%231997%23999269994%23800076%23FLP%23display%23Volume_73,_Issue_5,_Pages_2249-2849_%28November_1997%29%23tagged%23Volume%23first%3D73%23Issue%23first%3D5%23date%23%28November_1997%29%23&amp;view=c&amp;_gw=y&amp;wchp=dGLbVlz-zSkzV&amp;md5=778ad27c9fc1e0b3874b178e36451cb4&amp;ie=/sdarticle.pdf</A><BR>
4.- <A HREF="http://pubs.acs.org/doi/abs/10.1021/ja903529f">http://pubs.acs.org/doi/abs/10.1021/ja903529f</A><BR>
5.- <A HREF="http://www.ibpc.fr/UMR7099/pdf/Warschawski05-1.pdf">http://www.ibpc.fr/UMR7099/pdf/Warschawski05-1.pdf</A><BR>
<BR>
but it seems that nobody mentions anything about a correction for the unsaturated carbons. Then I went to the code, I think this is the important part:<BR>
<BR>
if (bUnsat) {<BR>
&nbsp; /* Using convention for unsaturated carbons */<BR>
&nbsp; /* first get Sz, the vector from Cn to Cn+1 */<BR>
&nbsp; rvec_sub(x1[a[index[i+1]+j]], x1[a[index[i]+j]], dist); <BR>
&nbsp; length = norm(dist);<BR>
&nbsp; check_length(length, a[index[i]+j], a[index[i+1]+j]);<BR>
&nbsp; svmul(1/length, dist, Sz);<BR>
<BR>
&nbsp; /* this is actually the cosine of the angle between the double bond<BR>
&nbsp;&nbsp;&nbsp;&nbsp; and axis, because Sz is normalized and the two other components of<BR>
&nbsp;&nbsp;&nbsp;&nbsp; the axis on the bilayer are zero */<BR>
&nbsp; sdbangle += acos(Sz[axis]);&nbsp; <BR>
} else {<BR>
&nbsp; /* get vector dist(Cn-1,Cn+1) for tail atoms */<BR>
&nbsp; rvec_sub(x1[a[index[i+1]+j]], x1[a[index[i-1]+j]], dist);<BR>
&nbsp; length = norm(dist);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* determine distance between two atoms */<BR>
&nbsp; check_length(length, a[index[i-1]+j], a[index[i+1]+j]);<BR>
&nbsp; <BR>
&nbsp; svmul(1/length, dist, Sz);<BR>
&nbsp; /* Sz is now the molecular axis Sz, normalized and all that */<BR>
}<BR>
<BR>
As far as I see the difference is that by using the -unsat option, the atoms Cn, Cn+1 are used to measure theta instead of the atoms Cn-1, Cn+1. I think this could be reasonable when the whole chain is unsaturated but I am not sure that it is correct to use the -unsat option when we have two unsat carbons in the middle of a larger chain.... The calculation could also be done for the whole chain without the -unsat option, then repeat it for the unsaturated carbons plus their first neighbors with the -unsat option and then replace the results obtained from the second calculation for the central carbons in the curve obtained without the -unsat option... as previously suggested in this list (see http://lists.gromacs.org/pipermail/gmx-users/2010-February/049072.html) but I am not sure that is the best... I would appreciate any comment.<BR>
<BR>
Cheers,<BR>
<BR>
&#193;ngel.
</BODY>
</HTML>