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
utype delta = max(1.0, dens) / 1.0; // limiting to valid range, otherwise index may return NaN (this only affects atmospheric regions with at least around 1000 bar)
3185
+
utype delta = min(1.0, dens) / 1.0; // limiting to valid range, otherwise index may return NaN (this only affects atmospheric regions with at least around 1000 bar)
0 commit comments