Skip to content

Commit

Permalink
Change default sheath_boundary_simple extrapolation to exponential, free
Browse files Browse the repository at this point in the history
This was previousle exponential free if quantity was decreasing and Neumann if it was increasing
  • Loading branch information
mikekryjak committed Sep 11, 2024
1 parent ac9210b commit 5433abd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sheath_boundary_simple.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,15 @@ SheathBoundarySimple::SheathBoundarySimple(std::string name, Options& alloptions

density_boundary_mode = options["density_boundary_mode"]
.doc("BC mode: 0=LimitFree, 1=ExponentialFree, 2=LinearFree")
.withDefault<BoutReal>(0);
.withDefault<BoutReal>(1);

pressure_boundary_mode = options["pressure_boundary_mode"]
.doc("BC mode: 0=LimitFree, 1=ExponentialFree, 2=LinearFree")
.withDefault<BoutReal>(0);
.withDefault<BoutReal>(1);

temperature_boundary_mode = options["temperature_boundary_mode"]
.doc("BC mode: 0=LimitFree, 1=ExponentialFree, 2=LinearFree")
.withDefault<BoutReal>(0);
.withDefault<BoutReal>(1);


}
Expand Down

0 comments on commit 5433abd

Please sign in to comment.