Table of Contents

Building Design Optimization

Back to Table of Contents


What is optimization?

People use “optimize” rather frequently these days. This is a quote from BBC's website about its sleep profiling tool, “Whether you're having trouble sleeping or not, use the Sleep Profiler and get tailored advice on how best to optimise your sleep.” For someone doing research using optimization (see definition below), it is quite hard to grapple with the concept of optimizing one's sleep. What it really means is using this profiler can make you sleep better, which sounds a little less impressive.

Interestingly Oxford Dictionary Online and Merriam-Webster Learner's Dictionary define “optimize” slightly differently:

Although both sound reasonable, read literally the action of “optimize” requires achieving or aiming to achieve superlative qualities (the best, the most or as … as possible), which is rarely attainable in real life. Daily use of the word in fact means “make most of a situation”, “make more effective use of resource”, or “to make (something) as good as one would”. This is very different from what we do in optimization studies.



optimization (òp´te-mî-zâ´shen) – The procedure or procedures used to make a system or design as effective or functional as possible, especially the mathematical techniques involved. (The American Heritage® Dictionary of the English Language, Third Edition copyright © 1992 by Houghton Mifflin Company)



Wikipedia's entry on Mathematical Optimization gives a nice overview of optimization theory and techniques, with plenty of resources for further reading. It serves well as an entrance to the wonderful world of optimization studies. On the other hand, the sheer amount of information can be off-putting - who has the time to become an optimization expert, in order to solve the problem in the project due next week? Luckily, as long as you understand the basic concept of optimization and can learn to use a tool, you can use these techniques in your work. Most of the optimization studies aim for the superlatives. The question ADOPT intends to address, however, is how users can take advantage of this technology in their practice in designing buildings. As a result, we are not aiming to provide you a tool that gives you the best solution. Instead, our optimization tools will help you identify better solutions yourself. In this context, “optimize” here does mean “improve”.

Algorithms

There are really thousands and thousands of different optimization algorithms (and their flavors). They fall broadly into two camps (see Wiki): iterative methods (many are gradient-based) and heuristics (mainly direct-search methods, many of which are stochastic). And then there are hybrid methods that combine two or more techniques from either camp. So the total number of possible algorithms is practically infinite. I like the diagram below very much. It is again from Wikipedia, on Heuristic algorithms.

You can see how complicated the maze of algorithms is. For example, for Evolutionary Algorithms, there are five groups. Each of these groups contains different algorithms for constrained/unconstrained and/or single/multiple-objective problems. Take multiple-objective Genetic Algorithms (MOGAs) for instance, there are:

NSGA2 and SPEA2 are probably the most widely used MOGAs to date. Researchers keep making improvements to them, for example, the pNSGA2 and aNSGA2 (NSGA2 with passive or active archives) methods reported at BSO12 recently.

What is the best optimization algorithm” is one of the most frequently asked questions among “newbies”. I know a mathematician, who, when he receives this question, will stare at the inquirer and blurt out “what is your problem?!” (The exclamation mark was my addition ;-)) His answer is quite literally “it depends on the problem you are trying to solve”. In building design, however, many optimization problems are complex and “noisy”, on which gradient-based methods will not work. Evolutionary Algorithms are the most popular choice because of their “robustness”, i.e. a correctly implemented EA tends to solve the problem, no matter what kind of problem it is.

Evolution does work! Just think that this very mechanism has led to the development of humans and other complex organisms from the humble beginnings of the first single cell organism; using it to improve building designs is really a trivial task. There is a bit of an initial learning curve, true; especially hard is getting used to the jargon, such as binary encoding, constraints, crossover rate, tournament selection, elitism, … A large part of the aims of this project is to develop tools that incorporate our understanding of optimization problems in building design, so you, as users of the tools, do not have to worry too much about the details in the algorithms. Instead, you can focus on solving your design problem.

Optimization problems

Design variables

What are the design options and parameters, and which operation strategies and parameters do people optimise when designing a building? Again, we are in the process of collecting information from literature. From our experience, though, there are three basic types of variables:

A building design problem often involves (hierarchical) combinations of options, parameters and control signals. It will be interesting to see how people choose and treat variables in their optimisation studies.

Problem types

Corresponding to the choice of variables, there are some typical optimisation problems:

Objectives

What are the objectives of building optimisation? Or, for what purposes has optimization been used in building design and operation? Lots of information can be found in literature, though there is as yet no systematic conclusion. We will carry on working to collect and archive research in this area throughout the ADOPT project. The section “Optimisation case studies” gives a template of the kind of information we are collecting.

From our own experience, optimisation objectives for building design and operation can include the following:

Often more than one of these objectives may be of interest, and they are also frequently in opposition to each other, for example minimising energy demand often involves increasing capital cost. We are investigating how objectives are selected and treated, whether a single objective or a multi-objective approach is more desirable, and how to deal with constrained problems (e.g. comfort criteria, costs etc., these may be treated as a constraint or an objective).

Existing tools