sle: Stochastic Loewner Evolution

Description Usage Arguments Value Note

Description

Generate SLE trace driven by Brownian motion, possibly with the addition of Levy-flights

Usage

1
2
sle(kappa = 4, tmax = 1, a = 1, kappaL = 0, nsteps = 2000,
  p_timescaling = 0.5, verbose = TRUE, forcing = NULL)

Arguments

kappa

strength of the 1d Brownian motion in the driving function.

tmax

max time to which the trace is developed.

a

exponent of the Levy flights component in the driving function.

kappaL

strength of the Levy flights component in the driving function.

nsteps

number of steps.

p_timescaling

exponent determining the distribution of time steps. The succession of times will be made uniform in the variable t^p_timescaling.

verbose

boolean, to print progress statements or not.

forcing

if not NULL, should be a dataframe of the driving function, which will then be used, overriding other driving-related arguments. The dataframe should have columns t and xi, starting from t=0 and xi=0, sorted.

Value

List with components: t - vector of time values, xi - vector of values of the driving function, gamma - data frame of x and y coordinates of the generated trace,t_cross - crossover time between Brownian and Levy components (NULL if kappaL = 0), call_params - list of call parameters, runtime - elapsed time in seconds.

Note

SLE (Stochastic Loewner Evolution) is a generative stochastic process for growing a stocastic curve (trace) out of a boundary of a 2D domain. It uses a continuous family of conformal maps, parametrized by a "time" parameter: w(z,t). The SLE equation is dw(z,t)/dt = 2/(w(z,t)-xi(t)), w(z,0)=z. Here xi(t) is the real-valued driving function of the process, assumed to be a stochastic process. The mapping w(z,t) is from the upper half plane. In the standard SLE, xi(t) is the 1D Brownian motion with diffusion constant kappa (and an intricate connection to conformal field theory exists). As a generalization, we also allow xi(t) to be a sum of 1D Brownian motion and Levy fligts.

For more details see this publication and references therein:

Rushkin, I., Oikonomou, P., Kadanoff, L.P. and Gruzberg, I.A., 2006. Stochastic Loewner evolution driven by Lévy processes. Journal of Statistical Mechanics: Theory and Experiment, 2006(01), p.P01001.


rushkin/dla documentation built on May 25, 2019, 2:53 a.m.

Related to sle in rushkin/dla...