Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Tutorials/FlowPastCylinder/inputs.3d.flow_past_cylinder-x
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ max_step = -1 # Max number of time steps
# SOLVER SETTINGS #
#.......................................#
ns.init_iter = 3 # How many initial pressure iterations
ns.init_vel_iter = 5 # How many initial projeciton iterations to ensure velocity satisfies divergence constraint
ns.init_vel_iter = 5 # How many initial projection iterations to ensure velocity satisfies divergence constraint
ns.visc_tol = 1.0e-11 # tolerance for viscous solve
#¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨#
# TIME STEP COMPUTATION #
Expand Down
2 changes: 1 addition & 1 deletion Tutorials/FlowPastCylinder/inputs.3d.flow_past_cylinder-y
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ max_step = -1 # Max number of time steps
# SOLVER SETTINGS #
#.......................................#
ns.init_iter = 3 # How many initial pressure iterations
ns.init_vel_iter = 5 # How many initial projeciton iterations to ensure velocity satisfies divergence constraint
ns.init_vel_iter = 5 # How many initial projection iterations to ensure velocity satisfies divergence constraint
ns.visc_tol = 1.0e-11 # tolerance for viscous solve
#¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨#
# TIME STEP COMPUTATION #
Expand Down
2 changes: 1 addition & 1 deletion Tutorials/FlowPastCylinder/inputs.3d.flow_past_cylinder-z
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ max_step = -1 # Max number of time steps
# SOLVER SETTINGS #
#.......................................#
ns.init_iter = 3 # How many initial pressure iterations
ns.init_vel_iter = 5 # How many initial projeciton iterations to ensure velocity satisfies divergence constraint
ns.init_vel_iter = 5 # How many initial projection iterations to ensure velocity satisfies divergence constraint
ns.visc_tol = 1.0e-11 # tolerance for viscous solve
#¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨#
# TIME STEP COMPUTATION #
Expand Down
2 changes: 1 addition & 1 deletion Tutorials/HIT/prob_init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void NavierStokes::init_forced (Box const& vbx,
const Real Lx = (probhi[0] - problo[0]);
const Real Ly = (probhi[1] - problo[1]);
#if (AMREX_SPACEDIM == 3)
const Real Lz = (probhi[2] - problo[1]);
const Real Lz = (probhi[2] - problo[2]);
#else
const Real Lz = 1.0;
#endif
Expand Down
Loading