Gerasimos Chourdakis
Gerasimos Chourdakis
This is a meta-issue for the compatibility updates needed for OpenFOAM 9. As is now the norm, OpenFOAM 9 does not build with the branch for OpenFOAM 8 (which does...
We currently need to maintain quite some [code to compute the forces](https://github.com/precice/openfoam-adapter/blob/master/FSI/Force.H) on walls for different solver types. Since this is functionality is already provided by the [forces function object](https://www.openfoam.com/documentation/guides/latest/doc/guide-fos-forces-forces.html),...
This is the [first cron job that failed](https://travis-ci.com/github/precice/systemtests/builds/213541951) for all OpenFOAM cases. I have not looked into details (@Eder-K how can I see the commit used, again? I don't see...
We use several raw pointers throughout the code. We should replace them by `std:vector` (or `std::array`) or `unique_ptr` wherever possible.
OpenFOAM v1912 introduced [changes in laplacianFoam](https://develop.openfoam.com/Development/openfoam/commit/d04de0d481096c922b0e7116f3e8ffadfa386c47), which break the way: - we deduce the solver type "basic" (which we could override by specifying `solverType: basic` in the yaml config file)...
We currently have to maintain quite a lot of [code to compute the heat flux](https://github.com/precice/openfoam-adapter/blob/master/CHT/HeatFlux.H) for different kinds of solvers, which also makes us assume different kinds of solvers. Instead...
When we read data from the buffer, it is expected that the type we read corresponds to the type of the boundary condition (e.g. `fixedValue` for reading temperature, `fixedGradient` for...
We have a problem with radical changes in OpenFOAM.org, already released in OpenFOAM-dev 20200426 and mainly originating from [this commit](https://github.com/OpenFOAM/OpenFOAM-dev/commit/de66b1be68b117f69075758e89ae08a224cc9d4b). Trying to build the adapter currently fails with: ``` In...
@uekerman observed that the output of the OpenFOAM adapter is too verbose in general, reducing readability. We provide a preprocessor flag `ADAPTER_DEBUG_MODE` to toggle the verbosity, with the goal to...
We currently need a few workarounds to make the function object report errors if they appear during configuration. A first step was discussed in #79, while a different approach is...