Skip to content

Commit

Permalink
fix typoes on solvers when starting PISO/SIMPLE loops (thanks Tim)
Browse files Browse the repository at this point in the history
  • Loading branch information
mberto79 committed Aug 29, 2024
1 parent 0fd157e commit d8161e8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Solvers/Solvers_1_SIMPLE.jl
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function SIMPLE(

update_nueff!(nueff, nu, model.turbulence, config)

@info "Staring SIMPLE loops..."
@info "Starting SIMPLE loops..."

progress = Progress(iterations; dt=1.0, showspeed=true)

Expand Down
2 changes: 1 addition & 1 deletion src/Solvers/Solvers_1_SIMPLE_comp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ function CSIMPLE(
update_nueff!(nueff, nu, model.turbulence, config)
@. mueff.values = nueff.values * rhof.values

@info "Staring SIMPLE loops..."
@info "Starting SIMPLE loops..."

progress = Progress(iterations; dt=1.0, showspeed=true)

Expand Down
2 changes: 1 addition & 1 deletion src/Solvers/Solvers_2_PISO.jl
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function PISO(

xdir, ydir, zdir = XDir(), YDir(), ZDir()

@info "Staring PISO loops..."
@info "Starting PISO loops..."

progress = Progress(iterations; dt=1.0, showspeed=true)

Expand Down
2 changes: 1 addition & 1 deletion src/Solvers/Solvers_2_PISO_comp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ function CPISO(

xdir, ydir, zdir = XDir(), YDir(), ZDir()

@info "Staring PISO loops..."
@info "Starting PISO loops..."

progress = Progress(iterations; dt=1.0, showspeed=true)

Expand Down

0 comments on commit d8161e8

Please sign in to comment.