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
Line 167 in main.py creates an advection_diffusion problem with meshSize=200. So internally AdvDiff1d is incrementing it to 202. On line 197 indices 0 and 199 are chosen as the boundary indices. Since there are 202 nodes shouldn't the boundary indices be 0 and 201 instead of 0 and 199?
Thanks,
Nachiket
The text was updated successfully, but these errors were encountered:
gokhalen
changed the title
possible minor issue in
possible minor issue in demos/unsteady_masked_galerkin_vs_lspg_advdiff1d_pod
Nov 25, 2022
Line 47 in advection_diffusion1d.py increments
nGrid
by2
.Line 167 in main.py creates an advection_diffusion problem with
meshSize=200
. So internallyAdvDiff1d
is incrementing it to202
. On line 197 indices0
and199
are chosen as the boundary indices. Since there are202
nodes shouldn't the boundary indices be0
and201
instead of0
and199
?Thanks,
Nachiket
The text was updated successfully, but these errors were encountered: