Abaqus - How to access load values using Python scripting

Hi,

I struggle to figure out how to use Python to list load data from the model. For instance to iterate all loads in the model, check if it is of type "concentratedForces" and then print the load values. The first steps (to iterate and check load type) works fine, problem is to access the load values.

I am looking for a syntax like: print m.loads['PointLoad'].concentratedForce 

The screen plot below is taken from the documentation. But I can't figure out how to get the data values. Is this possible?

The ConcentratedForce object defines a concentrated force.

The ConcentratedForce object is derived from the Load object.

This page discusses:

Access

import load
mdb.models[name].loads[name]

Abaqus