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
When running run_rect10x10.sh I get the following error:
terminate called after throwing an instance of 'netCDF::exceptions::NcHdfErr'
what(): NetCDF: HDF error
file: ncVar.cpp line:795
Aborted (core dumped)
This error does not occur, for example, for run_simple_example.sh or run_rect20x30.sh. Inspecting the respective .nc files shows that the 10x10 case uses the group attribute type devgrid, while the others use metagrp.type = "simple_rectangular" or "parametric_rectangular".
I changed the type from devgrid to simple_rectangular for 10x10 in #331 . However, it needs further investigation into the devgrid implementation to find out where the problem lies and whether it can be fixed, and/or devgrid can be abandoned and removed from the codebase, falling to simple_rectangular for the cases where we would have used it.
# Remove DevGrid and associated tests
## Fixes#433
### Task List
- [x] Remove files for DevGrid, DevGrid IO and associated tests
- [x] Adapt code and remove any usage or mention of DevGrid
- [x] Remove the `rect10x10` test
- [x] Make sure I haven't broken anything and all the tests run through
---
# Change Description
The DevGrid functionality is no longer needed, as it can be fullfilled
by the `RectangularGrid` or `ParametricGrid`. Therefore it was removed
from the code base, and the tests and cmake lists adapted accordingly.
When running
run_rect10x10.sh
I get the following error:This error does not occur, for example, for
run_simple_example.sh
orrun_rect20x30.sh
. Inspecting the respective.nc
files shows that the 10x10 case uses the group attribute typedevgrid
, while the others usemetagrp.type = "simple_rectangular"
or"parametric_rectangular"
.I changed the type from
devgrid
tosimple_rectangular
for 10x10 in #331 . However, it needs further investigation into thedevgrid
implementation to find out where the problem lies and whether it can be fixed, and/ordevgrid
can be abandoned and removed from the codebase, falling tosimple_rectangular
for the cases where we would have used it.This decision will impact #292 .
The text was updated successfully, but these errors were encountered: