I have found these two ways to get access to the variables tree of an object
Object op = model().find("Operator1"); pf(op.attrs.variables.find("maxspeed").value);
and
Object op = model().find("Operator1"); pf(getvarnum(op, "maxspeed"));
Are there other methods to get access to the variables tree items besides the numerical approach?