mailr23358 - /branches/disp_speed/lib/dispersion/b14.py


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

Header


Content

Posted by tlinnet on May 22, 2014 - 19:15:
Author: tlinnet
Date: Thu May 22 19:15:36 2014
New Revision: 23358

URL: http://svn.gna.org/viewcvs/relax?rev=23358&view=rev
Log:
Removed unnecessary math domain checking in model B14.

They are slowing down the code.

There is now protection for edge cases, and a last final check, before 
returning values.

That should be sufficient.

Modified:
    branches/disp_speed/lib/dispersion/b14.py

Modified: branches/disp_speed/lib/dispersion/b14.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/disp_speed/lib/dispersion/b14.py?rev=23358&r1=23357&r2=23358&view=diff
==============================================================================
--- branches/disp_speed/lib/dispersion/b14.py   (original)
+++ branches/disp_speed/lib/dispersion/b14.py   Thu May 22 19:15:36 2014
@@ -110,7 +110,7 @@
 """
 
 # Python module imports.
-from numpy import abs, arccosh, arctan2, array, cos, cosh, isfinite, log, 
min, power, sin, sinh, sqrt, sum
+from numpy import arccosh, arctan2, array, cos, cosh, isfinite, log, power, 
sin, sinh, sqrt, sum
 
 # Repetitive calculations (to speed up calculations).
 g_fact = 1/sqrt(2)
@@ -218,24 +218,12 @@
     # Real. The v_1c in paper.
     v1c = F0 * cosh(E0) - F2 * cos(E2)
 
-    # Catch math domain error of sqrt(neg val).
-    # This is when abs(v1c) =< 1.
-    if min(abs(v1c)) <= 1.:
-        R2eff = array([1e100]*num_points)
-        return R2eff
-
     # Exact result for v2v3.
     v3 = sqrt(v1c**2 - 1.)
 
     y = power( (v1c - v3) / (v1c + v3), ncyc)
 
     Tog = 0.5 * (1. + y) + (1. - y) * v5 / (2. * v3 * N )
-
-    # Catch math domain error of log(neg val or zero).
-    # This is when Tog.real =< 0.
-    if min(Tog.real) <= 0.:
-        R2eff = array([1e100]*num_points)
-        return R2eff
 
     ## -1/Trel * log(LpreDyn).
     # Rpre = (r20a + r20b + kex) / 2.0




Related Messages


Powered by MHonArc, Updated Thu May 22 19:40:02 2014