mailr12513 - /branches/bmrb/specific_fns/model_free/bmrb.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on February 03, 2011 - 20:34:
Author: bugman
Date: Thu Feb  3 20:34:33 2011
New Revision: 12513

URL: http://svn.gna.org/viewcvs/relax?rev=12513&view=rev
Log:
Fix for the Rex scaling - the factor was incorrect!


Modified:
    branches/bmrb/specific_fns/model_free/bmrb.py

Modified: branches/bmrb/specific_fns/model_free/bmrb.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bmrb/specific_fns/model_free/bmrb.py?rev=12513&r1=12512&r2=12513&view=diff
==============================================================================
--- branches/bmrb/specific_fns/model_free/bmrb.py (original)
+++ branches/bmrb/specific_fns/model_free/bmrb.py Thu Feb  3 20:34:33 2011
@@ -172,7 +172,7 @@
             # Rex scaling.
             rex_scale = 1.0
             if hasattr(cdp, 'frq') and len(cdp.frq):
-                rex_scale = 1.0 / (2.0*pi*cdp.frq[0]**2)
+                rex_scale = 1.0 / (2.0*pi*cdp.frq[0])**2
 
             # Loop over the spins.
             for i in range(N):




Related Messages


Powered by MHonArc, Updated Fri Feb 04 10:40:02 2011