create_area_pars: Create named list of area parameters

Description Usage Arguments Value Author(s) Examples

View source: R/create_pars.R

Description

Create named list of area parameters

Usage

1
2
3
4
5
6
7
8
9
create_area_pars(
  max_area,
  proportional_peak_t,
  peak_sharpness,
  total_island_age,
  sea_level_amplitude,
  sea_level_frequency,
  island_gradient_angle
)

Arguments

max_area

Numeric defining maximum area.

proportional_peak_t

Numeric value from 0 to 1 indicating where in the island's history the peak area is achieved.

peak_sharpness

Numeric defining sharpness of peak.

total_island_age

Numeric defining total island age.

sea_level_amplitude

Numeric defining amplitude of area fluctuation from sea level.

sea_level_frequency

Numeric defining frequency of sine wave of area change from sea level.

island_gradient_angle

Numeric defining the angle in degrees specifying the slope of the island.

Value

list of numerical values containing area and sea level parameters for island ontogeny simulation

Author(s)

Richel J.C Bilderbeek, Joshua Lambert, Pedro Neves

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
testit::assert(DAISIE::are_area_pars(
create_area_pars(
  max_area = 10,
  proportional_peak_t = 0.5,
  peak_sharpness = 1,
  total_island_age = 5,
  sea_level_amplitude = 5,
  sea_level_frequency = 10,
  island_gradient_angle = 0
      )
    )
  )

xieshu95/DAISIE_new documentation built on March 20, 2020, 5:31 a.m.