Learn R Programming

fmesher (version 0.4.0)

fm_assess: Interactive mesh building and diagnostics

Description

Assess the finite element approximation errors in a mesh for interactive R sessions.

Usage

fm_assess(mesh, spatial.range, alpha = 2, dims = NULL)

Value

An sf object with gridded mesh assessment information

Arguments

mesh

An fm_mesh_2d object

spatial.range

numeric; the spatial range parameter to use for the assessment

alpha

numeric; A valid fm_matern_precision() alpha parameter

dims

2-numeric; the grid size

Author

Finn Lindgren Finn.Lindgren@gmail.com

See Also

fm_mesh_2d(), fm_rcdt_2d

Examples

Run this code

bnd <- fm_segm(cbind(
  c(0, 10, 10, 0, 0),
  c(0, 0, 10, 10, 0)
), is.bnd = TRUE)
mesh <- fm_rcdt_2d_inla(boundary = bnd, max.edge = 1)
out <- fm_assess(mesh, spatial.range = 3, alpha = 2)

Run the code above in your browser using DataLab