How to get all Component or Named Selection Names from an MAPDL results file: DPF
Mike.Thompson
Member, Employee Posts: 367
✭✭✭✭
in Structures
How can I get a list of the components defined in the results file through DPF in Mechanical?
Tagged:
0
Best Answer
-
import mech_dpf import Ans.DataProcessing as dpf mech_dpf.setExtAPI(ExtAPI) #Get path to result file analysis = ExtAPI.DataModel.Project.Model.Analyses[0] filepath = analysis.ResultFileName #Data sources dataSources = dpf.DataSources() dataSources.SetResultFilePath(filepath) # Model model=dpf.Model(dataSources) print(model.AvailableNamedSelections)
0