Skip to content

Commit

Permalink
Fix regression in inputs for 'recycling fraction' debug tests
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
johnomotani committed Sep 4, 2024
1 parent 1a81821 commit 99b5ec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moment_kinetics/debug_test/recycling_fraction_inputs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 99b5ec8

Please sign in to comment.