show/hide this revision's text 3 Structural vs Functional

Structural vs Functional Model in Understanding and Usage

The excellent earlier post by Thorsten79 brings up the topic of software development experts vs users and how their understanding of software differ. Human learning experts distinguish between functional and structural mental models. Finding way to your friend's house can be an excellent example of the difference between the two:

  • First approach includes a set of detailed instructions: take the first exit of the motorway, then after 100 yards turn left etc. This is an example of functional model: list of concrete steps necessary to achieve a certain goal. Functional models are easy to use, they do not require much thinking just a straight forward execution. Obviously there is a penalty for the simplicity: it might not be the most efficient route and any any exceptional situation (i.e. a traffic diversion) can easilly lead to a complete failure.

  • A different way to cope with the task is to build a structural mental model. In our example that would be a map that conveyes a lot of information about the internal structure of the "task object". From understanding the map and relative locations of our and friend's house we can deduct the functional model (the route). Obviously it's requires more effort, but much more reliable way of completing the task in spite of the possible deviations.

  • The choice between conveying functional or structural model through UI (for example, wizard vs advanced mode) is not that straight forward as it might seem from Thorsten79's post. Advanced and frequent users might well prefer the structural model, whereas occassional or less expirienced users functional.

    Google maps is a great example: they include both functional and structural model, so do many sat navs.

    Another dimension of the problem is that the structural model presented through UI must not map to the structure of software, but rather naturally map to structure of the user task at hand or task object involved.

    The difficulty here is that many developers will have a good structural model of their software internals, but only functional model of the user task the software aims to assist at. To build good UI one needs to understand the task/task object structure and map UI to that structure.

    Anyway, I still can't recommend taking a formal HCI course strongly enough. There's a lot of stuff involved such as heuristics, principles derived from Gestalt phychology, ways humans learn etc.

    show/hide this revision's text 2 added 287 characters in body

    Contrary to popular myth there are literally no soft aspects in UI design, at least no more than needed to design a good back end.

    Consider the following; good back end design is based upon fairly solid principles and elements any good developer is familiar with:

    • low coupling

    • high cohesion

    • architectural patterns

    • industry best practices

    • etc

    Good back end design is usually born through a number of interactions, where based on the measurable feedback obtained during tests or actual use the initial blueprint is gradually improved. Sometimes you need to prototype smaller aspects of back end and trial them in isolation etc.

    Good UI design is based on the sound principles of:

    • visibility

    • affordance

    • feedback

    • tolerance

    • simplicity

    • consistency

    • structure

    UI is also born through test and trial, through iterations but not with compiler + automated test suit, but people. Similarly to back end there are industry best practises, measurement and evaluation techniques, ways to think of UI and set goals in terms of user model, system modelimage, designer model, structural model, functional model etc.

    The skill set needed for designing UI is quite different from designing back-end and hence don’t expect to be able to do good UI without doing some learning first. However that both these activities have in common is the process of design. I believe than that anyone who can design good software is capable of designing good UI as long as they spend some time learning how.

    I recommend taking a course in Human Computer Interaction, check MIT and Yale web sites, there is most probably one published site for example for online .materials:

    show/hide this revision's text 1

    Contrary to popular myth there are literally no soft aspects in UI design, at least no more than needed to design a good back end.

    Consider the following; good back end design is based upon fairly solid principles and elements any good developer is familiar with:

    • low coupling

    • high cohesion

    • architectural patterns

    • industry best practices

    • etc

    Good back end design is usually born through a number of interactions, where based on the measurable feedback obtained during tests or actual use the initial blueprint is gradually improved. Sometimes you need to prototype smaller aspects of back end and trial them in isolation etc.

    Good UI design is based on the sound principles of:

    • visibility

    • affordance

    • feedback

    • tolerance

    • simplicity

    • consistency

    • structure

    UI is also born through test and trial, through iterations but not with compiler + automated test suit, but people. Similarly to back end there are industry best practises, measurement and evaluation techniques, ways to think of UI and set goals in terms of user model, system model, designer model etc.

    The skill set needed for designing UI is quite different from designing back-end and hence don’t expect to be able to do good UI without some learning first. However that both activities have in common is the process of design. I believe than anyone who can design good software is capable of designing good UI as long as they spend some time learning how.

    I recommend taking a course in Human Computer Interaction, check MIT and Yale web sites, there is most probably one published online.