You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The phonon object should not be mutated outside the initialization step. Somehow the following:
!!Initialize the matrix elements storage
if (phiso .and. .not. phiso_Tmat) then
call ph%xiso%allocate_xmassvar(ph, usetetra, phiso_Tmat)
end if
if (phsubs) then
call ph%xsubs%allocate_xmassvar(ph, usetetra, phiso_Tmat)
end if
has crept into the module bz_sums. This will have to be removed from here since bz_sums should ideally not mutate random particle states.
Related issue: I am not a fan of data types containing data types. So this will have to be reworked.
The text was updated successfully, but these errors were encountered:
The phonon object should not be mutated outside the initialization step. Somehow the following:
has crept into the module
bz_sums
. This will have to be removed from here sincebz_sums
should ideally not mutate random particle states.Related issue: I am not a fan of data types containing data types. So this will have to be reworked.
The text was updated successfully, but these errors were encountered: