mailr10694 - /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 February 12, 2010 - 10:50:
Author: bugman
Date: Fri Feb 12 10:50:17 2010
New Revision: 10694

URL: http://svn.gna.org/viewcvs/relax?rev=10694&view=rev
Log:
Fix for the iso cone frame order order parameter.

The c11^2, c12^2, c21^2 and c22^2 element equations were incorrect.


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=10694&r1=10693&r2=10694&view=diff
==============================================================================
--- 1.3/maths_fns/frame_order_matrix_ops.py (original)
+++ 1.3/maths_fns/frame_order_matrix_ops.py Fri Feb 12 10:50:17 2010
@@ -198,7 +198,7 @@
             matrix[i, j] = 0.0
 
     # The c11^2, c22^2, c12^2, and c21^2 elements.
-    matrix[0, 0] = (s1 + 1.0) / 3.0
+    matrix[0, 0] = (s1 + 2.0) / 6.0
     matrix[4, 4] = matrix[0, 0]
     matrix[1, 1] = matrix[0, 0]
     matrix[3, 3] = matrix[0, 0]




Related Messages


Powered by MHonArc, Updated Tue Feb 16 09:40:02 2010