Sky View Factor

Christian Kongsgaard
2021-03-22

Sky View Factor
Sky View Factor

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

A Sky View Factor analysis shows you how much of the sky dome a point on the facade can see. That gives an indication of how much daylight will be available inside the building. Sky View Factor is very similar to Daylight Factor. It doesn't take into account location or orientation, but is purely a geometric calculation.

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 Sky View 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 the five boxes also used in the VWT Demo, to represent an urban setting with buildings.

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.

Usually, we give descriptive names to the surfaces such as wall or floor. In the case of the Sky View Factor simulation we can give all the geometry the name building, as the materials are not so important here, and we only need to assign the same material to all the geometry.

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 building. 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: building.__000, building.__001, building.__002, build.__003, etc..

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.

For the Sky View Factor it is important that the normals of the building surfaces points outwards.

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 SkyViewFactor as we are doing a Sky View 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 are interested in the results on the faces of the buildings. So we give the Probe Radation component a list with facade00, facade01 for each surface we give to the Surface input in the AnalysisMesh component. 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 outwards.

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 usually 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 Sky View 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 Sky View 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 Sky View 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