nate allen professional portfolio

47
NATE ALLEN 5200 S BLACKSTONE AVE APT 805 CHICAGO, IL 60615 [email protected] 801-884-8809

Upload: nate-allen

Post on 09-Mar-2016

216 views

Category:

Documents


2 download

DESCRIPTION

Professional portfolio for job applications

TRANSCRIPT

Page 1: Nate Allen Professional Portfolio

NATE ALLEN

5200 S BLACKSTONE AVE APT 805CHICAGO, IL 60615

n.al [email protected]

801-884-8809

Page 2: Nate Allen Professional Portfolio
Page 3: Nate Allen Professional Portfolio

Mixed-Use High Rise: Apartment Condo Tower

PROJECT DESCRIPTION:43-story, mixed-use high rise build-ing with the top 21 floors occupied by a high-end hotel, the next 11 floors with condominiums, and the lower 9 floors with parking, and separate lobbies for hotel patrons and condo tenants.

CONCEPT:The goal of the design studio was to be a comprehensive building project, meaning that, in addition to designingthe architecture of the building, students were to investigate construction costs to maintain a specific budget and perform market research to predict poten-tial income from condo sales and hotel revenue. Using that research, students were to create a budget proforma with an analysis as to the probability of success if the project were carried out.

APPROACH:Through my market analysis and research into construction costs, I determined that the optimum combination of hotel floors to condominium floors was 21 hotel floors and 11 condo floors. With 22 hotel rooms per floor and 11 condo units per floor. Total projected cost for the building was $164 million, and would yeild $179 million in net revenue, a return on investment of $15 million.

Mixe

d-U

se H

igh

Rise

Page 4: Nate Allen Professional Portfolio

43-STORY APARTMENT AND HOTEL TOWER

Lobby/Function

Parking

Hotel

Condo

Total Square Footage

Parking Spaces

Hotel Keys

Hotel Avg SF

Condo Units

Studio

2 Bedroom

3 Bedroom

Levels 1-2

Levels 3-11

Levels 12-18

Levels 19-43

643,094 SF

522 Spaces Total

154 Keys

415 SF

276 Units Total

50 Units @ 600 SF Avg

150 Units @ 950 SF Avg

75 Units @ 1300 SF Avg

Page 5: Nate Allen Professional Portfolio

REF. DW

REF.

DW

DN

DN

REF.

DW

REF. DW REF. DW REF. DW

REF. DW

REF.

DW

REF. DWREF. DWREF. DW

UP

DN

UP

UP

UP

UPUP

DN

UP

CONDOMINIUM

HOTEL

PARKING GARAGE

CONDO LOBBY

HOTEL LOBBY

Page 6: Nate Allen Professional Portfolio

Noon 24°

Noon 79°

3 pm 58°

3 pm 58°

9 am 49°

9 am 49°

5 pm 35°

35° 5 pm

Noon 24°

7 am 17°

9 am 15°

9 am 15°

3 pm 10°

3 pm 10°

7 am, 5 pm 0°

17° 7 am

South Facade

Summer Sun

Winter Sun

Chicago, IL

Noon 24°

Noon 79°

3pm 58°

3 pm 58°

9 am 49°

9 am 49°

5pm 35°

5 pm 35°

Noon 24°

7 am 17°

3 pm 10°

3 pm 10°

5 pm 0°

7 am 17°

West Facade

Summer Sun

Winter Sun

Chicago, IL

Page 7: Nate Allen Professional Portfolio

Solar Heat Gain South Facade - Summer

May June July August September

Heat Gain No Shading

Heat Gain With Shading

Solar Heat Gain West Facade - Summer

May June July August September

Heat Gain No Shading

Heat Gain With Shading

Page 8: Nate Allen Professional Portfolio

A012N2222A

A00

+5VDC

330Ω

220Ω

TMP36

AnalogReadSerial Reads an analog input on pin 0, prints the result to the serial monitor. Attach the center pin of a potentiometer to pin A0, and the outside pins to +5V and ground.

int led = 13;int sensorValueA;int sensorValueB;boolean LEDon = false;

// the setup routine runs once when you //press reset:

void setup() // initialize serial communication at // 9600 bits per second: Serial.begin(9600); pinMode(led,OUTPUT);

// the loop routine runs over and over //again forever:void loop() // read the input on analog pin 0: sensorValueA = analogRead(A0); sensorValueB = analogRead(A1);

// print out the value you read: Serial.print(sensorValueA); Serial.print(“:”); Serial.println(sensorValueB); if(sensorValueA >= sensorValueB) LEDon = true;

else LEDon = false; if(LEDon) digitalWrite(led,HIGH); Serial .println (“ON ” ); else digitalWrite(led,LOW); Serial.println(“OFF”);

Page 9: Nate Allen Professional Portfolio

Dynamic Facade System

