Open gustavo-marques opened 1 month ago
The line that is aborting is delH = SLdepth_0d + iFaceHeight(ksfc-1)
, and I don't see anything that prevents ksfc=1
. It looks like iFaceHeight(1) = 0.
, so I could see the fix being delH = SLdepth_0d + iFaceHeight(max(1,ksfc-1))
or maybe you really want delH = SLdepth_0d + iFaceHeight(ksfc)
?
Thanks, @mnlevy1981! We need to double-check this with Bill Large.
When compiling with the Intel compiler and enabling
DEBUG = True
, settingSTOKES_MOST = True
leads to a runtime error:Below is the trace-back for reference: