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
Currently, in NekROM ns is set to ls by default (it is set in subroutine mor_init_params of rom.f)
However, in mor_set_params_par, if one is using mode 'ON' or mode 'ONB,' the code will set nns variable, which will be used in later when loading uk arrays, by reading the value in ops/ns and raise an error if the read value is less than ns. Because ns is set to be ls by default, if users set ls to be larger than ns (which is valid), the code yields a runtime error: ms less than ns...
One can bypass this issue by explicitly setting ns in the par file. However, we should fix this so that ls can be larger than ns.
The text was updated successfully, but these errors were encountered:
Currently, in NekROM
ns
is set tols
by default (it is set in subroutine mor_init_params of rom.f)However, in
mor_set_params_par
, if one is using mode 'ON' or mode 'ONB,' the code will setnns
variable, which will be used in later when loadinguk
arrays, by reading the value in ops/ns and raise an error if the read value is less thanns
. Becausens
is set to bels
by default, if users setls
to be larger thanns
(which is valid), the code yields a runtime error: ms less than ns...One can bypass this issue by explicitly setting
ns
in the par file. However, we should fix this so thatls
can be larger thanns
.The text was updated successfully, but these errors were encountered: