Difference between revisions of "Hnco.m"

From Spinach Documentation Wiki
Jump to: navigation, search
(Created page with "Phase-sensitive HNCO pulse sequence from http://dx.doi.org/10.1016/0022-2364(90)90333-5 using the bidirectional propagation method described in ...")
 
Line 1: Line 1:
 +
{{DISPLAYTITLE:function.m}} __NOTOC__
 
Phase-sensitive HNCO pulse sequence from  
 
Phase-sensitive HNCO pulse sequence from  
  
Line 7: Line 8:
 
               http://dx.doi.org/10.1016/j.jmr.2014.04.002
 
               http://dx.doi.org/10.1016/j.jmr.2014.04.002
  
The sequence is hard-wired to work on 1H,13C,15N proteins. Syntax:
+
The sequence is hard-wired to work on 1H, 13C, 15N proteins and uses PDB labels to select spins that will be affected by otherwise ideal pulses. F1 is N, F2 is CO, F3 is H.
  
              fid=hnco(spin_system,parameters,H,R,K)
+
==Syntax==
  
where H is the hamiltonian commutation superoperator, R is the re-
+
    fid=hnco(spin_system,parameters,H,R,K)
relaxation superoperator and K is the chemical kinetics superope-
 
rator. The following parameters are required:
 
  
      parameters.npoints    - a vector of three integers giving the
+
==Arguments==
                              number of points in the three temporal
 
                              dimensions, ordered as [t1 t2 t3].
 
  
      parameters.sweep      - a vector of three real numbers giving
+
    parameters.npoints    - a vector of three integers giving the
                              the sweep widths in the three frequen-
+
                            number of points in the three temporal
                              cy dimensions, ordered as [f1 f2 f3].
+
                            dimensions, ordered as [t1 t2 t3].
 +
 +
    parameters.sweep      - a vector of three real numbers giving
 +
                            the sweep widths in the three frequen-
 +
                            cy dimensions, ordered as [f1 f2 f3].
 +
 +
    parameters.tau        - the three delays required for the ope-
 +
                            ration of the sequence (see the paper)
 +
                            in seconds. Reasonable values are
 +
                            [2.25e-3, 14e-3, 4e-3]
 +
 +
    parameters.f1_decouple - logical switch controlling proton de-
 +
                            coupling during the T1 period.
 +
 +
    H  - Hamiltonian matrix, received from context function
 +
 +
    R  - relaxation superoperator, received from context function
 +
 +
    K  - kinetics superoperator, received from context function
 +
 
 +
==Outputs==
 +
 
 +
    fid - three-dimensional free induction decay
 +
 
 +
==Examples==
 +
An HNCO spectrum of ubiquitin (examples/nmr_proteins/hnco_ubiquitin_theo.m) appears below.
 +
 
 +
[[File:hnco_ubiquitin.png]]
  
      parameters.tau        - the three delays required for the ope-
+
==Notes==
                              ration of the sequence (see the paper)
+
Spin labels must be set to PDB atom IDs ('CA', 'HA', etc.) in sys.labels for this sequence to work properly.
                              in seconds. Reasonable values are
 
                              [2.25e-3, 14e-3, 4e-3]
 
  
      parameters.f1_decouple - logical switch controlling proton de-
+
==See also==
                              coupling during the T1 period.
+
[hncoca.m]], [[protein.m]], [[noesy.m]], [[noesyhsqc.m]], [[hsqc.m]]
  
Dimensions: F1 is N, F2 is CO, F3 is H.
+
 
+
''Version 2.3, authors: [[Luke Edwards]], [[Ilya Kuprov]]''
Note: spin labels must be set to PDB atom IDs ('CA', 'HA', etc.) in
 
sys.labels for this sequence to work properly.
 

Revision as of 15:38, 31 December 2018

Phase-sensitive HNCO pulse sequence from

            http://dx.doi.org/10.1016/0022-2364(90)90333-5

using the bidirectional propagation method described in

             http://dx.doi.org/10.1016/j.jmr.2014.04.002

The sequence is hard-wired to work on 1H, 13C, 15N proteins and uses PDB labels to select spins that will be affected by otherwise ideal pulses. F1 is N, F2 is CO, F3 is H.

Syntax

    fid=hnco(spin_system,parameters,H,R,K)

Arguments

   parameters.npoints     - a vector of three integers giving the
                            number of points in the three temporal
                            dimensions, ordered as [t1 t2 t3].

   parameters.sweep       - a vector of three real numbers giving
                            the sweep widths in the three frequen-
                            cy dimensions, ordered as [f1 f2 f3].

   parameters.tau         - the three delays required for the ope-
                            ration of the sequence (see the paper)
                            in seconds. Reasonable values are
                            [2.25e-3, 14e-3, 4e-3]

   parameters.f1_decouple - logical switch controlling proton de-
                            coupling during the T1 period.

   H   - Hamiltonian matrix, received from context function

   R   - relaxation superoperator, received from context function

   K   - kinetics superoperator, received from context function

Outputs

   fid - three-dimensional free induction decay

Examples

An HNCO spectrum of ubiquitin (examples/nmr_proteins/hnco_ubiquitin_theo.m) appears below.

Hnco ubiquitin.png

Notes

Spin labels must be set to PDB atom IDs ('CA', 'HA', etc.) in sys.labels for this sequence to work properly.

See also

[hncoca.m]], protein.m, noesy.m, noesyhsqc.m, hsqc.m


Version 2.3, authors: Luke Edwards, Ilya Kuprov