mailr22175 - /branches/double_rotor/test_suite/system_tests/scripts/frame_order/cam/double_rotor.py


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

Header


Content

Posted by edward on February 12, 2014 - 11:15:
Author: bugman
Date: Wed Feb 12 11:15:07 2014
New Revision: 22175

URL: http://svn.gna.org/viewcvs/relax?rev=22175&view=rev
Log:
Updated the CaM frame order double rotor system test script to have the 
correct two pivots.


Modified:
    
branches/double_rotor/test_suite/system_tests/scripts/frame_order/cam/double_rotor.py

Modified: 
branches/double_rotor/test_suite/system_tests/scripts/frame_order/cam/double_rotor.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/double_rotor/test_suite/system_tests/scripts/frame_order/cam/double_rotor.py?rev=22175&r1=22174&r2=22175&view=diff
==============================================================================
--- 
branches/double_rotor/test_suite/system_tests/scripts/frame_order/cam/double_rotor.py
 (original)
+++ 
branches/double_rotor/test_suite/system_tests/scripts/frame_order/cam/double_rotor.py
 Wed Feb 12 11:15:07 2014
@@ -22,15 +22,21 @@
 # Module docstring.
 """Script for optimising the second rotor frame order test model of CaM."""
 
+# Python module imports
+from numpy import array, float32
+
 # relax module imports.
 from base_script import Base_script
 
 
 class Analysis(Base_script):
+    # The directory containing the data files.
+    DIRECTORY = 'double_rotor'
 
-    # Set up some class variables.
-    DIRECTORY = 'double_rotor'
+    # The frame order model.
     MODEL = 'double rotor'
+
+    # The model parameters.
     AXIS_THETA = 1.494291741547518
     AXIS_PHI = 2.525044022476957
     CONE_SIGMA_MAX = 10.5 / 360.0 * 2.0 * pi
@@ -38,6 +44,10 @@
     AXIS_PHI2 = -2.249696457768556
     CONE_SIGMA_MAX2 = 11.5 / 360.0 * 2.0 * pi
 
+    # The pivot points.
+    PIVOT = array([41.739, 6.03, -0.764], float32)
+    PIVOT2 = array([26.837, -12.379, 28.342], float32)
+
 
 # Execute the analysis.
 Analysis(self._execute_uf)




Related Messages


Powered by MHonArc, Updated Wed Feb 12 15:00:02 2014