mailr9129 - /branches/frame_order/maths_fns/frame_order_models.py


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

Header


Content

Posted by edward on June 23, 2009 - 11:20:
Author: bugman
Date: Tue Jun 23 11:20:16 2009
New Revision: 9129

URL: http://svn.gna.org/viewcvs/relax?rev=9129&view=rev
Log:
Set up the z-axis data structures.


Modified:
    branches/frame_order/maths_fns/frame_order_models.py

Modified: branches/frame_order/maths_fns/frame_order_models.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/frame_order/maths_fns/frame_order_models.py?rev=9129&r1=9128&r2=9129&view=diff
==============================================================================
--- branches/frame_order/maths_fns/frame_order_models.py (original)
+++ branches/frame_order/maths_fns/frame_order_models.py Tue Jun 23 11:20:16 
2009
@@ -25,7 +25,7 @@
 
 # Python module imports.
 from copy import deepcopy
-from numpy import float64, ones, zeros
+from numpy import array, float64, ones, zeros
 
 # relax module imports.
 from generic_fns.frame_order import print_frame_order_2nd_degree
@@ -114,6 +114,9 @@
         self.red_errors = red_errors
         self.red_tensors_bc = zeros(self.num_tensors*5, float64)
 
+        # The molecular frame z-axis.
+        self.z_axis = array([0, 0, 1], float64)
+
         # The rotation to the Frame Order eigenframe.
         self.rot = zeros((3, 3), float64)
 
@@ -139,6 +142,9 @@
         # The errors.
         self.errors = ones((9, 9), float64)
 
+        # The molecular frame z-axis.
+        self.z_axis = array([0, 0, 1], float64)
+
         # The rotation.
         self.rot = zeros((3, 3), float64)
 




Related Messages


Powered by MHonArc, Updated Tue Jun 23 11:40:02 2009