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 variable "sddm" is only set if (i!=0), but it is used to compute sidm (line 62 of ekv3_noise.va) regardless of the value of i
// FLICKER NOISE DUE TO MOBILITY FLUCTUATIONS-HOOGE MODEL
if (i!=0)
begin
sddm = (ALPHAHqel2)/(`C_K * T * WeffNF(Leff - deltal)COX * inv_dqmip1nq);
kddm = (1/(1+qs+qdp))(1+((ln(qs/qdp))/(2qs_qdp)));
end
else
begin
kddm = 0;
end
sidm = sddm * kddm IDSIDS ;
The text was updated successfully, but these errors were encountered:
The variable "sddm" is only set if (i!=0), but it is used to compute sidm (line 62 of ekv3_noise.va) regardless of the value of i
// FLICKER NOISE DUE TO MOBILITY FLUCTUATIONS-HOOGE MODEL
if (i!=0)
begin
sddm = (ALPHAHqel2)/(`C_K * T * WeffNF(Leff - deltal)COX * inv_dqmip1nq);
kddm = (1/(1+qs+qdp))(1+((ln(qs/qdp))/(2qs_qdp)));
end
else
begin
kddm = 0;
end
sidm = sddm * kddm IDSIDS ;
The text was updated successfully, but these errors were encountered: