On Thu, Jan 15, 2009 at 3:27 PM, <sebastien.morin.1@xxxxxxxxx> wrote:
Author: semor
Date: Thu Jan 15 15:27:49 2009
New Revision: 8473
URL: http://svn.gna.org/viewcvs/relax?rev=8473&view=rev
Log:
Started to put equations and references in the user function docstrings.
Also corrected a small typo.
This was proposed by Ed in a post at:
https://mail.gna.org/public/relax-devel/2009-01/msg00028.html
(Message-id: <7f080ed10901080137i35d21213of5884edb7da59d00@xxxxxxxxxxxxxx>)
Modified:
branches/relax_disp/prompt/relax_disp.py
Modified: branches/relax_disp/prompt/relax_disp.py
URL:
http://svn.gna.org/viewcvs/relax/branches/relax_disp/prompt/relax_disp.py?rev=8473&r1=8472&r2=8473&view=diff
==============================================================================
--- branches/relax_disp/prompt/relax_disp.py (original)
+++ branches/relax_disp/prompt/relax_disp.py Thu Jan 15 15:27:49 2009
@@ -153,7 +153,7 @@
exp: The type of relaxation dispersion experiment performed.
- The preet experiments
+ The preset experiments
~~~~~~~~~~~~~~~~~~~~~
I was wondering what a preet experiment was ;)
The supported experiments will include CPMG ('cpmg') and R1rho
('r1rho').
@@ -217,6 +217,22 @@
'fast': [R2, Rex, kex],
'slow': [R2A, kA, dw].
+ The equations for these two models are
+ / / kex \
4 * cpmg_frq \
Here you must be careful. The last character on the line is '\' which
is the escape character. You can see the result if you type, at the
relax prompt:
relax> help(relax_disp.select_model)
To fix this, the last 2 characters should be '\ '. This is a really
retarded python bug causing problem!!
Regards,
Edward