Skip to content

Commit

Permalink
remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
marchdf committed Jun 6, 2024
1 parent d25f21d commit 3edfa68
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions amr-wind/physics/udfs/Rankine.H
Original file line number Diff line number Diff line change
Expand Up @@ -45,27 +45,6 @@ struct Rankine
vel_ref[2] + 0.0)};

field(iv[0], iv[1], iv[2], dcomp + comp) = vel[orig_comp + comp];

amrex::IntVect ivhh(AMREX_D_DECL(41, 12, 1));
amrex::IntVect ivhi(AMREX_D_DECL(40, 12, 1));
amrex::IntVect ivlo(AMREX_D_DECL(0, 12, 1));
amrex::IntVect ivlm(AMREX_D_DECL(-1, 12, 1));
if (iv == ivlo)
amrex::Print()
<< "Rankine.H op: filling " << vel[orig_comp + comp]
<< " at i=0" << std::endl;
if (iv == ivlm)
amrex::Print()
<< "Rankine.H op: filling " << vel[orig_comp + comp]
<< " at i=-1" << std::endl;
if (iv == ivhi)
amrex::Print()
<< "Rankine.H op: filling " << vel[orig_comp + comp]
<< " at i=40" << std::endl;
if (iv == ivhh)
amrex::Print()
<< "Rankine.H op: filling " << vel[orig_comp + comp]
<< " at i=41" << std::endl;
}
};
using DeviceType = DeviceOp;
Expand Down

0 comments on commit 3edfa68

Please sign in to comment.