Paraview output
We have one main routine to generate Paraview output for data that is either stored in a GeoData
structure (that has lat/lon info), or ParaviewData
, CartData
(Cartesian). If GeoData
is supplied it is internally automatically converted to the right format. Vectors, such as velocity, are also converted accordingly. You can also visualize time-dependent data, or combine existing paraview files into a *.pvd
paraview collection (that can be used to show a movie)
Missing docstring for write_paraview
. Check Documenter's build log for details.
GeophysicalModelGenerator.movie_paraview
— Functionpvd = movie_paraview(; name="Movie", pvd=pvd, Finalize::Bool=false, Initialize::Bool=true)
If you want to make a movie of your data set, you can use this routine to initialize and to finalize the movie-file. It will create a *.pvd
file, which you can open in Paraview
Individual timesteps are added to the movie by passing pvd
and the time of the timestep to the write_paraview
routine.
Example
Usually this is used inside a *.jl
script, as in this pseudo-example:
movie = movie_paraview(name="Movie", Initialize=true)
for itime=1:10
name = "test"*string(itime)
movie = write_paraview(Data, name, pvd=movie, time=itime)
end
movie_paraview(pvd=movie, Finalize=true)
Missing docstring for make_paraview_collection
. Check Documenter's build log for details.