-
Notifications
You must be signed in to change notification settings - Fork 4
Description
Hello,
I am working on the C++ implementation of the MFMC 2.0.0 spécification as output file format for our in-house UT simulation software, and for use in our collaborative project ADVISE (Bristol participates).
The format requires to describe a probe as a collection of elements, as if they were all different, while industrial users and probe makers describe their probes as arrays of identical elements (for linear and matrix array), or as a collection of sets of identical elements (for sectorial arrays).
This is not a problem when writing the file, even if it is not very efficient in term of file size, but when reading the file in order to compute an image, it requires to compare all elements one to the other in order to identify the type of array which was used.
Would it make sense to add an optional <PROBE 1>/<PROBE_TYPE>" integer attribute which values could be
0 = not defined
1 = linear
2 = matrix
3 = sectorial
4 = ...
Best regards