Hello Adrian,
When defining a global data structure in OpenLB, is it possible to use a custom type such as one given below with the TYPED_FIELD_BASE
:
struct BubbleInfo {
CellID bubbleID = CellID(0);
double volume = 0.0;
};
struct BUBBLE_FIELD : public descriptors::TYPED_FIELD_BASE<BubbleInfo,1> {};