Difference between revisions of "Cp contact hard.m"

From Spinach Documentation Wiki
Jump to: navigation, search
(Created page with "Cross-polarization NMR experiment in the rotating frame. Syntax: fid=crosspol(spin_system,parameters,H,R,K) Parameters: parameters.irr_powers - a vector containin...")
 
(Update function See also links and function index membership)
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Cross-polarization NMR experiment in the rotating frame. Syntax:
+
{{DISPLAYTITLE:cp_contact_hard.m}} __NOTOC__
 +
Cross-polarisation experiment in the rotating frame. Applies an ideal pi/2 pulse using the specified operators, then evolves the system with the specified spin-lock terms added to the Liovillian. The contact curve is returned.
  
    fid=crosspol(spin_system,parameters,H,R,K)
+
==Syntax==
  
Parameters:
+
    contact_curve=cp_contact_hard(spin_system,parameters,H,R,K)
  
    parameters.irr_powers - a vector containing the values
+
==Parameters==
                            of the RF power on each channel
 
  
 +
    parameters.irr_powers - a matrix containing the values
 +
                            of the spin-lock nutation fre-
 +
                            quency on each channel (rows)
 +
                            at each time slice (cols), Hz
 +
 
     parameters.irr_opers  - a cell array of spin operators
 
     parameters.irr_opers  - a cell array of spin operators
                             corresponding to the irradiation
+
                             corresponding to the spin-lock
                             on each RF channel
+
                             on each channel
 +
 +
    parameters.exc_opers  - a cell array of spin operators
 +
                            for the ideal pi/2 excitation
 +
                            pulse (same flip angle on all
 +
                            channels)
 +
 +
    parameters.time_steps - a vector of time slice durati-
 +
                            ons, seconds
 +
 +
    parameters.rho0      - initial state vector
 +
 +
    parameters.coil      - detection state vector
 +
 +
    H - Hamiltonian matrix, received from context function
 +
 +
    R - relaxation superoperator, received from context function
 +
 +
    K - kinetics superoperator, received from context function
  
    parameters.exc_opers  - excitation operator for the exci-
+
==Outputs==
                            tation pulse (pi/2).
 
  
     parameters.rho0      - initial state
+
     contact_curve - contact curve detected on the coil
 +
                    state specified in parameters.coil
  
    parameters.coil      - detection state
+
==Examples==
 +
An example of a 1H-15N CP matching condition scan under MAS (examples/nmr_solids/cp_matching_1.m) appears below.
 +
 
 +
[[File: cp_match.png]]
 +
 
 +
==See also==
 +
[[overtone_cp.m]], [[dante.m]], [[cn2d_dq.m]], [[cn2d_sq.m]], [[mqmas.m]], [[cp_acquire_soft.m]], [[cp_contact_soft.m]], [[fslghetcor.m]], [[nqr_pa.m]], [[pdsd.m]], [[respiration.m]], [[wise.m]], [[Built-in_experiments]]
 +
 
 +
''Version 2.9, authors: [[Ilya Kuprov]], [[Marina Carravetta]], [[Phil Williamson]]''

Latest revision as of 19:35, 6 June 2026

Cross-polarisation experiment in the rotating frame. Applies an ideal pi/2 pulse using the specified operators, then evolves the system with the specified spin-lock terms added to the Liovillian. The contact curve is returned.

Syntax

    contact_curve=cp_contact_hard(spin_system,parameters,H,R,K)

Parameters

    parameters.irr_powers - a matrix containing the values
                            of the spin-lock nutation fre-
                            quency on each channel (rows)
                            at each time slice (cols), Hz

    parameters.irr_opers  - a cell array of spin operators
                            corresponding to the spin-lock
                            on each channel

    parameters.exc_opers  - a cell array of spin operators
                            for the ideal pi/2 excitation 
                            pulse (same flip angle on all
                            channels)

    parameters.time_steps - a vector of time slice durati-
                            ons, seconds

    parameters.rho0       - initial state vector

    parameters.coil       - detection state vector

    H - Hamiltonian matrix, received from context function

    R - relaxation superoperator, received from context function

    K - kinetics superoperator, received from context function

Outputs

    contact_curve - contact curve detected on the coil
                    state specified in parameters.coil

Examples

An example of a 1H-15N CP matching condition scan under MAS (examples/nmr_solids/cp_matching_1.m) appears below.

Cp match.png

See also

overtone_cp.m, dante.m, cn2d_dq.m, cn2d_sq.m, mqmas.m, cp_acquire_soft.m, cp_contact_soft.m, fslghetcor.m, nqr_pa.m, pdsd.m, respiration.m, wise.m, Built-in_experiments

Version 2.9, authors: Ilya Kuprov, Marina Carravetta, Phil Williamson