Skip to main content

Prime Mesh Python client library 2025 R2 SP04

export_mapdl_cdb

Last update: 20.02.2026

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