fm_assess {fmesher} | R Documentation |
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)
Arguments
mesh |
An fm_mesh_2d object |
spatial.range |
numeric; the spatial range parameter to use for the assessment |
alpha |
numeric; A valid |
dims |
2-numeric; the grid size |
Value
An sf
object with gridded mesh assessment information
Author(s)
Finn Lindgren Finn.Lindgren@gmail.com
See Also
Examples
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)
[Package fmesher version 0.5.0 Index]