Grid output

Base.writeFunction
write(fname::String, g::ExtendableGrid; format)

Write grid to file. Currently for pdelib sg and Gmsh formats.

source
ExtendableGrids.writeVTKFunction
writeVTK(
    filename::String,
    grid::ExtendableGrid{Tc, Ti};
    kwargs...
) -> Vector{String}

exports grid and optional provided data as a vtk file

  • filename: filename of the exported file
  • grid: grid

Each '(key, value)' pair adds another data entry to the vtk file via WriteVTK functionality.

source