*/
public IPort getModelOutPort(String model, String port) {
IPort iport = getModel(model).getOutPort(port);
if (iport == null) {
throw new InvalidPortException("A port with the given name " + port
+ " does not exist in " + model + "!");
}
return iport;
}