mailr18565 - /branches/frame_order_testing/maths_fns/frame_order/__init__.py


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

Header


Content

Posted by edward on February 22, 2013 - 10:43:
Author: bugman
Date: Fri Feb 22 10:43:42 2013
New Revision: 18565

URL: http://svn.gna.org/viewcvs/relax?rev=18565&view=rev
Log:
Improved the default RDC and PCS errors for the frame order target functions 
if these are not loaded.

These now default to 1 Hz and 0.1 ppm respectively.  The previous 0.03 ppm 
PCS error default was far
too small, causing the PCS to have much more weight than the RDC.


Modified:
    branches/frame_order_testing/maths_fns/frame_order/__init__.py

Modified: branches/frame_order_testing/maths_fns/frame_order/__init__.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/frame_order_testing/maths_fns/frame_order/__init__.py?rev=18565&r1=18564&r2=18565&view=diff
==============================================================================
--- branches/frame_order_testing/maths_fns/frame_order/__init__.py (original)
+++ branches/frame_order_testing/maths_fns/frame_order/__init__.py Fri Feb 22 
10:43:42 2013
@@ -193,8 +193,8 @@
             if err:
                 self.pcs_error = pcs_errors
             else:
-                # Missing errors (the values need to be small, close to ppm 
units, so the chi-squared value is comparable to the RDC).
-                self.pcs_error = 0.03 * 1e-6 * ones((self.num_align, 
self.num_spins), float64)
+                # Missing errors (default to 0.1 ppm errors).
+                self.pcs_error = 0.1 * 1e-6 * ones((self.num_align, 
self.num_spins), float64)
 
         # RDC errors.
         if self.rdc_flag_sum:
@@ -206,7 +206,7 @@
             if err:
                 self.rdc_error = rdc_errors
             else:
-                # Missing errors.
+                # Missing errors (default to 1 Hz errors).
                 self.rdc_error = ones((self.num_align, self.num_interatom), 
float64)
 
         # Missing data matrices (RDC).




Related Messages


Powered by MHonArc, Updated Fri Feb 22 14:20:02 2013