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
which may be simplified to its equivalent form without using log:
l2_norm_filtered * N ** alpha > l2_norm_component
where N = dg.mesh.extent(d)-1.
This way may have some computational speed-ups (however, up to the cost of pow function) as well as that we do not need the zero_cutoff (persson_epsilon) and the first if branch using it.
The text was updated successfully, but these errors were encountered:
The TCI-ing criteria of current implementation uses the following lines:
which may be simplified to its equivalent form without using
log
:where N = dg.mesh.extent(d)-1.
This way may have some computational speed-ups (however, up to the cost of
pow
function) as well as that we do not need thezero_cutoff
(persson_epsilon) and the firstif
branch using it.The text was updated successfully, but these errors were encountered: