From 3edfa68fe1dcca341e18ac8279a8fdf054b7f8e6 Mon Sep 17 00:00:00 2001 From: Marc Henry de Frahan Date: Thu, 6 Jun 2024 09:02:59 -0600 Subject: [PATCH] remove debug statements --- amr-wind/physics/udfs/Rankine.H | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/amr-wind/physics/udfs/Rankine.H b/amr-wind/physics/udfs/Rankine.H index f61375e41a..221e092992 100644 --- a/amr-wind/physics/udfs/Rankine.H +++ b/amr-wind/physics/udfs/Rankine.H @@ -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;