Hi,everyone
Recently I read the step 3 of “couple your code”, and I notice that in the example code of coupling meshes and access coupling data,
int displacementsDim = precice.getDataDimensions("Displacements")
this line shows a API of getting dimension of displacement data, but I find the corresponding API in the Participant.hpp
,
int getDataDimensions(::precice::string_view meshName, ::precice::string_view dataName) const;
it need meshName also, so I wonder if the parameter is ignored by some reason?
p.s. The line ‘int forcesDim = precice.getDataDimensions(“FluidMesh”, "Forces)’ is missing the quotes for ‘Forces’