From 35a3fc7fcecbd6a4302a325ae0bd7b380cbefaf1 Mon Sep 17 00:00:00 2001 From: NikoOinonen Date: Fri, 18 Oct 2024 14:02:12 +0300 Subject: [PATCH] Remove prints. --- ppafm/cli/conv_rho.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ppafm/cli/conv_rho.py b/ppafm/cli/conv_rho.py index 43082eb3..dac70c6c 100755 --- a/ppafm/cli/conv_rho.py +++ b/ppafm/cli/conv_rho.py @@ -60,10 +60,8 @@ def main(): if args.density_cutoff: print(f">>> Applying a density cutoff of {args.density_cutoff} to sample and tip electron densities.") - print(rho_sample.max(), rho_tip.max()) rho_sample[rho_sample > args.density_cutoff] = args.density_cutoff rho_tip[rho_tip > args.density_cutoff] = args.density_cutoff - print(rho_sample.max(), rho_tip.max()) print(">>> Evaluating convolution E(R) = A*Integral_r ( rho_tip^B(r-R) * rho_sample^B(r) ) using FFT ... ") f_x, f_y, f_z, energy = fieldFFT.potential2forces_mem(rho_sample, lvec_sample, n_dim_sample, rho=rho_tip, doForce=True, doPot=True, deleteV=True)