mailr17061 - /branches/interatomic/maths_fns/n_state_model.py


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

Header


Content

Posted by edward on June 26, 2012 - 14:28:
Author: bugman
Date: Tue Jun 26 14:28:09 2012
New Revision: 17061

URL: http://svn.gna.org/viewcvs/relax?rev=17061&view=rev
Log:
A number of fixes for the N-state model target functions for the interatomic 
data design.


Modified:
    branches/interatomic/maths_fns/n_state_model.py

Modified: branches/interatomic/maths_fns/n_state_model.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/interatomic/maths_fns/n_state_model.py?rev=17061&r1=17060&r2=17061&view=diff
==============================================================================
--- branches/interatomic/maths_fns/n_state_model.py (original)
+++ branches/interatomic/maths_fns/n_state_model.py Tue Jun 26 14:28:09 2012
@@ -196,7 +196,7 @@
             # Alignment tensor in rank-2, 3D form.
             self.A = zeros((self.num_tensors, 3, 3), float64)
             for align_index in range(self.num_tensors):
-                to_tensor(self.A[align_index], self.full_tensors[5*i:5*i+5])
+                to_tensor(self.A[align_index], 
self.full_tensors[5*align_index:5*align_index+5])
 
             # Initialise some empty numpy objects for storage of:
             # R:  the transient rotation matricies.
@@ -317,8 +317,8 @@
             # Clean up problematic data and put the weights into the errors..
             if self.rdc_flag_sum or self.pcs_flag_sum:
                 for align_index in xrange(self.num_align):
-                    for j in xrange(self.num_spins):
-                        if self.rdc_flag_sum:
+                    if self.rdc_flag_sum:
+                        for j in xrange(self.num_interatom):
                             if isNaN(self.Dij[align_index, j]):
                                 # Set the flag.
                                 self.missing_Dij[align_index, j] = 1
@@ -332,7 +332,12 @@
                                 # Change the weight to one.
                                 rdc_weights[align_index, j] = 1.0
 
-                        if self.pcs_flag_sum:
+                            # The RDC weights.
+                            self.rdc_sigma_ij[align_index, j] = 
self.rdc_sigma_ij[align_index, j] / sqrt(rdc_weights[align_index, j])
+
+
+                    if self.pcs_flag_sum:
+                        for j in xrange(self.num_spins):
                             if isNaN(self.deltaij[align_index, j]):
                                 # Set the flag.
                                 self.missing_deltaij[align_index, j] = 1
@@ -346,12 +351,7 @@
                                 # Change the weight to one.
                                 pcs_weights[align_index, j] = 1.0
 
-                        # The RDC weights.
-                        if self.rdc_flag_sum:
-                            self.rdc_sigma_ij[align_index, j] = 
self.rdc_sigma_ij[align_index, j] / sqrt(rdc_weights[align_index, j])
-
-                        # The PCS weights.
-                        if self.pcs_flag_sum:
+                            # The PCS weights.
                             self.pcs_sigma_ij[align_index, j] = 
self.pcs_sigma_ij[align_index, j] / sqrt(pcs_weights[align_index, j])
 
             # The paramagnetic centre vectors and distances.




Related Messages


Powered by MHonArc, Updated Tue Jun 26 14:40:02 2012