Are you sure your velocity field is correct ?
It doesnt look right here:
Thank you Mathieu for getting back.
Here is how I generate those velocity timestamp files.
The dataset I received is in a special customized format, I used the specialized reader to get all the floats.
vx, vy, vz are the velocity[x,y,z] data file paths, all with the same grid[x,y,z].
e.g. grids info, gx, gy, gz size could be 8, 4, 4; then dataX,Y,Z size could be same that is 8x4x4=64; dims = [4, 4, 8]
x,y,z coordinates I played around for awhile, could you please take a glance, if anything looks suspicious to you? or the writer has some issue?
dataX, gx, gy, gz = JRReader(vx)
dataY, gx, gy, gz = JRReader(vy)
dataZ, gx, gy, gz = JRReader(vz)
velocity = np.column_stack((dataZ, dataY, dataX))
writeVelociyVTK(dims, velocity, gz, gy, gx) # dims = [4, 4, 8]
Here is the writer function,
def writeVelociyVTK(fileName, dims, velocity, gx, gy, gz):
grid = vtk.vtkStructuredGrid()
grid.SetDimensions(dims)
# Create a vtkPoints object to hold the points (the regular grid of points)
points = vtk.vtkPoints()
# Fill points with coordinates (this assumes a regular grid)
for z in range(dims[2]):
for y in range(dims[1]):
for x in range(dims[0]):
points.InsertNextPoint(gx[x], gy[y], gz[z])
# Set the points to the grid
grid.SetPoints(points)
# Create a vtkFloatArray for the velocity vectors
velocity_array = vtk.vtkFloatArray()
velocity_array.SetNumberOfComponents(3) # 3 components for velocity (vx, vy, vz)
velocity_array.SetName("Velocity")
# Fill the velocity array with data
for i in range(velocity.shape[0]):
velocity_array.InsertNextTuple3(velocity[i, 0], velocity[i, 1], velocity[i, 2])
# Add the velocity array to the grid
grid.GetPointData().AddArray(velocity_array)
# Write the grid to a VTK file
writer = vtk.vtkStructuredGridWriter()
writer.SetFileName(fileName)
writer.SetInputData(grid)
writer.Write()
I did not analyse in details but with the image I see, I think you must be exchanging two axis in your generation of structured data.
ok, that’s what I suspected too, let me try to figure the axis issue.
meanwhile, as a reference, could you help post your previous dataset again?
the “canExEx.e” dataset? Tons of thanks!
https://drive.google.com/file/d/14p8noWVdlS2ixSRwc0rcOUJ-2F9xijBn/view?usp=sharing
then I can see the video that I am targeting for at least.
Im afraid this dataset is lost, but you can use the particle tracer on any temporal volumic file like here: particle tracer - disappearing after time step 1 - #3 by Nikolas_Kare