From 99b5ec89730df19f3fff209afaf4d47fb0553198 Mon Sep 17 00:00:00 2001 From: John Omotani Date: Wed, 4 Sep 2024 14:01:33 +0100 Subject: [PATCH] Fix regression in inputs for 'recycling fraction' debug tests The T_wall setting had been accidentally altered (or failed to merge?) when the inputs were refactored, causing sqrt(-1) errors. Reset T_wall to a working value. --- moment_kinetics/debug_test/recycling_fraction_inputs.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moment_kinetics/debug_test/recycling_fraction_inputs.jl b/moment_kinetics/debug_test/recycling_fraction_inputs.jl index a10e7e5fa3..fdefdfe8aa 100644 --- a/moment_kinetics/debug_test/recycling_fraction_inputs.jl +++ b/moment_kinetics/debug_test/recycling_fraction_inputs.jl @@ -6,7 +6,7 @@ test_input = OptionsDict("composition" => OptionsDict("n_ion_species" => 1, "electron_physics" => "boltzmann_electron_response", "recycling_fraction" => 0.5, "T_e" => 0.2, - "T_wall" => 0.1), + "T_wall" => 2.0), "ion_species_1" => OptionsDict("initial_density" => 1.0, "initial_temperature" => 1.0), "run_name" => "full-f",