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
maybe add some error handling to the file reading of vtk files. Although it should really not crash, otherwise most probably the vtk file itself is corrupted
make comment abt connection_name in C-Interface, see using strcpy #124
check and improve the sync file (check how long it takes, and if some info should be added)
Refactor vtu writing so that also it can be used to write a ModelPart to vtk directly for debugging purposes (maybe even with Data (like we do for vtu?))
Make things in FileCommunication configureable (?):
Add possibility to triangulate when having to deal with interfaces that have "strange" geometries (such as OpenFOAM with polynoms with different number of nodes)
philipp:~/software/CoSimIO$ ./scripts/build_python.sh
CMake Warning (dev) at CMakeLists.txt:1 (project):
Policy CMP0048 is not set: project() command manages VERSION variables.
Run "cmake --help-policy CMP0048" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.
The following variable(s) would be set to empty:
CMAKE_PROJECT_VERSION
CMAKE_PROJECT_VERSION_MAJOR
CMAKE_PROJECT_VERSION_MINOR
CMAKE_PROJECT_VERSION_PATCH
Thx for the suggestion, I know abt this one. It could theoretically be used instead of ASIO.
There are actually many small IPC libraries out there that one could try
However not sure how much benefit it would bring in CoSimulation, since even when using Files the transfer times are usually much smaller than the solver (with my implementations ofc :D)
ModelPart
should be iterable withauto
like in Kratos =>for (auto& node : model_part.Nodes()) { ... }
=> [ModelPart] support for range based loops #266ModelPart
connection_name
(otherwise we have to keep theInfo
coming fromConnect
the entire time) => using strcpy #124, didn't go in in the endconnection_name
in C-Interface, see using strcpy #124ModelPart
to vtk directly for debugging purposes (maybe even with Data (like we do for vtu?))FileCommunication
configureable (?):Connect
=> see File comm/check version #140Testing
MPIDataCommunicator
CoSimIO.Vector
(see [Python] adding Vector #118) by ref (in python and C++) => make sure the opaque types workThe text was updated successfully, but these errors were encountered: