/CFL3DPost.jl

Primary LanguageJuliaMIT LicenseMIT

CFL3DPost

Build Status Coverage

Install

Julia >= 1.6 is required!

] add https://github.com/xue-cheng/CFL3DPost.jl

Usage

Split CFL3D Solution Movie

using CFL3DPost
splitter = MovieSplitter(;prefix="movie_", convert="native") 
# - prefix: prefix of output file, default: "movie_"
# - convert: for specifying the byte-order of the file data; one of
#    - "native": use the host byte order [default]
#    - "big-endian": use big-endian byte-order
#    - "little-endian": use little-endian byte-order
splitter("cfl3d.inp") # cfl3d input file

see also: src/movie_splitter.jl and test/movie_splitter.jl