Hi,
I have been working with Plot3D files output from FDS, which have the extension (*.q). I am trying to read the values stored directly using MATLAB rather than first converting to ascii formats with fds2ascii. However I am not very able to identify how the values are structured. For example this is the first 200 bytes of my .q file:
0C000000 21000000 A1000000 F1000000 0C000000 10000000 00000000 00000000 00000000 00000000 10000000 D4C18601 FFFFC741 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 0000C841 FEFFC741 FEFFC741 FEFFC741 FEFFC741 FEFFC741
I can obtain the number of cells in the first line, but I have no idea how the data is structured next. The following is from the User's Guide for the code of Plot3D output in dump.f90:
WRITE(LU14) IBAR+1,JBAR+1,KBAR+1
WRITE(LU14) ZERO,ZERO,ZERO,ZERO
WRITE(LU14) ((((QQ(I,J,K,N),I=0,IBAR),J=0,JBAR),K=0,KBAR),N=1,5)
I would appreciate very much if anyone can provide me with some clues. Thanks a lot.