Grid output
Base.write — Function
write(fname::String, g::ExtendableGrid; format, kwargs...)
Write grid to file. Supported formats:
- "*.sg": pdelib sg format. See
simplexgrid(::String;kwargs...)
ExtendableGrids.writeVTK — Function
writeVTK(
filename::String,
grid::ExtendableGrid{Tc, Ti};
append,
compress,
kwargs...
) -> Vector{String}
exports grid and optional provided data as a vtk file
filename: filename of the exported filegrid: grid
Each '(key, value)' pair adds another data entry to the vtk file via WriteVTK functionality.
For the arguments 'append' and 'compress', see documentation of vtk_grid of WriteVTK.
source