Skip to main content

Prime Mesh Python client library 2024 R2

ansys.meshing.prime.FileIO

Last update: 17.07.2025

FileIO.export_mapdl_cdb(file_name, params)

Export an MAPDL CDB file.

Notes

This method does not support Unicode paths.

Examples

>>> import ansys.meshing.prime as prime
>>> #connect client to server and get model from it
>>> client = prime.Client(ip="localhost", port=50060)
>>> model = client.model
>>> file_io = prime.FileIO(model=model)
>>> params = prime.ExportMapdlCdbParams(model=model)
>>> results = file_io.export_mapdl_cdb("/tmp/file.cdb", params)

Connect with Ansys