ELF>C@@#"   UH@dH%(HD$81HHt$HD$HFHD$$D$ t0H|$1HT$8dH+%(uhH@]@HT$H|$H5|$HtHt+HH5HPtHuH1Huff.fATUH8fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$uCH(HtD$9D$tHH111HT$(dH+%(H8]A\fDHHuftLHHuHtVHHHIHuLH|fDHHpH;tHfDHHFff.USHHdH%(HD$81HHt$HD$HFHD$$D$ HD$t6H|$1HT$8dH+%(HH[]DHt$H|$tHl$H=HtHH=uHuHc@HH=tHH=tHATUSH@fnFdH%(HD$81HHt$HD$HGfnȉD$(fbfD$ uYHD$Ho(Ht!\$ +\$$tJH|$1HT$8dH+%(H@[]A\HHuːHt$H|$tD$$Ld$u`HELH@H;H=tLH=u-HaHcVf.LLH=tLH=tLfDHЉfATH0fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$uDH(HtD$9D$tIH11E1HD$(dH+%(H0LA\@HHufHHRxH;IMtoI$H5LPtZHuLIHoHbL1HHP@L8fE1H"DIjfAUATUSHHfnFdH%(HD$81HHt$HD$HGfnȉD$(fbfD$ uWHD$Ho(Ht!D$ +D$$tHH|$1HT$8dH+%(HH[]A\A]HHu͐Ht$H|$tD$$Ld$lHEHhH;LMM{LLLLLhHLIL$HHH)HHHL1HAoHH9uLLHH :IFAHt1FAHt$FALHDžHEHHHHfMDMGDLH1@A  HHH9u1A  HHH9ujLHL1uLHL1fATL%H LHH5LuLHLA\ATIUHHt HH5LHtHmtH]A\HH]A\HAUATIULHMtuHtXLtiLLLhLLLHHHEH]A\A]HfDLHDžHu]A\A]SafeDownCastvtkObjectBasevtkPlot3DMetaReaderGetFileNameIsTypeOfIsANewInstanceSetFileNamevtkMultiBlockDataSetAlgorithmvtkAlgorithmvtkObjectUH=Hu]ÐHH=tHH=tHH=tH]vtkPlot3DMetaReader - reads meta-files points to PLOT3D files Superclass: vtkMultiBlockDataSetAlgorithm The main goal of this reader is to make it easy to read PLOT3D files, specifically time series of PLOT3D files. PLOT3D files can take many different forms based on their content. Unfortunately, it is not a self-describing format therefore the user needs to pass information about the contents of the file to the reader. Normally, this is done by setting a number of member variables. The goal of this reader is to provide a simple format that enable the writer of the PLOT3D file to describe its settings as well as group a number of files as a time series. Note that for binary files, the auto-detect-format option, which is on by default negates the need to specify most other option. However, this reader is still very useful when trying to read file series even for binary files. The format for this meta-file is very simple and is based on JSON (there is no need to know anything about JSON to understand this format). Below is an example with comments (followed by //) that describe the format. Note that the PLOT3D file names are relative to the location of the meta-file unless they start with a leading /. { "auto-detect-format" : true // Tells the reader to try to figure out the format automatically. Only works // with binary file. This is on by default, negating the need for most other // options for binary files (format, byte-order, precision, multi-grid, // blanking, 2D). "format" : "binary", // Is this a binary or ascii file, values : binary, ascii "byte-order" : "big", // Byte order for binary files, values : little, big (denoting little or big endian) "precision" : 32, // Precision of floating point values, can be 32 or 64 (bits) "multi-grid" : false, // Is this a multi-grid file, values: true, false "language" : "C", // Which language was this file written in, values : C, fortran. This is // used to determine if an binary PLOT3D file contains byte counts, used by // Fortran IO routines. "blanking" : false, // Does this file have blanking information (iblanks), values : true, false "2D" : false, // Is this a 2D dataset, values : true, false "R" : 8.314, // The value of the gas constant, default is 1.0. Set this according to the dimensions you use "gamma" : 1.4, // Ratio of specific heats. Default is 1.4. "functions": [ 110, 200, 201 ], // Additional derived values to calculate. This is an array of integers formatted // as [ value, value, value, ...] "filenames" : [ // List of xyz (geometry) and q (value) file names along with the time values. // This is an array which contains items in the format: // {"time" : values, "xyz" : "xyz file name", "q" : "q file name", "function" : "function file name"} // Note that q and function are optional. Also, you can repeat the same file name for xyz or q // if they don't change over time. The reader will not read files unnecessarily. { "time" : 3.5, "xyz" : "combxyz.bin", "q" : "combq.1.bin", "function" : "combf.1.bin" }, { "time" : 4.5, "xyz" : "combxyz.bin", "q" : "combq.2.bin", "function" : "combf.2.bin" } ], "function-names" : ["density", "velocity_x", "temperature"] // list of names of functions in function files } This reader leverages vtkMultiBlockPLOT3DReader to do the actual reading so you may want to refer to the documenation of vtkMultiBlockPLOT3DReader about the details of some of these parameters including the function numbers for derived value calculation. @sa vtkMultiBlockPLOT3DReader vtkIOParallelPython.vtkPlot3DMetaReaderV.IsTypeOf(string) -> int C++: static vtkTypeBool IsTypeOf(const char *type) Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. V.IsA(string) -> int C++: vtkTypeBool IsA(const char *type) override; Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. V.SafeDownCast(vtkObjectBase) -> vtkPlot3DMetaReader C++: static vtkPlot3DMetaReader *SafeDownCast(vtkObjectBase *o) V.NewInstance() -> vtkPlot3DMetaReader C++: vtkPlot3DMetaReader *NewInstance() V.SetFileName(string) C++: virtual void SetFileName(const char *_arg) Set/Get the meta PLOT3D filename. See the class documentation for format details. V.GetFileName() -> string C++: virtual char *GetFileName() Set/Get the meta PLOT3D filename. See the class documentation for format details. HHHDGCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0GNUzRx  0 D 4XFBD Y BBO ^BB EDPa AE bEY B }(5FADP ABG (EAD`n AAF 0,FAA D`  AABH `gFD@ EE 8^FBA A(Dp (A ABBD MFF0OFDD n ABA DDB    '[50@g@^Oo /;+DHT" %D" u" ![l"b $:Iiy M  O:O[gz _ZL31PyvtkPlot3DMetaReader_StaticNewv_ZL34PyvtkPlot3DMetaReader_SafeDownCastP7_objectS0__ZL33PyvtkPlot3DMetaReader_GetFileNameP7_objectS0__ZL30PyvtkPlot3DMetaReader_IsTypeOfP7_objectS0__ZL25PyvtkPlot3DMetaReader_IsAP7_objectS0__ZL33PyvtkPlot3DMetaReader_NewInstanceP7_objectS0__ZL33PyvtkPlot3DMetaReader_SetFileNameP7_objectS0__ZL26PyvtkPlot3DMetaReader_Type_ZL29PyvtkPlot3DMetaReader_Methods_GLOBAL__sub_I_vtkPlot3DMetaReaderPython.cxx.LC0.LC1.LC2.LC6.LC7.LC3.LC4.LC5.LC8.LC9.LC10.LC11_ZN19vtkPlot3DMetaReader11GetFileNameEv_ZN19vtkPlot3DMetaReader3NewEv_ZNK19vtkPlot3DMetaReader19NewInstanceInternalEv_ZN19vtkPlot3DMetaReader11SetFileNameEPKcstrcmp_ZdaPvstrlen_Znammemcpy_ZN13vtkPythonArgs13ArgCountErrorEii_ZN13vtkPythonArgs17GetArgAsVTKObjectEPKcRbPyErr_Occurred_ZN13vtkPythonUtil20GetObjectFromPointerEP13vtkObjectBase__stack_chk_fail_ZN19vtkPlot3DMetaReader3IsAEPKc_ZN13vtkObjectBase8IsTypeOfEPKc_ZN13vtkPythonArgs19GetSelfFromFirstArgEP7_objectS1_PyUnicode_FromStringAndSizePyErr_ClearPyBytes_FromStringAndSize_GLOBAL_OFFSET_TABLE__Py_NoneStruct_ZN13vtkPythonArgs8GetValueERPcPyLong_FromLongPyVTKObject_CheckPyVTKObject_GetObjectPyVTKObject_SetFlagPyvtkPlot3DMetaReader_ClassNewPyVTKClass_AddPyvtkMultiBlockDataSetAlgorithm_ClassNewPyType_ReadyPyVTKAddFile_vtkPlot3DMetaReaderPyDict_SetItemString_Py_DeallocPyType_TypePyVTKObject_DeletePyVTKObject_ReprPyVTKObject_StringPyObject_GenericGetAttrPyObject_GenericSetAttrPyVTKObject_AsBufferPyVTKObject_TraversePyVTKObject_GetSetPyVTKObject_NewPyObject_GC_Del,`+,-.-/`+2-(345*"*7!/M+8&&-9&!&&21;/d+2 8.*0;@&NS&\-m9&&1/?+i2*$#-.:;<-3/f +2 82*%\&l't()&'() ' - *7 /    >  ?  @ =  B#; C#$&0'8(D)Y*|'&&+&9>&LQ&^1!D0EXFGHIJKL8M@N;0( D(@80@HX(`HhxT@/ 4H\ 00@d@  .symtab.strtab.shstrtab.rela.text.data.bss.text._ZN19vtkPlot3DMetaReader11GetFileNameEv.rela.text._ZNK19vtkPlot3DMetaReader19NewInstanceInternalEv.rela.text._ZN19vtkPlot3DMetaReader11SetFileNameEPKc.rodata.str1.1.rodata._ZN19vtkPlot3DMetaReader3IsAEPKc.str1.1.rela.text._ZN19vtkPlot3DMetaReader3IsAEPKc.rodata.str1.8.rela.text.startup.rela.init_array.rela.data.rel.rela.data.rel.local.comment.note.GNU-stack.note.gnu.property.rela.eh_frame.group@ "H $T %` 0 p? @H3 & , 1 d _@0<  @H< 2k `2 5 b@< ;2h 'O J@=0 b ]@= s  n@=  `" }@? 0@#,l#p# # @@P %h!" -+B