scientificcomputing / scifem

Scientific finite element toolbox
https://scientificcomputing.github.io/scifem/
MIT License
15 stars 2 forks source link

Time dependent point clouds #58

Closed finsberg closed 1 week ago

finsberg commented 4 weeks ago

It would be nice if we could have a way to save time dependent point clouds, e.g instead of doing

scifem.xdmf.create_pointcloud("results.xdmf", [u, v])

we could do something similar to what is done in VTXWriter, e.g

xdmf = scifem.xdmf.create_pointcloud("results.xdmf", [u, v])
xdmf.write(0.0)
finsberg commented 1 week ago

Fixed in #63