Configure Boundary fluxes
vs2dh.ConfigureBoundaryFluxes(nodes = NULL)
nodes | data.frame with columns "idbf" (id of boundary face), "bf_j" (grid row) and "bf_n" (grid column) |
---|
Boundary fluxes parameterisation
nodes <- data.frame(idbf = c(rep(1,5), rep(2,6)), bf_j = 1:11, bf_n = rep(1,11)) vs2dh.ConfigureBoundaryFluxes(nodes = nodes)#> $f7p #> [1] TRUE #> #> $numbf #> [1] 6 #> #> $maxcells #> [1] 6 #> #> $bf_nodes #> idbf bf_j bf_n #> 1 1 1 1 #> 2 1 2 1 #> 3 1 3 1 #> 4 1 4 1 #> 5 1 5 1 #> 6 2 6 1 #> 7 2 7 1 #> 8 2 8 1 #> 9 2 9 1 #> 10 2 10 1 #> 11 2 11 1 #>