-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TXT export: store data in memory and write only at last timestep #863
Comments
Makes sense. |
Do we need to write data at each timestep? In the current implementation, |
We are working with numpy arrays so it's unlikely that we will run out of memory. Plus I don't see how not writing the data at each timestep would solve this? Maybe there's something I don't get here |
I guess, it depends on the export parameters (number of export times and number of vertices).
It won't. I meant that there is no much difference. Maybe, just make |
@jhdark suggested that instead of writing the TXT at each timestep, we could store the data in memory and write everything at the last time step.
We could have a user argument to choose the behaviour.
@KulaginVladimir what do you think?
The text was updated successfully, but these errors were encountered: