https://github.com/emanuelhuber/feflowpy
Python code for FEFLOW pre- and post-processing
https://github.com/emanuelhuber/feflowpy
Last synced: 27 days ago
JSON representation
Python code for FEFLOW pre- and post-processing
- Host: GitHub
- URL: https://github.com/emanuelhuber/feflowpy
- Owner: emanuelhuber
- Created: 2020-12-23T09:20:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-30T13:53:33.000Z (over 2 years ago)
- Last Synced: 2025-04-01T16:07:49.273Z (about 2 months ago)
- Language: Python
- Size: 32.2 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FEFLOWpy
Python code for FEFLOW pre- and post-processing. Check also:- [IFM API documentation](https://dhi.github.io/ifm/)
Check also
- the section "Tutorial" for the new features
- the section "Examples" for inspiration
- [FEFLOW documentation: IFM function index, callbacks, constant, etc.](http://www.feflow.info/html/help74/feflow/13_Programming/IFM/API/appendix_b_index.html)
- [DHI Developers (Internal) ](https://dhi-developer-documentation.azurewebsites.net/engine_libraries/feflow/feflow_and_python/)
- [ifm contrib](https://github.com/DHI/ifm_contrib)## IFM model properties
Get the list of IFM model properties:
```py
dir(ifm.Enum)
```### List of Parameter Values
Available functions:
```py
getParamSize()
getParamValue()
getParamValues()
setParamValue()
setParamValues()
enableParamRecording()
```## BC conditions
```py
{c: getattr(ifm.Enum, c) for c in dir(ifm.Enum) if c.startswith("P_BC")}
```