import Exio function main() #### Configuration section ###### ## exio_init requires three inputs and returns a handler of type exioH # only supported: AmrexCastro app::String = "AmrexCastro" # location where several run outputs are located they must have a common prefix # Local # outputPrefix::String = "/home/wgodoy/workspace/Castro/Exec/hydro_tests/Sedov/case" # Summit location outputPrefix::String = "/gpfs/alpine/proj-shared/csc310/wgodoy/amrex/Castro/Exec/hydro_tests/Sedov/case" # file name inside outputs directories logFile::String = "run.log" ################################# # init Exio (can create as many entities as needed) exio = Exio.exio_init(app, outputPrefix, logFile) # create a linear model based on provided runs (the larger, the better) # it will report the formula for dependent and independent variables Exio.run_linear_models(exio) end main()