Difference between revisions of "Propagator.m"

From Spinach Documentation Wiki
Jump to: navigation, search
(Normalise sequential blank lines)
Line 23: Line 23:
 
==See also==
 
==See also==
 
[[evolution.m]], [[krylov.m]], [[step.m]], [[shaped_pulse_af.m]], [[shaped_pulse_xy.m]], [[equilibrium.m]]
 
[[evolution.m]], [[krylov.m]], [[step.m]], [[shaped_pulse_af.m]], [[shaped_pulse_xy.m]], [[equilibrium.m]]
 
  
 
''Version 2.2, authors: [[Ilya Kuprov]], [[Luke Edwards]]''
 
''Version 2.2, authors: [[Ilya Kuprov]], [[Luke Edwards]]''

Revision as of 12:28, 25 April 2026

Calculates exponential propagator exp(-i*L*timestep) using scaled and squared Taylor series method.

Syntax

    P=propagator(spin_system,L,timestep)

Arguments

   L          -  Hamiltonian or Liouvillian matrix

   timestep   -  propagation time step

Outputs

   P          -  propagator matrix

Notes

  1. GPUs are supported, add 'gpu' to sys.enable array during calculation setup.
  2. Propagator caching (https://doi.org/10.1063/1.4928978) is supported, add 'caching' to sys.enable array during calculation setup.
  3. We did have Chebyshev and Newton series here at one point, as well as the Pade method. None of them lived up to their marketing.

See also

evolution.m, krylov.m, step.m, shaped_pulse_af.m, shaped_pulse_xy.m, equilibrium.m

Version 2.2, authors: Ilya Kuprov, Luke Edwards