Skip to content

Commit 7bff699

Browse files
committed
evolve_momentum: Change fix_boundary_momentum_flux to false
This change introduces a parallel viscosity that results in smoother profiles into the sheath, and better energy conservation in transport simulations.
1 parent 3bde204 commit 7bff699

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/evolve_momentum.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ EvolveMomentum::EvolveMomentum(std::string name, Options &alloptions, Solver *so
4646

4747
fix_momentum_boundary_flux = options["fix_momentum_boundary_flux"]
4848
.doc("Fix Y boundary momentum flux to boundary midpoint value?")
49-
.withDefault<bool>(true);
49+
.withDefault<bool>(false);
5050
}
5151

5252
void EvolveMomentum::transform(Options &state) {

0 commit comments

Comments
 (0)