Skip to content

Commit

Permalink
Fix get_run_info_no_setup when n_neutrals = 0
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasMontoya4 committed Sep 4, 2024
1 parent dec62a0 commit fa70625
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions moment_kinetics/src/load_data.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3509,11 +3509,11 @@ function get_run_info_no_setup(run_dir::Union{AbstractString,Tuple{AbstractStrin
dummy_input = grid_input("dummy", 1, 1, 1, 1, 0, 1.0,
"chebyshev_pseudospectral", "", "", "periodic",
dummy_adv_input, dummy_comm, "uniform")
vzeta, vzeta_spectral = define_coordinate(dummy_input)
vzeta, vzeta_spectral = define_coordinate(dummy_input; ignore_MPI = true)
vzeta_chunk_size = 1
vr, vr_spectral = define_coordinate(dummy_input)
vr, vr_spectral = define_coordinate(dummy_input; ignore_MPI = true)
vr_chunk_size = 1
vz, vz_spectral = define_coordinate(dummy_input)
vz, vz_spectral = define_coordinate(dummy_input; ignore_MPI = true)
vz_chunk_size = 1
end

Expand Down

0 comments on commit fa70625

Please sign in to comment.