Renamed file to compute DDI potential in k-space with cutoff.

This commit is contained in:
Karthik 2024-11-13 18:32:00 +01:00
parent d7aae28cb2
commit 6c9a2b363d
2 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ function [psi,V,VDk] = initialize(this,Params,Transf,TransfRad)
VDk = load(sprintf(strcat(this.SaveDirectory, '/VDk_M.mat')));
VDk = VDk.VDk;
else
VDk = this.Calculator.calculateVDCutoff(Params,Transf,TransfRad);
VDk = this.Calculator.calculateVDkWithCutoff(Params,Transf,TransfRad);
save(sprintf(strcat(this.SaveDirectory, '/VDk_M.mat')),'VDk');
end
fprintf('Computed and saved DDI potential in Fourier space with %s cutoff.\n', this.Calculator.CutoffType)