Hi
I'm running some simulations (c++) on a cluster at my university. I write down some vector fields to disc, and during long simulations, I produce a lot of files with these fields which means I'm running out of storage space. Right now, I just use
cout << some data
which results in text files that humans can read. How much space would I save if I stored the data in binary format? The data is just floats and doubles.
Best
Carlis
I'm running some simulations (c++) on a cluster at my university. I write down some vector fields to disc, and during long simulations, I produce a lot of files with these fields which means I'm running out of storage space. Right now, I just use
cout << some data
which results in text files that humans can read. How much space would I save if I stored the data in binary format? The data is just floats and doubles.
Best
Carlis