Hello, I used fluidforce-plugin to get forces, how to get time-averaging the sum of viscous and pressure forces? I integrate the forces, but the results seems wrong. Could someone give me some advice?
Results “seems wrong” is not a helpful or useful statement. Nor is the lack of sample data.
Usually the best means of integrating these forces is to load the data into Python (it is a CSV file) and then use something like scipy.integrate.trapz
to integrate each column. You can then get the average by dividing this through by the total time duration.
Regards, Freddie.
Thanks, that’s what I did. Maybe my simulation was wrong.