I would like to use pyDPF to extract the total Rotational mass from a modal analysis in Mechanical/APDL. This is necessary to check if a sufficient number of mode shapes have been extracted in the analysis.
I can get the total mass as:
data_sources = dpf.DataSources()
data_sources.add_file_path(Modefile)
mass_op = dpf.operators.result.total_mass(data_sources=data_sources)
model_total_mass = mass_op.outputs.mass()
Can I similarly read the rotational masses from the .mode or other (e.g. .rst) file?
