Models are information units storing all configuration of a machine, its optics and sequences. For example:
from cern.cpymad import load_model
model = load_model('lhc')
twiss, summary = model.twiss()
print("max/min beta x:", max(twiss['betx']), min(twiss['betx']))