Yu-Kun Qian

Results 67 comments of Yu-Kun Qian
trafficstars

Great, I'll try copying the `sol` only. Thank you very much @glwagner.

Well, that may not be too hard. Just want to know if this is general enough for all problems? I guess this only applies to 2D NS problem where `sol`...

Thanks @glwagner, I tried using Python's `xarray` to load jld2 (with `engine='h5netcdf'`) file but no data available. So I just used `NCDataset.jl` to do the output.

Here is my code for output a netcdf file: ```julia using NCDatasets filepath = "." filename = joinpath(filepath, "/home/qianyk/Output2D_8192.nc") dsOut = NCDatasets.Dataset(filename, "c") defDim(dsOut, "x", n) defDim(dsOut, "y", n) defDim(dsOut,...

No problem. I thought people here prefer the jld2 file. Actually, I've no idea which format is more efficient. With netcdf, I can compress the data, which is useful to...

Thanks @glwagner. That's quite useful. I've played with `SpeedyWeather.jl` and its output of a netcdf file is really small (surprising to me). I've no idea if @milankl has already used...

Great to know that @milankl. `BitInformation.jl` is quite useful for compression. I'll probably play with its python wrapper [xbitinfo](https://github.com/observingClouds/xbitinfo).