Difference between revisions of "Endor cw.m"

From Spinach Documentation Wiki
Jump to: navigation, search
(Created page with "Continuous-wave ENDOR pulse sequence. Syntax: fid=endor_cw(spin_system,parameters,H,R,K) where H is the Hamiltonian matrix, R is the relaxation matrix and K is t...")
 
Line 1: Line 1:
Continuous-wave ENDOR pulse sequence. Syntax:
+
{{DISPLAYTITLE:function.m}} __NOTOC__
 +
Fast approximate simulation of isotropic continuous-wave ENDOR pulse sequence - essentially an NMR spectrum weighted by hyperfine couplings is recorded.
  
            fid=endor_cw(spin_system,parameters,H,R,K)
+
==Syntax==
  
where H is the Hamiltonian matrix, R is the relaxation matrix
+
    fid=endor_cw(spin_system,parameters,H,R,K)
and K is the chemical kinetics matrix. The following parameters
+
 
are reqired:
+
==Arguments==
  
 
   parameters.sweep        nuclear frequency sweep width, Hz
 
   parameters.sweep        nuclear frequency sweep width, Hz
  
 
   parameters.npoints      number of FID points to be computed
 
   parameters.npoints      number of FID points to be computed
 +
 +
  H    - Hamiltonian matrix, received from context function
 +
 +
  R    - relaxation superoperator, received from context function
 +
 +
  K    - kinetics superoperator, received from context function
 +
 +
==Outputs==
 +
 +
  fid  - free induction decay whose Fourier transform
 +
          approximates a CW ENDOR spectrum
 +
 +
==See also==
 +
[[endor_mims.m]], [[endor_davies.m]], [[eseem.m]], [[fieldsweep.m]], [[hyscore.m]]
 +
 +
 +
''Version 2.3, authors: [[Luke Edwards]]''

Revision as of 18:30, 30 December 2018

Fast approximate simulation of isotropic continuous-wave ENDOR pulse sequence - essentially an NMR spectrum weighted by hyperfine couplings is recorded.

Syntax

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

Arguments

  parameters.sweep         nuclear frequency sweep width, Hz
  parameters.npoints       number of FID points to be computed
  H     - Hamiltonian matrix, received from context function
  R     - relaxation superoperator, received from context function
  K     - kinetics superoperator, received from context function

Outputs

  fid   - free induction decay whose Fourier transform 
          approximates a CW ENDOR spectrum

See also

endor_mims.m, endor_davies.m, eseem.m, fieldsweep.m, hyscore.m


Version 2.3, authors: Luke Edwards