Skip to content

Commit

Permalink
commenting out debug statements for umac boundary fill checking
Browse files Browse the repository at this point in the history
  • Loading branch information
mukul1992 committed Jun 7, 2024
1 parent 676e7a0 commit c0c94a4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions amr-wind/equation_systems/icns/icns_advection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -254,13 +254,13 @@ void MacProjOp::operator()(const FieldState fstate, const amrex::Real dt)

//amrex::average_face_to_cellcenter(mac_vec_cc, 0, mac_arr);
//amrex::WriteSingleLevelPlotfile("plt_macvel_precorrect", mac_vec_cc, {"umac","vmac","wmac"}, geom[0], 0.0, 0);
amrex::Print() << "!!! umac precorrect" << std::endl;
amrex::Print() << u_mac(0)[0];
//amrex::Print() << "!!! umac precorrect" << std::endl;
//amrex::Print() << u_mac(0)[0];

enforce_solvability(mac_vec);

amrex::Print() << "!!! umac postcorrect" << std::endl;
amrex::Print() << u_mac(0)[0];
//amrex::Print() << "!!! umac postcorrect" << std::endl;
//amrex::Print() << u_mac(0)[0];
//amrex::average_face_to_cellcenter(mac_vec_cc, 0, mac_arr);
//amrex::WriteSingleLevelPlotfile("plt_macvel_postcorrect", mac_vec_cc, {"umac","vmac","wmac"}, geom[0], 0.0, 0);

Expand All @@ -281,8 +281,8 @@ amrex::Print() << u_mac(0)[0];
}
//amrex::average_face_to_cellcenter(mac_vec_cc, 0, mac_arr);
//amrex::WriteSingleLevelPlotfile("plt_macvel_postproject", mac_vec_cc, {"umac","vmac","wmac"}, geom[0], 0.0, 0);
amrex::Print() << "!!! umac postproject" << std::endl;
amrex::Print() << u_mac(0)[0];
//amrex::Print() << "!!! umac postproject" << std::endl;
//amrex::Print() << u_mac(0)[0];

if (m_is_anelastic) {
for (int lev = 0; lev < m_repo.num_active_levels(); ++lev) {
Expand Down

0 comments on commit c0c94a4

Please sign in to comment.