mailr11457 - /1.3/maths_fns/frame_order_matrix_ops.py


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

Header


Content

Posted by edward on August 10, 2010 - 10:37:
Author: bugman
Date: Tue Aug 10 10:37:00 2010
New Revision: 11457

URL: http://svn.gna.org/viewcvs/relax?rev=11457&view=rev
Log:
Bug fix for the iso cone frame order model fn 
populate_2nd_eigenframe_iso_cone().

A few signs were wrong in the {0,4} and {4,0} element.


Modified:
    1.3/maths_fns/frame_order_matrix_ops.py

Modified: 1.3/maths_fns/frame_order_matrix_ops.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/maths_fns/frame_order_matrix_ops.py?rev=11457&r1=11456&r2=11457&view=diff
==============================================================================
--- 1.3/maths_fns/frame_order_matrix_ops.py (original)
+++ 1.3/maths_fns/frame_order_matrix_ops.py Tue Aug 10 10:37:00 2010
@@ -1105,7 +1105,7 @@
     matrix[8, 8] = (cos_tmax2 + cos_tmax + 1.0) / 3.0
 
     # Off diagonal set 1.
-    matrix[0, 4] = matrix[4, 0] = (-(sinc_2smax + 2.0)*cos_tmax2 + 
(4.0*sinc_2smax - 2.0)*cos_tmax - 7.0*sinc_2smax + 8.0) / 24.0
+    matrix[0, 4] = matrix[4, 0] = (-(sinc_2smax - 2.0)*cos_tmax2 - 
(4.0*sinc_2smax - 2.0)*cos_tmax - 7.0*sinc_2smax + 8.0) / 24.0
     matrix[0, 8] = matrix[8, 0] = -(cos_tmax2 + cos_tmax - 2.0) / 6.0
     matrix[4, 8] = matrix[8, 4] = matrix[0, 8]
 




Related Messages


Powered by MHonArc, Updated Tue Aug 10 11:20:01 2010