Skip to content

Commit b469239

Browse files
committed
Enables verbose output for vacmech solver
Turns on verbose output for the vacmech Newton-Raphson solver. This allows for more detailed monitoring and debugging of the solver's behavior during the Boundary Conditions test.
1 parent 5aee3eb commit b469239

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/SimulationsTests/BoundaryConditions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ end
124124

125125
α = CellState(1.0, dΩair)
126126
linesearch = Injectivity_Preserving_LS(α, Uu, Vu; maxiter=50, αmin=1e-16, ρ=0.5, c=0.95)
127-
nls_vacmech = Newton_RaphsonSolver(LUSolver(); maxiter=10, rtol=2, verbose=false, linesearch=linesearch)
127+
nls_vacmech = Newton_RaphsonSolver(LUSolver(); maxiter=10, rtol=2, verbose=true, linesearch=linesearch)
128128

129129
xh = FEFunction(Uu, zero_free_values(Uu))
130130
comp_model_vacmech = StaticNonlinearModel(res_vacmech, jac_vacmech, Uu, Vu, Du_air; nls=nls_vacmech, xh=xh)

0 commit comments

Comments
 (0)