Call new_system() function in the callback of edit text
function edit1_Callback(hObject, eventdata, handles)
   str = get(hObject,'String');
   if ~isempty(str)
    open_system(new_system(str));
   end
After entering the model name in edit text, when you will hit the ENTER key, new model will get created and opened.


