Turning Bands method
The Turning Bands method is a simulation method for stationary, isotropic
(univariate or multivariate)
random fields in any dimension and defined on arbitrary points or
arbitrary grids. It performs a multidimensional simulation
by superposing lower-dimensional fields. In fact, the Turning Bands
method is called with the Turning Bands model, see
RMtbm
.
For details see RMtbm
.
RPtbm(phi, boxcox, fulldim, reduceddim, layers, lines, linessimufactor, linesimustep, center, points)
phi |
object of class |
boxcox |
the one or two parameters of the box cox transformation.
If not given, the globally defined parameters are used.
See |
fulldim |
a positive integer. The dimension of the space of the random field to be simulated. |
reduceddim |
a positive integer; less than |
layers |
a boolean value; for space-time model. If Default: |
lines |
Number of lines used.
Default: |
linessimufactor |
Default: |
linesimustep |
If Default: |
center |
Scalar or vector.
If not Default: |
points |
integer. If greater than 0,
Default: |
2-dimensional case
It is generally difficult to use the turning bands method
(RPtbm
) directly in the 2-dimensional space.
Instead, 2-dimensional random fields are frequently obtained
by simulating a 3-dimensional random field (using
RPtbm
) and taking a 2-dimensional cross-section.
See also the arguments fulldim
and reduceddim
.
4-dimensional case
The turning layers can be used for the simulations with a (formal)
time component. It works for all isotropic models,
some special models such as RMnsst
, and
multiplicative models that separate the time component.
RPtbm
returns an object of class RMmodel
.
Both the precision and the simulation time
depend heavily on linesimustep
and
linessimufactor
.
For covariance models with larger values of the scale parameter,
linessimufactor=2
is too small.
Martin Schlather, schlather@math.uni-mannheim.de, https://www.wim.uni-mannheim.de/schlather/
Turning bands
Lantuejoul, C. (2002) Geostatistical Simulation: Models and Algorithms. Springer.
Matheron, G. (1973). The intrinsic random functions and their applications. Adv. Appl. Probab., 5, 439-468.
Strokorb, K., Ballani, F., and Schlather, M. (2014) Tail correlation functions of max-stable processes: Construction principles, recovery and diversity of some mixing max-stable processes with identical TCF. Extremes, Submitted.
Turning layers
Schlather, M. (2011) Construction of covariance functions and unconditional simulation of random fields. In Porcu, E., Montero, J.M. and Schlather, M., Space-Time Processes and Challenges Related to Environmental Problems. New York: Springer.
Gaussian,
RP,
RPspectral
.
RFoptions(seed=0) ## *ANY* simulation will have the random seed 0; set ## RFoptions(seed=NA) to make them all random again ## isotropic example that forces the use of the turning bands method model <- RPtbm(RMstable(s=1, alpha=1.8)) x <- seq(-3, 3, 0.1) z <- RFsimulate(model=model, x=x, y=x) plot(z) ## anisotropic example that forces the use of the turning bands method model <- RPtbm(RMexp(Aniso=matrix(nc=2, rep(1,4)))) z <- RFsimulate(model=model, x=x, y=x) plot(z) ## isotropic example that uses the turning layers method model <- RMgneiting(orig=FALSE, scale=0.4) x <- seq(0, 10, 0.1) z <- RFsimulate(model, x=x, y=x, z=x, T=c(1,1,5)) plot(z, MARGIN.slices=4, MARGIN.movie=3)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.