mailr11398 - /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 04, 2010 - 09:42:
Author: bugman
Date: Wed Aug  4 09:42:29 2010
New Revision: 11398

URL: http://svn.gna.org/viewcvs/relax?rev=11398&view=rev
Log:
Ordering of the functions.


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=11398&r1=11397&r2=11398&view=diff
==============================================================================
--- 1.3/maths_fns/frame_order_matrix_ops.py (original)
+++ 1.3/maths_fns/frame_order_matrix_ops.py Wed Aug  4 09:42:29 2010
@@ -37,6 +37,28 @@
 from maths_fns.rotation_matrix import euler_to_R_zyz, two_vect_to_R
 
 
+def compile_1st_matrix_pseudo_ellipse(matrix, theta_x, theta_y, sigma_max):
+    """Generate the 1st degree Frame Order matrix for the pseudo-ellipse.
+
+    @param matrix:      The Frame Order matrix, 1st degree to be populated.
+    @type matrix:       numpy 3D, rank-2 array
+    @param theta_x:     The cone opening angle along x.
+    @type theta_x:      float
+    @param theta_y:     The cone opening angle along y.
+    @type theta_y:      float
+    @param sigma_max:   The maximum torsion angle.
+    @type sigma_max:    float
+    """
+
+    # The surface area normalisation factor.
+    fact = 1.0 / (2.0 * sigma_max * pec(theta_x, theta_y))
+
+    # Numerical integration of phi of each element.
+    matrix[0, 0] = fact * quad(part_int_daeg1_pseudo_ellipse_xx, -pi, pi, 
args=(theta_x, theta_y, sigma_max), full_output=1)[0]
+    matrix[1, 1] = fact * quad(part_int_daeg1_pseudo_ellipse_yy, -pi, pi, 
args=(theta_x, theta_y, sigma_max), full_output=1)[0]
+    matrix[2, 2] = fact * quad(part_int_daeg1_pseudo_ellipse_zz, -pi, pi, 
args=(theta_x, theta_y, sigma_max), full_output=1)[0]
+
+
 def compile_2nd_matrix_iso_cone(matrix, R, z_axis, cone_axis, theta_axis, 
phi_axis, s1):
     """Generate the rotated 2nd degree Frame Order matrix.
 
@@ -73,28 +95,6 @@
 
     # Rotate and return the frame order matrix.
     return rotate_daeg(matrix, R)
-
-
-def compile_1st_matrix_pseudo_ellipse(matrix, theta_x, theta_y, sigma_max):
-    """Generate the 1st degree Frame Order matrix for the pseudo-ellipse.
-
-    @param matrix:      The Frame Order matrix, 1st degree to be populated.
-    @type matrix:       numpy 3D, rank-2 array
-    @param theta_x:     The cone opening angle along x.
-    @type theta_x:      float
-    @param theta_y:     The cone opening angle along y.
-    @type theta_y:      float
-    @param sigma_max:   The maximum torsion angle.
-    @type sigma_max:    float
-    """
-
-    # The surface area normalisation factor.
-    fact = 1.0 / (2.0 * sigma_max * pec(theta_x, theta_y))
-
-    # Numerical integration of phi of each element.
-    matrix[0, 0] = fact * quad(part_int_daeg1_pseudo_ellipse_xx, -pi, pi, 
args=(theta_x, theta_y, sigma_max), full_output=1)[0]
-    matrix[1, 1] = fact * quad(part_int_daeg1_pseudo_ellipse_yy, -pi, pi, 
args=(theta_x, theta_y, sigma_max), full_output=1)[0]
-    matrix[2, 2] = fact * quad(part_int_daeg1_pseudo_ellipse_zz, -pi, pi, 
args=(theta_x, theta_y, sigma_max), full_output=1)[0]
 
 
 def compile_2nd_matrix_pseudo_ellipse(matrix, R, eigen_alpha, eigen_beta, 
eigen_gamma, theta_x, theta_y, sigma_max):




Related Messages


Powered by MHonArc, Updated Wed Aug 04 10:00:01 2010