From 1a31ca808ee7290ed492cd34bceeeb12d0b87e7b Mon Sep 17 00:00:00 2001 From: Michael Hardman <29800382+mrhardman@users.noreply.github.com> Date: Mon, 5 Aug 2024 14:40:54 +0100 Subject: [PATCH] Make sure n_neutral_species = 0 in gyroaverage_tests.jl --- moment_kinetics/test/gyroaverage_tests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moment_kinetics/test/gyroaverage_tests.jl b/moment_kinetics/test/gyroaverage_tests.jl index ff842ec17..e330af474 100644 --- a/moment_kinetics/test/gyroaverage_tests.jl +++ b/moment_kinetics/test/gyroaverage_tests.jl @@ -230,7 +230,7 @@ function gyroaverage_test(absolute_error; rhostar=0.1, pitch=0.5, ngrid=5, kr=2, end function create_test_composition() - input_dict = Dict{String,Any}("composition" => Dict("gyrokinetic_ions" => true ) ) + input_dict = Dict{String,Any}("composition" => Dict("n_ion_species" => 1, "n_neutral_species" => 0, "gyrokinetic_ions" => true ) ) println(input_dict) return get_species_input(input_dict) end