PROJECT DESCRIPTION:This dynamic shading mechanism is a system of louvers, that expand to absorb heat from direct sunlight to minimize solar heat gain and contract to allow sun to penetrate into the building. The system can be pre-set to operate completely without the need for manual operation by adjusting the temperature point where the system engages to facilitate user -defined thermal comfort levels.

OPERATION:Interface between analog inputs and the digital processing necessary to actuate the NanoMuscle was done using an Arduino Mirocontroller chip. Using the proprietary programming software, I wrote the program with function and signal routing operations that could then be loaded onto the micro-controller, so that the chip can operate by simply applying power to the unit. In this case the two analog inputs (temperature sensor, and trim pot thermostat) are conncted to analog input pins A00 and A01. The Arduino chip processes this analog input and, depending on the analog values that are received, switches the transistor which actuates the NanoMuscle.

Page 10: Nate Allen Professional Portfolio

myBall ball1 = new myBall(random(-4,4);

void setup() size(600, 500); background(0);

void draw() ball1.drawme();

class myBallfloat bxPos;int byPos;float bxVel;int byVel;int pHeight;int pWidth;int pxPos;int pyPos;int bSize;int bxStartPos;int tPos;boolean inGame;myBall(float bvxIn, int bvyIn)

bxPos = random(30,500); byPos = 50; bxVel = bvxIn; byVel = bvyIn; pHeight = 10; pWidth = 125; bSize = 40; inGame = true;

void drawme() //perform actions that happen in all //states background(0); if(!inGame) //in gameover mode textAlign(CENTER); textSize(50); text(“GAME OVER”, width/2, height/2); text(“CLICK TO START”, width/2, height/2 + 40); if(mousePressed) //restart the game //move the ball to a new starting //position bxPos = random(30,500); byPos = 50; bxVel = random(-4,4); byVel = 4; //stop drawing the game over //reset the score inGame = true;

else //perform normal game actions bxPos = bxPos + bxVel; byPos = byPos + byVel; pxPos = mouseX; pyPos = height-15; fill(0,255,0); stroke(0,255,0); ellipse(bxPos, byPos,bSize,bSize); rect(pxPos, pyPos,pWidth, pHeight); rectMode(CENTER); strokeWeight(5); line(width/2,height/2,width/2,height-30); if (bxPos> width-20 || bxPos < 20) bxVel = bxVel*-1; if (byPos<20) byVel = byVel*-1; //test to see if the ball is touching the paddle if ( (byPos+bSize/2)>(pyPos-pHeight/2) && bxPos>pxPos-pWidth/2 && bxPos<pxPos+pWidth/2 ) byVel=byVel*-1; //if the ball’s y position is within half the ball width //of the paddle’s yposition plus the height of the paddle //and //the ball’s xposition is greater than the paddle’s xpos - the width of the paddle/2 //and //less than the paddles xposition + the paddle’s width/2 //within the width of the paddle // then the ball’s ydirection reverses //test to see of the ball hits the halfway wall if ((bxPos + bSize/2)>(width/2-2) && (bxPos - bSize/2)<(width/2+2) && (byPos>height/2) )

Page 11: Nate Allen Professional Portfolio

This human interaction project uses the Miscrosoft Kinect, made for the Xbox 360, as an interactive interface to demonstrate an idea about interaction with architecture. I chose to represent this with the classic Atari game Pong. I developed the concept and wrote the code for the both the game itself and for the integration of the Kinect for user in ter face. The game was projected onto the wall of IIT’s Crown Hall as a way of interacting with the build-ing. The person p laying would move the paddle by moving back and forth in front of the screen. The Kinect tracks the player’s movements and translates that into movement on the screen.

Pong

Page 12: Nate Allen Professional Portfolio
Page 13: Nate Allen Professional Portfolio

Roundhouse Lunch C

ounter

PROJECT DESCRIPTION:

Adaptive reuse of an historic building.Each bay of the Evanston, Wyoming Train Roundhouse was assigned to a group in the class along with a specific program. The program our group was assigned was an eating establishment.

CONCEPT:

During our visit to the site, we became aware of the importance of the truss in the railroads. Trusses distribute high loads between multiple joints, preserving the openness of space.

APPROACH:

We used the concept of the function of trusses to define connections and nodes of pedestrian circulation paths, and to give the user a sense of the large open space in the building. Upper catwalks and seating areas give the user the feeling of being up in the trusses to experience the open space.

INVOLVEMENT:

Integrally involved in conception and design process. While other membersof my group developed presentationdrawings, my task was to construct thefinal model.

Roundhouse Adaptive Reuse: Lunch Counter

Page 14: Nate Allen Professional Portfolio
Page 15: Nate Allen Professional Portfolio
Page 16: Nate Allen Professional Portfolio
Page 17: Nate Allen Professional Portfolio
Page 18: Nate Allen Professional Portfolio

PROJECT DESCRIPTION:

Custom fabricated kitchen table for a residential home. All parts of the table are constructed of reclaimed materials.

MATERIALS:

Table top is a 4’x8’ sheet of 1/2” mild steel that was used to cover a hole in a driveway, so the metal was rusted and worn. Legs are made of scrap pieces of rustic alder obtained from a custom cabinet shop. The frame for the table is 2”x 2” square tubing, and connection brackets are fabricated from 4” wide 3/16” reclaimed strap steel.

FABRICATION:

Rust had to be cleaned from the table top with a wire brush, which exposed the texture of the metal underneath. Then the table was sealed with an epoxy sealer to prevent further rusting.

Dining Room Table

Page 19: Nate Allen Professional Portfolio
Page 20: Nate Allen Professional Portfolio

Roundhouse Lunch C

ounter

Page 21: Nate Allen Professional Portfolio

Roundhouse Lunch C

ounter

Page 22: Nate Allen Professional Portfolio
Page 23: Nate Allen Professional Portfolio
Page 24: Nate Allen Professional Portfolio
Page 25: Nate Allen Professional Portfolio
Page 26: Nate Allen Professional Portfolio

Roundhouse Lunch C

ounter

Page 27: Nate Allen Professional Portfolio

Roundhouse Lunch C

ounter

Page 28: Nate Allen Professional Portfolio
Page 29: Nate Allen Professional Portfolio

Forces in a Truss: Concept Diagram

Page 30: Nate Allen Professional Portfolio
Page 31: Nate Allen Professional Portfolio

First Night D

esign Com

petition

FABRICATION:

We created a system to drill holes in the center of the newspapers to thread them onto one inch Schedule 40 tubing to keep the stacks straight. Each stack of newspapers was placed in a base and attached together throughout the columns to form the wall.

PROJECT DESCRIPTION:

Design competition for Salt Lake City’s New Year’s Eve celebration 2009. Our group was chosen first place out of 15 entries. As the winner of the competition, our group constructed the project for First Night on January 1, 2009.

CONCEPT:

Theme for First Night was rituals. Our group focused the on common use of superstitions; highlighting the ritual of knocking on wood to ward off bad luck.

APPROACH:

As the new year is a time to reflect on the past years events, we constructed the wall out of recycled newpapers to represent all that had happened throughout the year. Using the concept of knock on wood, there were wooden boxes embedded in the newspapers that users could play with drumsticks like a musical instrument in order to engage the public.

First Night New Years Eve Design Competition

Page 32: Nate Allen Professional Portfolio
Page 33: Nate Allen Professional Portfolio
Page 34: Nate Allen Professional Portfolio
Page 35: Nate Allen Professional Portfolio

Evanston W

yoming Airport

PROJECT DESCRIPTION:

Design of a municipal airport including an airplane hangar and fixed-based operational spaces for the Uinta County Airport in Evanston, Wyoming. The design included a pilot lounge, meeting and training room, manager’s office, as well as operational service spaces.

CONCEPT:

The airport as a catalyst for transition between sky and ground. The focus was on the exhilarating but subtle moment between being on the ground and being airborne.

APPROACH:

Give the user a sense of the relationship between sky and ground through the visual experience of the building. As a person enters the building, a series of directional truss structures draw the interest upward, leading the eye to a clerestory window offering a glimpse of the sky. Grounded spaces such and the pilot lounge, manager’s office, and training room are enveloped in a concrete shell structure with limited natural light penetration, giving the cave-like feeling of being in the ground.

Municipal Airport: Evanston, WY

Page 36: Nate Allen Professional Portfolio
Page 37: Nate Allen Professional Portfolio
Page 38: Nate Allen Professional Portfolio
Page 39: Nate Allen Professional Portfolio
Page 40: Nate Allen Professional Portfolio

Prefabricated Wood Panel

Frosted Glass Partition Wall

Page 41: Nate Allen Professional Portfolio

Efficient Housing Model: Masters Thesis Project

PROJECT DESCRIPTION:This project was a contemporary reevaluation of Frank Lloyd Wright’s Usonian houses, taking into account the current needs and desires of the potent ial homeowner and housing market today.

CONCEPT:The project brings home ownership within the reach of many individuals previously unable to af ford it. Like Wright’s Usonian houses, the project will take into account the needs of the homeowner and remain affordable through low material costs, innovative construction methods, and incorpo-rating energy -efficient strategies in order to maintain low operating costs.

APPROACH:The building consists of three separate units on the same lot, a variation from the typical Chicago three-flat in that rather than the three units being stacked one on top of the other, they are ordered linearly one after the other. The primary advantage of this arrangement is that each unit is allowed access to the ground floor, and to one of the three designated courtyard areas.

Efficie

nt H

ou

sing

Mo

de

l

Page 42: Nate Allen Professional Portfolio
Page 43: Nate Allen Professional Portfolio
Page 44: Nate Allen Professional Portfolio
Page 45: Nate Allen Professional Portfolio
Page 46: Nate Allen Professional Portfolio
Page 47: Nate Allen Professional Portfolio