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
I do not understand why it only regrid level 0 grid in this call no matter the maxlevel i have set.
`// Advance all the levels with the same dt
void
AmrCoreAdv::timeStepNoSubcycling (Real time, int iteration)
{
if (max_level > 0 && regrid_int > 0) // We may need to regrid
{
if (istep[0] % regrid_int == 0)
{
regrid(0, time);
}
}
}`
The text was updated successfully, but these errors were encountered:
That call is not regrudfing level 0 - it is regridding all levels > 0. 0
is the base level
Ann Almgren
Senior Scientist; Dept. Head, Applied Mathematics
Pronouns: she/her/hers
On Tue, Aug 20, 2024 at 3:35 AM ztdepztdep ***@***.***> wrote:
I do not understand why it only regrid level 0 grid in this call no matter
the maxlevel i have set.
`// Advance all the levels with the same dt
void
AmrCoreAdv::timeStepNoSubcycling (Real time, int iteration)
{
if (max_level > 0 && regrid_int > 0) // We may need to regrid
{
if (istep[0] % regrid_int == 0)
{
regrid(0, time);
}
}
}`
—
Reply to this email directly, view it on GitHub
<#4099>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACRE6YXDLQ4M4XSAWIJJXADZSMLX3AVCNFSM6AAAAABMZTNLESVHI2DSMVQWIX3LMV43ASLTON2WKOZSGQ3TKMZQGMYDOMQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
I do not understand why it only regrid level 0 grid in this call no matter the maxlevel i have set.
The text was updated successfully, but these errors were encountered: