removed print statement

This commit is contained in:
James McClure
2015-08-13 10:32:42 -04:00
parent 465839c074
commit 8031f86270

View File

@@ -607,7 +607,7 @@ int main(int argc, char **argv)
ComputePressureD3Q19(ID,f_even,f_odd,Pressure,Nx,Ny,Nz);
ComputeVelocityD3Q19(ID,f_even,f_odd,Velocity,Nx,Ny,Nz);
if (BoundaryCondition==1 && Dm.kproc == 0){
/* if (BoundaryCondition==1 && Dm.kproc == 0){
for (n=Nx*Ny; n<2*Nx*Ny; n++){
if (Dm.id[n]>0 && 3.0*Pressure[n] != din) printf("Inlet pBC error: %f != %f \n",3.0*Pressure[n],din);
}
@@ -618,7 +618,7 @@ int main(int argc, char **argv)
if (Dm.id[n]>0 && 3.0*Pressure[n] != dout) printf("Outlet pBC error: %f != %f \n",3.0*Pressure[n],din);
}
}
*/
//...........................................................................
// Copy the phase indicator field for the earlier timestep
DeviceBarrier();