pw:: CaeExporterThe CaeExporter IO mode type. If you do not require fine-grained control over the CAE export process, use the <pw::Application export> action. Derives Frompw::Object pw::Mode pw::IOMode NotesTo create a mode of this type, use the pw::Application.begin command with the mode CaeExport specified, like this: set exporter [pw::Application begin CaeExport $entities]
Summary | The CaeExporter IO mode type. | | | | This action gets a list of the file types that can export all of the entities of this mode. | | This action adds entities to the uninitialized mode. | | This action adds all mode appropriate entities from all frameworks to the uninitialized mode. | | This action verifies the IO mode attributes and the entities of the mode that should be exported. | | This action checks if there is data that will be written out when the write action is used. | | This action writes the file by converting pw::GridEntity objects into the format required for the exported data. | | | | Code example showing a minimal usage of a CaeExport mode. | | Code example showing usage of all features of a pw::CaeExport mode. | | | | Attributes supported by the ACUSIM/AcuSolve solver. | | Attributes supported by the ADPAC solver. | | Attributes supported by the ANSYS CFX solver. | | Attributes supported by the CFDShip-Iowa solver. | | Attributes supported by the CFL3D solver. | | Attributes supported by the CGNS solver. | | Attributes supported by the CMSoft-Aero solver. | | Attributes supported by the CNSFV solver. | | Attributes supported by the Cart3D solver. | | Attributes supported by the Cobalt solver. | | Attributes supported by the DTNS solver. | | Attributes supported by the Edge solver. | | Attributes supported by the FALCON v3 solver. | | Attributes supported by the FANS solver. | | Attributes supported by the FDNS/UNIC solver. | | Attributes supported by the FrontFlow solver. | | Attributes supported by the GASP solver. | | Attributes supported by the Gmsh solver. | | Attributes supported by the Gridgen Generic solver. | | Attributes supported by the INCA v2 solver. | | Attributes supported by the Kestrel solver. | | Attributes supported by the LAURA solver. | | Attributes supported by the NASA/FUN3D solver. | | Attributes supported by the NPARC solver. | | Attributes supported by the NSAERO solver. | | Attributes supported by the NSU3D solver. | | Attributes supported by the OVERFLOW solver. | | Attributes supported by the SC/Tetra solver. | | Attributes supported by the STAR-CCM+ solver. | | Attributes supported by the SU2 solver. | | Attributes supported by the ShipIR solver. | | Attributes supported by the Suggar++ Flex solver. | | Attributes supported by the TACOMA solver. | | Attributes supported by the TASCflow solver. | | Attributes supported by the TEAM solver. | | Attributes supported by the Tecplot solver. | | Attributes supported by the UGRID solver. | | Attributes supported by the WIND (structured) solver. | | Attributes supported by the WIND (unstructured) solver. | | | | Solvers that support the the BoundaryConditionsOnly attribute. | | Solvers that support the the ExportDonorInformation attribute. | | Solvers that support the the ExportParentElements attribute. | | Solvers that support the the FileByteOrder attribute. | | Solvers that support the the FileFormat attribute. | | Solvers that support the the FilePrecision attribute. | | Solvers that support the the GridExportMeshLink attribute. | | Solvers that support the the GridExportMeshLinkDatabaseFileName attribute. | | Solvers that support the the GridExportMeshLinkDatabaseFileType attribute. | | Solvers that support the the GridExportMeshLinkFileName attribute. | | Solvers that support the the GridExportMeshLinkFileType attribute. | | Solvers that support the the GridStructuredAsUnstructured attribute. | | Solvers that support the the TecplotFileFormat attribute. | | Solvers that support the the UnstructuredInterface attribute. |
getFileTypesThis action gets a list of the file types that can export all of the entities of this mode. ParametersThis action has no parameters. ReturnsThis action returns a list containing file type names that can be used in the <initialize> command.
addEntities$io addEntities ?-path path? entities |
This action adds entities to the uninitialized mode. Parameters-path path | This optional parameter specifies the framework path in which all the entities reside. The default value is the active framework. | -all | Specifies that all available entities should be added to the mode. If path is provided, all the entities that reside in that framework are added. This is the default. | entities | The list of entities, for the specified path, to be added to the mode. |
ReturnsThis action returns nothing. ExampleCode # Where, # fw - a Framework entity # fwPath - the path to fw
$io addEntities -path $fwPath [pw::Grid getAll -framework $fw]
addAllEntitiesThis action adds all mode appropriate entities from all frameworks to the uninitialized mode. ParametersThis action has no parameters. ReturnsThe number of entities added to the mode. If the mode already contains entities, the duplicate entities will be silently skipped. NoteThis action can only be called after create, but before initialize.
verifyThis action verifies the IO mode attributes and the entities of the mode that should be exported. ParametersThis action has no parameters. ReturnsThis action returns a boolean of true if verified, false if not. NoteThis action must be called after initialize, but before write. Possible ErrorsAttributeIsInvalid, UnsupportedEntityDetected, Unknown
canWriteThis action checks if there is data that will be written out when the write action is used. ParametersThis action has no parameters. ReturnsThis action returns a boolean of true if write will export data, false if not.
writeThis action writes the file by converting pw::GridEntity objects into the format required for the exported data. ParametersThis action has no parameters. ReturnsThis action returns a boolean of true if written, false if not. A Tcl error is thrown on failure if -strict was specified for <initialize>. NoteThis action must be called after initialize and verify. Possible ErrorsAttributeIsInvalid, UnsupportedEntityDetected, Unknown
Minimal CaeExportCode example showing a minimal usage of a CaeExport mode. ExampleCode package require PWI_Glyph 3.18
# This sample assumes: # # * A grid file is loaded and is ready for CAE export. # * The solver is set to CGNS. # * $ents is the list of blocks to export # # This CaeExport mode code is equivalent to: # # pw::Application export -precision Double $ents "C:\test.cgns" #
# Create the CaeExport mode set status abort set caex [pw::Application begin CaeExport $ents] if { $caex && [$caex initialize "C:\test.cgns"] } { $caex setAttribute FilePrecision Double if { [$caex verify] && [$caex canWrite] && [$caex write] } { set status end } } # abort/end the mode $caex $status
Output
Full-featured CaeExportCode example showing usage of all features of a pw::CaeExport mode. ExampleCode package require PWI_Glyph 3.18.3
# This sample assumes: # * A grid file is loaded and is ready for CAE export.
# Capture the folder in which this script is located and append the # "export" subfolder. set scriptDir [file normalize [file dirname [info script]]] set exportDir [file join $scriptDir export] # create directory if it does not exist file mkdir $exportDir
puts "Current solver: [set curSolver [pw::Application getCAESolver]]"
set validExts [pw::Application getCAESolverAttribute FileExtensions] puts "Valid file extensions: '$validExts'" # Capture first file extension. Use it below to build filename. set defExt [lindex $validExts 0]
# Select entities appropriate for dimension. if { 3 == [pw::Application getCAESolverDimension] } { set ents [pw::Entity sort [pw::Grid getAll -type pw::Block]] } else { set ents [pw::Entity sort [pw::Grid getAll -type pw::Domain]] } puts "Export entities:" foreach ent $ents { puts " [$ent getName] ($ent)" }
# Create the CaeExport mode set caex [pw::Application begin CaeExport $ents] puts "Mode $caex is of type [list [$caex getType]]"
# Build an export destination suitable for the current solver. Use # the script folder as the root output location. set destType [pw::Application getCAESolverAttribute FileDestination] switch $destType { Filename { set dest [file join $exportDir "sample.$defExt"] } Basename { set dest [file join $exportDir "samplebase"] } Folder { set dest $exportDir } default { return -code error "Unexpected FileDestination value" } } puts "Exporting to $destType: '$dest'"
# Initialize the CaeExport mode set status abort ;# assume export failure if { ![$caex initialize $dest] } { puts {$caex initialize failed!} } else { set dashes [string repeat - 50] # Query CaeExport mode for each attribute definition and value puts "\$caex getAttributeCount = '[set attrCnt [$caex getAttributeCount]]'" if { 0 != $attrCnt } { set attrNames [$caex getAttributeNames]
set fmt { %-30.30s | %-7.7s | %s} puts "Basic attribute definitions:" puts [format $fmt Name Type Description] puts [format $fmt $dashes $dashes $dashes] foreach attrName $attrNames { set attrDefn [$caex getAttributeDefinition $attrName] lassign $attrDefn defnName defnType defnDesc puts [format $fmt $defnName $defnType $defnDesc] }
set fmt { %-30.30s | %-6.6s | %6.6s | %-12.12s | %-32.32s | %s} puts "Extended attribute definitions:" puts [format $fmt Name Type Access Default Range Description] puts [format $fmt $dashes $dashes $dashes $dashes $dashes $dashes] foreach attrName $attrNames { set attrDefn [$caex getAttributeDefinition -extended $attrName] #Mode GridStructuredAsUnstructured Bool RW {Treat structured blocks as unstructured flag} true {} lassign $attrDefn defnGroup defnName defnType defnAccess defnDesc defnDefault defnRange puts [format $fmt $defnName $defnType $defnAccess $defnDefault $defnRange $defnDesc] } }
# If the CaeExport mode supports it, set the FileUnits attribute if { ![catch {$caex setAttribute FileUnits Inches}] } { puts "setAttribute FileUnits Inches" }
# If the CaeExport mode supports it, set the FilePrecision attribute if { ![catch {$caex setAttribute FilePrecision Double}] } { puts "setAttribute FilePrecision Double" }
if { ![$caex verify] } { puts {$caex verify failed!} } elseif { ![$caex canWrite] } { puts {$caex canWrite failed!} } elseif { ![$caex write] } { puts {$caex write failed!} } elseif { 0 != [llength [set feCnts [$caex getForeignEntityCounts]]] } { # print entity counts reported by the exporter set fmt { %-22.22s | %6.6s |} puts "Number of grid entities exported:" puts [format $fmt {Entity Type} Count] puts [format $fmt $dashes $dashes] dict for {key val} $feCnts { puts [format $fmt $key $val] } set status end ;# all is okay now } } # Display any errors/warnings set errCnt [$caex getErrorCount] for {set ndx 1} {$ndx <= $errCnt} {incr ndx} { puts "[$caex getErrorCode $ndx]: '[$caex getErrorInformation $ndx]'" } # abort/end the CaeExport mode $caex $status
Output Current solver: CGNS Valid file extensions: 'cgns' Export entities: blk-miny-1 (::pw::BlockStructured_2) blk-maxy-1 (::pw::BlockUnstructured_2) Mode ::pw::CaeExporter_1 is of type pw::CaeExporter Exporting to Filename: 'C:/cae-export/export/sample.cgns' $caex getAttributeCount = '11' Basic attribute definitions: Name | Type | Description ------------------------------ | ------- | -------------------------------------------------- GridStructuredAsUnstructured | boolean | Treat structured blocks as unstructured flag HybridInterface | string | Set the type of hybrid interface used by CGNS UnstructuredInterface | string | Set the type of unstructured-to-unstrctured interface used by CGNS ExportParentElements | boolean | Include Parent Elements in export flag ExportDonorInformation | boolean | Include Donor Information in export flag FilePrecision | string | Floating-point precision GridExportMeshLink | boolean | Export mesh link files for the grid GridExportMeshLinkFileName | string | The Mesh Link file name. GridExportMeshLinkFileType | string | The Mesh Link file type. GridExportMeshLinkDatabaseFile | string | The Mesh Link database file name. GridExportMeshLinkDatabaseFile | string | The Mesh Link database file type. Extended attribute definitions: Name | Type | Access | Default | Range | Description ------------------------------ | ------ | ------ | ------------ | -------------------------------- | -------------------------------------------------- GridStructuredAsUnstructured | Bool | RW | true | | Treat structured blocks as unstructured flag HybridInterface | Enum | RW | FaceToFace | FaceToFace|NodeToNode|CellToCell | Set the type of hybrid interface used by CGNS UnstructuredInterface | Enum | RW | FaceToFace | FaceToFace|NodeToNode|CellToCell | Set the type of unstructured-to-unstrctured interface used by CGNS ExportParentElements | Bool | RW | false | | Include Parent Elements in export flag ExportDonorInformation | Bool | RW | true | | Include Donor Information in export flag FilePrecision | Enum | RW | Single | Single|Double | Floating-point precision GridExportMeshLink | Bool | RW | false | | Export mesh link files for the grid GridExportMeshLinkFileName | String | RW | | | The Mesh Link file name. GridExportMeshLinkFileType | Enum | RW | Uncompressed | Uncompressed | The Mesh Link file type. GridExportMeshLinkDatabaseFile | String | RW | | | The Mesh Link database file name. GridExportMeshLinkDatabaseFile | Enum | RW | NMB-Binary | NMB-Binary|NMB-ASCII | The Mesh Link database file type. setAttribute FilePrecision Double Number of grid entities exported: Entity Type | Count | ---------------------- | ------ | HexElements | 27 | PyramidElements | 57 | QuadElements | 111 | TetElements | 429 | TriElements | 2 | Unstructured 3-D Zones | 2 |
ACUSIM/ AcuSolveAttributes supported by the ACUSIM/AcuSolve solver. AttributesFilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
ADPACAttributes supported by the ADPAC solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. |
ANSYS CFXAttributes supported by the ANSYS CFX solver. AttributesFileFormat | File format. It is a Read/Write string value with range < ASCII | Binary >. | FilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
CFDShip-IowaAttributes supported by the CFDShip-Iowa solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. |
CFL3DAttributes supported by the CFL3D solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. |
CGNSAttributes supported by the CGNS solver. AttributesExportDonorInformation | Include Donor Information in export flag. It is a Read/Write boolean value with default true. | ExportParentElements | Include Parent Elements in export flag. It is a Read/Write boolean value with default false. | FilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. | GridExportMeshLink | Export mesh link files for the grid. It is a Read/Write boolean value with default false. | GridExportMeshLinkDatabaseFileName | The Mesh Link database file name. It is a Read/Write string value. | GridExportMeshLinkDatabaseFileType | The Mesh Link database file type. It is a Read/Write string value with range < NMB-Binary | NMB-ASCII >. | GridExportMeshLinkFileName | The Mesh Link file name. It is a Read/Write string value. | GridExportMeshLinkFileType | The Mesh Link file type. It is a Read/Write string value with range < Uncompressed >. | GridStructuredAsUnstructured | Treat structured blocks as unstructured flag. It is a Read/Write boolean value with default true. | UnstructuredInterface | Set the type of unstructured-to-unstrctured interface used by CGNS. It is a Read/Write string value with range < FaceToFace | NodeToNode | CellToCell >. |
CMSoft-AeroAttributes supported by the CMSoft-Aero solver. AttributesFilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
CNSFVAttributes supported by the CNSFV solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. |
Cart3DAttributes supported by the Cart3D solver. AttributesFileByteOrder | File byte order. It is a Read/Write string value with range < Native | Swap | LittleEndian | BigEndian >. | FileFormat | File format. It is a Read/Write string value with range < ASCII | Unformatted >. |
CobaltAttributes supported by the Cobalt solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. | FileFormat | File format. It is a Read/Write string value with range < ASCII | Unformatted >. | FilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
DTNSAttributes supported by the DTNS solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. |
EdgeAttributes supported by the Edge solver. AttributesFileFormat | File format. It is a Read/Write string value with range < Binary | Unformatted >. |
FALCON v3Attributes supported by the FALCON v3 solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. |
FANSAttributes supported by the FANS solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. |
FDNS/ UNICAttributes supported by the FDNS/UNIC solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. |
FrontFlowAttributes supported by the FrontFlow solver. AttributesFileFormat | File format. It is a Read/Write string value with range < ASCII | Binary >. |
GASPAttributes supported by the GASP solver. AttributesExportDonorInformation | Include Donor Information in export flag. It is a Read/Write boolean value with default true. | ExportParentElements | Include Parent Elements in export flag. It is a Read/Write boolean value with default false. | FilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. | GridStructuredAsUnstructured | Treat structured blocks as unstructured flag. It is a Read/Write boolean value with default true. | UnstructuredInterface | Set the type of unstructured-to-unstrctured interface used by CGNS. It is a Read/Write string value with range < FaceToFace | NodeToNode | CellToCell >. |
GmshAttributes supported by the Gmsh solver. AttributesFilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
Gridgen GenericAttributes supported by the Gridgen Generic solver. AttributesFileFormat | File format. It is a Read/Write string value with range < ASCII | Binary | Unformatted >. | FilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
INCA v2Attributes supported by the INCA v2 solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. | FileFormat | File format. It is a Read/Write string value with range < ASCII | Unformatted >. |
KestrelAttributes supported by the Kestrel solver. AttributesFilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. | GridExportMeshLink | Export mesh link files for the grid. It is a Read/Write boolean value with default false. | GridExportMeshLinkDatabaseFileName | The Mesh Link database file name. It is a Read/Write string value. | GridExportMeshLinkDatabaseFileType | The Mesh Link database file type. It is a Read/Write string value with range < NMB-Binary | NMB-ASCII >. | GridExportMeshLinkFileName | The Mesh Link file name. It is a Read/Write string value. | GridExportMeshLinkFileType | The Mesh Link file type. It is a Read/Write string value with range < Uncompressed >. |
LAURAAttributes supported by the LAURA solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. | FileByteOrder | File byte order. It is a Read/Write string value with range < Native | Swap | LittleEndian | BigEndian >. |
NASA/ FUN3DAttributes supported by the NASA/FUN3D solver. AttributesGridExportMeshLink | Export mesh link files for the grid. It is a Read/Write boolean value with default false. | GridExportMeshLinkDatabaseFileName | The Mesh Link database file name. It is a Read/Write string value. | GridExportMeshLinkDatabaseFileType | The Mesh Link database file type. It is a Read/Write string value with range < NMB-Binary | NMB-ASCII >. | GridExportMeshLinkFileName | The Mesh Link file name. It is a Read/Write string value. | GridExportMeshLinkFileType | The Mesh Link file type. It is a Read/Write string value with range < Uncompressed >. |
NPARCAttributes supported by the NPARC solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. | FileByteOrder | File byte order. It is a Read/Write string value with range < Native | Swap | LittleEndian | BigEndian >. | FileFormat | File format. It is a Read/Write string value with range < ASCII | Binary | Unformatted >. | FilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
NSAEROAttributes supported by the NSAERO solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. | FilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
NSU3DAttributes supported by the NSU3D solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. | FileFormat | File format. It is a Read/Write string value with range < ASCII | Binary | Unformatted >. | FilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
OVERFLOWAttributes supported by the OVERFLOW solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. | FilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
SC/ TetraAttributes supported by the SC/Tetra solver. AttributesFilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
STAR-CCM+Attributes supported by the STAR-CCM+ solver. AttributesFilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
SU2Attributes supported by the SU2 solver. AttributesFilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
ShipIRAttributes supported by the ShipIR solver. AttributesFilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
Suggar++ FlexAttributes supported by the Suggar++ Flex solver. AttributesFileFormat | File format. It is a Read/Write string value with range < ASCII | Binary | Unformatted >. |
TACOMAAttributes supported by the TACOMA solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. | FilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
TASCflowAttributes supported by the TASCflow solver. AttributesFileFormat | File format. It is a Read/Write string value with range < ASCII | Unformatted >. | FilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
TEAMAttributes supported by the TEAM solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. |
TecplotAttributes supported by the Tecplot solver. AttributesFilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. | TecplotFileFormat | Set the Tecplot binary output file format. It is a Read/Write string value with range < PLT | SZPLT >. |
UGRIDAttributes supported by the UGRID solver. AttributesBoundaryConditionsOnly | Only process boundary conditions flag. It is a Read/Write boolean value with default false. | FileByteOrder | File byte order. It is a Read/Write string value with range < Native | Swap | LittleEndian | BigEndian >. | FileFormat | File format. It is a Read/Write string value with range < ASCII | Binary | Unformatted >. | FilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
WIND (structured)Attributes supported by the WIND (structured) solver. AttributesFilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
WIND (unstructured)Attributes supported by the WIND (unstructured) solver. AttributesFilePrecision | Floating-point precision. It is a Read/Write string value with range < Single | Double >. |
BoundaryConditionsOnly solversSolvers that support the the BoundaryConditionsOnly attribute. SolversADPAC, CFDShip-Iowa, CFL3D, CNSFV, Cobalt, DTNS, FALCON v3, FANS, FDNS/UNIC, INCA v2, LAURA, NPARC, NSAERO, NSU3D, OVERFLOW, TACOMA, TEAM, UGRID
ExportDonorInformation solversSolvers that support the the ExportDonorInformation attribute. SolversCGNS, GASP
ExportParentElements solversSolvers that support the the ExportParentElements attribute. SolversCGNS, GASP
FileByteOrder solversSolvers that support the the FileByteOrder attribute. SolversCart3D, LAURA, NPARC, UGRID
FileFormat solversSolvers that support the the FileFormat attribute. SolversANSYS CFX, Cart3D, Cobalt, Edge, FrontFlow, Gridgen Generic, INCA v2, NPARC, NSU3D, Suggar++ Flex, TASCflow, UGRID
FilePrecision solversSolvers that support the the FilePrecision attribute. SolversACUSIM/AcuSolve, ANSYS CFX, CGNS, CMSoft-Aero, Cobalt, GASP, Gmsh, Gridgen Generic, Kestrel, NPARC, NSAERO, NSU3D, OVERFLOW, SC/Tetra, STAR-CCM+, SU2, ShipIR, TACOMA, TASCflow, Tecplot, UGRID, WIND (structured), WIND (unstructured)
GridExportMeshLink solversSolvers that support the the GridExportMeshLink attribute. SolversCGNS, Kestrel, NASA/FUN3D
GridExportMeshLinkDatabaseFileName solversSolvers that support the the GridExportMeshLinkDatabaseFileName attribute. SolversCGNS, Kestrel, NASA/FUN3D
GridExportMeshLinkDatabaseFileType solversSolvers that support the the GridExportMeshLinkDatabaseFileType attribute. SolversCGNS, Kestrel, NASA/FUN3D
GridExportMeshLinkFileName solversSolvers that support the the GridExportMeshLinkFileName attribute. SolversCGNS, Kestrel, NASA/FUN3D
GridExportMeshLinkFileType solversSolvers that support the the GridExportMeshLinkFileType attribute. SolversCGNS, Kestrel, NASA/FUN3D
GridStructuredAsUnstructured solversSolvers that support the the GridStructuredAsUnstructured attribute. SolversCGNS, GASP
TecplotFileFormat solversSolvers that support the the TecplotFileFormat attribute. SolversTecplot
UnstructuredInterface solversSolvers that support the the UnstructuredInterface attribute. SolversCGNS, GASP
|