From 2026.01 onwards all legacy adapters have been removed from the Delft-FEWS binaries and the relevant ones have been moved to the adapters branch. This was done to clean up the Delft-FEWS code and separate the legacy adapters that are still in use from the main code.
See Clean up of legacy adapters.
The Delft3D adapter can still be used, but to make use of it the following changes need to be made:
- Request the 2026.01 compatible adapter binaries from fews.support@deltares.nl
- Add them to a moduleDataSetFile
- AutoExport the moduleDataSetFile to a specified folder (See: AutoExportModuleDataSetFile)
<autoExportModuleDataSet name="bin_adapter" exportDir="Modules/Delft3D/bin"/>
- Refer to that folder from the general adapter in the execute activities:
<executeActivity> <description>Delft3D Adapter</description> <command> <className>nl.wldelft.fews.adapter.delft3d.Delft3DPreAdapter</className> <binDir>%REGION_HOME%\Modules\Delft3D\bin\bin_adapter</binDir> </command> <arguments> <argument>%ROOT_DIR%</argument> <argument>FLOW_Adapter.xml</argument> </arguments> <timeOut>1000000</timeOut> <overrulingDiagnosticFile>%ROOT_DIR%\diagnostics\delft3dpreadapter.xml</overrulingDiagnosticFile> </executeActivity>