mailr24461 - /branches/frame_order_cleanup/target_functions/frame_order.py


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

Header


Content

Posted by edward on July 05, 2014 - 14:39:
Author: bugman
Date: Sat Jul  5 14:39:55 2014
New Revision: 24461

URL: http://svn.gna.org/viewcvs/relax?rev=24461&view=rev
Log:
Bug fix for the y-axis rotation matrix for the double rotor Sobol' 
integration points.

The matrix was inverted.


Modified:
    branches/frame_order_cleanup/target_functions/frame_order.py

Modified: branches/frame_order_cleanup/target_functions/frame_order.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/frame_order_cleanup/target_functions/frame_order.py?rev=24461&r1=24460&r2=24461&view=diff
==============================================================================
--- branches/frame_order_cleanup/target_functions/frame_order.py        
(original)
+++ branches/frame_order_cleanup/target_functions/frame_order.py        Sat 
Jul  5 14:39:55 2014
@@ -1231,9 +1231,9 @@
                 c_sigma = cos(sigma)
                 s_sigma = sin(sigma)
                 self.Ri_prime[i, 0, 0] =  c_sigma
-                self.Ri_prime[i, 0, 2] = -s_sigma
+                self.Ri_prime[i, 0, 2] =  s_sigma
                 self.Ri_prime[i, 1, 1] = 1.0
-                self.Ri_prime[i, 2, 0] =  s_sigma
+                self.Ri_prime[i, 2, 0] = -s_sigma
                 self.Ri_prime[i, 2, 2] =  c_sigma
 
                 # The 2nd rotation about the x-axis.




Related Messages


Powered by MHonArc, Updated Sat Jul 05 16:00:02 2014