FEFLOW Kernel in an External Python Interpreter
The FEFLOW kernel is also provided as a Python module (named ifm) which can be used within a standalone Python environment. Since this module is not a standard Python module, the location of the FEFLOW Python module needs to be specified:
import sys sys.path.append(r'C:\Program Files\DHI\2023\FEFLOW 8.0\python') import ifm |
The kernel control methods are used to load the FEFLOW kernel from the external interpreter.
See the example "Processing minimum/maximum head distribution with ESRI ArcGIS" for a practical application.