import_fluent_meshing_meshes#
- FileIO.import_fluent_meshing_meshes(file_names, import_fluent_meshing_mesh_params)#
Import Fluent Meshing’s mesh (MS and MSH.GZ) files from disk.
- Parameters:
- file_names
List
[str
] List of full path for the mesh files to import.
- import_fluent_meshing_mesh_params
ImportFluentMeshingMeshParams
Parameters for importing the mesh files.
- file_names
- Returns:
ImportFluentMeshingMeshResults
Results from importing the mesh files.
- Return type:
Notes
This method does not support Unicode paths.
Examples
>>> file_io = prime.FileIO(model=model) >>> params = prime.ImportFluentMeshingMeshParams(model=model) >>> results = file_io.import_fluent_meshing_meshes( ["/tmp/mesh.msh", "/tmp/mesh1.msh"], params)