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
Having not run SE-NEMO without tides for a while I spent a while chasing a SEG Fault after switching tides off. I should've switched ln_int_wave_drag to false too but it slipped my mind. I would suggest updating dynspg_ts.F90 with something like:
IF (ln_int_wave_drag) THEN
to
IF (ln_int_wave_drag .AND. ln_tide) THEN
or add into tide_init somewhere an update to ln_int_wave_drg that if ln_tide is false set ln_int_wave_drg to false
The text was updated successfully, but these errors were encountered:
Having not run SE-NEMO without tides for a while I spent a while chasing a SEG Fault after switching tides off. I should've switched
ln_int_wave_drag
to false too but it slipped my mind. I would suggest updatingdynspg_ts.F90
with something like:IF (ln_int_wave_drag) THEN
to
IF (ln_int_wave_drag .AND. ln_tide) THEN
or add into tide_init somewhere an update to
ln_int_wave_drg
that ifln_tide
is false setln_int_wave_drg
to falseThe text was updated successfully, but these errors were encountered: