Calculations/Dipolar-Gas-Simulator/+VariationalSolver2D/@Calculator/calculateChemicalPotential.m

33 lines
1.1 KiB
Mathematica
Raw Normal View History

function muchem = calculateChemicalPotential(~,psi,Params,VParams,Transf,VDk,V)
g_eff = Params.gs * (1/(sqrt(2*pi)*VParams.ell));
gamma_eff = Params.gammaQF * (sqrt(2/5)/(pi^(3/4)*VParams.ell^(3/2)));
2024-11-18 13:25:09 +01:00
Ez = (0.25/VParams.ell^2) + (0.25*Params.gz*VParams.ell^2);
% Parameters
normfac = Params.Lx*Params.Ly/numel(psi);
KEop = 0.5*(Transf.KX.^2+Transf.KY.^2);
% DDIs
frho = fftn(abs(psi).^2);
Phi = real(ifftn(frho.*VDk));
Eddi = (Params.gdd*Phi.*abs(psi).^2)/(sqrt(2*pi)*VParams.ell);
2024-11-22 00:04:27 +01:00
% Kinetic energy
Ekin = KEop.*abs(fftn(psi)*normfac).^2;
Ekin = sum(Ekin(:))*Transf.dkx*Transf.dky/(2*pi)^2;
2024-11-22 00:04:27 +01:00
% Potential energy
Epot = V.*abs(psi).^2;
2024-11-22 00:04:27 +01:00
% Contact interactions
Eint = g_eff*abs(psi).^4;
2024-11-22 00:04:27 +01:00
% Quantum fluctuations
Eqf = gamma_eff*abs(psi).^5;
2024-11-22 00:04:27 +01:00
% Total energy
muchem = Ekin + Ez*Params.N + sum(Epot(:) + Eint(:) + Eddi(:) + Eqf(:))*Transf.dx*Transf.dy;
muchem = muchem / Params.N; % Only use if psi is normalized to N
end