Calculate barrier from a 3D landscape with multiple simulations

calculate_barrier_3d_batch(
  l,
  bg = NULL,
  start_location_value = c(0, 0),
  start_r = 0.1,
  end_location_value = c(0.7, 0.6),
  end_r = 0.15,
  Umax,
  expand = TRUE,
  omit_unstable = FALSE,
  base = exp(1)
)

Arguments

l

A 3d_animation_landscape or a 3d_matrix_landscape.

bg

A barrier_grid_3d object if you want to use different parameters for each condition. Otherwise NULL.

start_location_value, end_location_value

The initial position (in value) for searching the start/end point.

start_r, end_r

The searching (L1) radius for searching the start/end point.

Umax

The highest possible value of the potential function.

expand

If the values in the range all equal to Umax, expand the range or not?

omit_unstable

If a state is not stable (the "local minimum" overlaps with the saddle point), omit that state or not?

base

The base of the log function.

Value

A barrier_3d_batch object that contains the batch barrier calculation results.