Daylight Factor Simulation

Christian Kongsgaard
2021-02-24

In this tutorial we will go through a step-by-step guide of how to use Compute to run a Daylight Factor simulation. The end result will be a colored mesh.

Daylight Factor is a relatively lightweight calculation, which makes it well-fitted to the early design stage, when the geometry changes rapidly, and the simulation should be able to follow the pase. Daylight Factor is however not assessing the acutual daylight in a room, but rather the "daylight availability". It is a purely geometric calculation, and it doesn't take into account site location or orientation of the geometry and/or windows.

Setup

To follow along or to try it yourself, download our demo file of this tutorial.

Canvas

The Grasshopper canvas looks as the picture below.

Annual Daylight Grasshopper Canvas
Annual Daylight Grasshopper Canvas

We have 7 steps to go through:

  1. Login
  2. Project and Task creation
  3. Case and Solution Setup
  4. Probe Task Creation
  5. Simulation Task Creation
  6. Download Results
  7. Visualize

If you are already familiar with the daylight setup, then we suggest that you skip straight to Assign Materials and Simulation Task Creation

Login

The first thing to do is to log in with your username and password. If you don't have an user for Compute yet, then you need to sign up first. You can go to our registration page to do so.

Project and Task Creation

Every task on Compute belongs to a project. Then first thing to do is to create that project. You can do it manually through the web browser or you can do it with the Grasshopper components. Here we are going to stick to the Grasshopper components.

Project and Task Component
Project and Task Component

We will call our project Daylight Factor and our TaskName Version 1. The parent task we create together with our project works to group our simulation tasks, so we can easily keep track of design iterations. When we click on the Create button the project and task will be created on Compute.

Parent Task Created
Parent Task Created

Case and Solution Setup

Next thing on the agenda is to set up the case and geometry. In this tutorial we are working with an L-shaped office space that has windows on the north and east facade. We have two interior walls, which splits the office space into three rooms.

Case Geometry
Case Geometry

Apply Naming

With the Compute Grasshopper plugin we work with the geometry first by naming it. Each surface gets its own name. That way it is possible to assign materials later on. The SetNames components only accepts mesh geometry, that is why we use Grasshopper Mesh Brep component to turn our surfaces into meshes.

We give descriptive names to the surfaces such as wall, floor and window_east. It makes it a lot easier later on figure out what is what.

The SetNames component accepts a list of objs (meshes), but you can choose to only give the names into a single value. That doesn't mean that every surface inputted to objs are i.e. going to be called wall. The component will detect that you gave it a list of meshes, but only a single name and therefore it will suffix the name with a number. So the final outcome looks something like this: wall.__000, wall.__001, wall.__002, wall.__003.

Apply Names to Geometry
Apply Names to Geometry

Inspect Geometry

When running Daylight simulations it is important that your geometry is clean and without any gaps, just when doing CFD The simulation engine we use for daylight and radiation is Radiance, which is a validated and widely use simulation engine. Radiance is sensitive to the orientation of surface normals, so you have to make sure that the normal points the way you want, before starting the simulation.

In the demo Grasshopper file, we provide with a simple setup to check the normals of the case geometry. The surface normal should point towards the side you want to ray trace, so in case of the indoor daylight assessment you want the normals to point inward.

Check that the normals point inside of the rooms
Check that the normals point inside of the rooms

Assign Materials

We assign materials to the names of the geometry. On the server the materials and the geometry are matched based on the naming. That is why we need to apply the names to the geometry.

The Material component takes a list of names, a preset and a JSON formatted string with overrides. In the picture below you can see that in the top component we supply the names: wall*, floor*. As you probably noticed, we don't have any geometry named wall* or floor*. The * means that we match everything the starts with wall or floor. We use the * so we don't have to input a list with all the names we assigned earlier. Remember that the SetNames component give the geometry a suffix with a number on. So it could be a quite long list to supply to the Material component. We can avoid all that with the simple * notation.

If you are interested in reading more about the presets and overrides you can choose between, take a look at Radiance Materials

The Python components are a convenient way of turning inputs into JSON formatted text. You can see what is going on inside the component by double-clicking on it.

Assign Materials
Assign Materials

Setup Solution

The final part of the case and geometry setup is to configure the Solution component. The solution takes Input from the ProjectAndTask component, that we looked at in the beginning. You further more need to specify the number of CPUs you want to use on the cloud. In the picture below we use 2, but it can be any number of CPUs as long as that number fits the available instances sizes on Compute.

For the Method we pick DaylightFactor as we are doing a Daylight Factor simulation. The Materials comes from the Material components that we assigned above.

Configuration of the Solution
Configuration of the Solution

Create a Probe Task

The Probe Radiation component takes its Input from the Solution component. The Points and Normals should be a Tree/List of points and vectors, where we want to get the daylight results. On Compute we call them the Probe Points.

We can generate the probe points with the AnalysisMesh component. We give the component a list of Surfaces, a Grid Size and an Offset height. The component then generates a mesh, a list of points for each face center of the mesh, and a list of normals associated with those points.

In this case we have 3 rooms, and we want to be able to distinguish those rooms from each other. That is why we give a list of surfaces to in the Surface input. That way the points and normals are separated into different branches. On Compute we call each branch a Probe Set. We can also give our probe sets names, by providing a list of names to the Names input in the Probe Radiation component.

Create Probe Task
Create Probe Task

Just as with the surfaces, it is important to check that your normals of the analysis mesh points in the right direction. The normals should point upwards.

Analysis Grid with Normals
Analysis Grid with Normals

To create the Probe task we click the Create button. You can the go to the browser and see that a Probe task is created in your project as a child of the Version 1 task. The Probe task ussually run really fast, as it just turns the points and normals we created into a format that Radiance can understand.

View Probe Task in the Browser
View Probe Task in the Browser

Create Simulation Task

After the probes have been created it is time to click the Compute button! The Compute component takes the input from the Radiation Probe component and the meshes we defined in the beginning.

Create Simulation Task
Create Simulation Task

After clicking Compute two new tasks will appear in the project on Compute: Actions and Daylight Factor. The Actions takes the Rhino geometry, the names we gave the geometry and the material assignments, and turn them into Radiance scene files (.rad)

The Daylight Factor task is the actual simulation task. You can click on Logs to see the progress of the simulation. We stream all the logs back to you, so you can see what is happening.

You can also ready more about the Logs pane here

With 2 CPUs this demo case takes about 10min to simulate.

View Simulation Logs
View Simulation Logs

Download Results

When the Daylight Factor task is done we can download the results, so they can be visualized in Grasshopper. We provide the download component with the output from the Compute task, the folder on Compute that we want to download and a Local Path that we want to download the results to. The component will itself start downloading the files as soon as they become available on the server.

Download Results
Download Results

The Download Path is the path on the server you want to download. The daylight metric results are saved at results. In case you want to download something else, you can take a look at the Files tab to see which files are available.

Locate the Metric Results on the Server
Locate the Metric Results on the Server

We can then feed the path we download the files to into the Radiation Results component, which will load them, and we can then visualize.

Final Results

The final results looks something like this

Visualize the Results in Grasshopper
Visualize the Results in Grasshopper



Are you ready to start you journey with Compute?

Sign Up