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
Above, rhoAOld is zero due to the fact that the current filter and time step are the same. Moreover, a forced reset would note that rhoAk and rhok are the same value:
// avoid computing stresses when when oldTimeFilter is not zero
// this will occur only on a first time step of a new simulation
if (oldTimeFilter > 0.0 ) {
if ( avInfo->computeFavreStress_ ) {
compute_favre_stress(avInfo->name_, oldTimeFilter, zeroCurrent, dt, s_all_nodes);
}
}
Favre stress on forced reset at a restart is polluted with nans due to a divide by zero:
Above, rhoAOld is zero due to the fact that the current filter and time step are the same. Moreover, a forced reset would note that rhoAk and rhok are the same value:
with
It is not clear to me why an initial run is sane...
The text was updated successfully, but these errors were encountered: