1. Homepage
  2. Programming
  3. Architectural Engineering Design 1 Computing Part Term Project: Data Analysis and Visualization

Architectural Engineering Design 1 Computing Part Term Project: Data Analysis and Visualization

Engage in a Conversation
Architectural Engineering DesignData Analysis and VisualizationPython

Architectural Engineering Design 1 Computing Part
CourseNana.COM

Term Project Brief
A Simple Building Performance Simulation Software
80% towards the “computing part” of ABEE1025 CourseNana.COM

This is a term-long project (coursework) which you need to start from the first day of the semester. During the semester, we will learn the necessary knowledge and skills to facilitate the successful completion of this coursework. After the end of this semester, if you work hard enough, you will be able to submit a simple but complete software for building performance simulation. CourseNana.COM

Learning outcomes CourseNana.COM

  •   Test and practice the knowledge of using Python and building performance simulation engine to design and implement a complete software package CourseNana.COM

  •   Test and practice the knowledge of using computing skills to solve engineering problems related to Architectural Environment Engineering CourseNana.COM

    Release and Submission CourseNana.COM

    •   Test and practice the knowledge of using Pandas and Matplotlib to process and visualize data in a CSV file. CourseNana.COM

    •   Test and practice the knowledge of simple data analysis on building performance CourseNana.COM

Requirements: CourseNana.COM

In this coursework, you are given a full year operation data in a csv file of a single-room building, including: CourseNana.COM

  • -  outdoor air temperature (Environment:Site Outdoor Air Drybulb Temperature CourseNana.COM

    [C](TimeStep)) CourseNana.COM

  • -  outdoor relative humidity (Environment:Site Outdoor Air Relative Humidity CourseNana.COM

    [%](TimeStep)) CourseNana.COM

  • -  direct solar radiation (Environment:Site Direct Solar Radiation Rate per Area CourseNana.COM

    [W/m2](TimeStep)) CourseNana.COM

  • -  diffuse solar radiation (Environment:Site Diffuse Solar Radiation Rate per Area CourseNana.COM

    [W/m2](TimeStep)) CourseNana.COM

  • -  indoor air temperature (ZONE ONE:Zone Mean Air Temperature [C](TimeStep)) CourseNana.COM

  • -  indoor relative humidity (ZONE ONE:Zone Air Relative Humidity [%](TimeStep)) CourseNana.COM

  • -  AC heating power (ZONE 1 IDEAL LOADS:Zone Ideal Loads Supply Air Total Heating CourseNana.COM

    Rate [W](TimeStep)) CourseNana.COM

  • -  AC cooling power (ZONE 1 IDEAL LOADS:Zone Ideal Loads Supply Air Total Cooling CourseNana.COM

    Rate [W](TimeStep)) CourseNana.COM

    We would like to perform analysis on the data to discover what are the major impacting factors on building AC energy consumption, i.e. AC heating power and AC cooling power. You need to use Python to answer the following questions: CourseNana.COM

  1. What is the heating and cooling consumption profile of the building? Generate the following 3 charts using Python: CourseNana.COM

    1. a)  One bar chart of monthly total heating energy consumption (in kWh) and monthly total cooling energy consumption (kWh). Note: you should use different colors to represent heating energy and cooling energy respectively. CourseNana.COM

    2. b)  One line chart of daily (weekends data should be ignored) total heating energy consumption (in kWh) and daily (weekends data should be ignored) total cooling energy consumption (kWh). Note: you should use different colors to represent heating energy and cooling energy respectively. CourseNana.COM

    3. c)  One line chart of hourly average cooling energy rate (kW) of the day where the daily totally cooling energy consumption is the maximum, and hourly average heating energy rate (kW) of the day where the daily totally heating energy consumption is the maximum. Note: you should use different colors to represent heating energy and cooling energy respectively. CourseNana.COM

  2. What is the relationship between heating and cooling energy consumption versus weather conditions? Generate the following 10 charts using Python: CourseNana.COM

    1. a)  One scatter plot of hourly average cooling energy rate (kW) versus hourly average outdoor dry-bulb temperature (C). Note: data points where the hourly average cooling energy rate is zero should be ignored. CourseNana.COM

    2. b)  One scatter plot of hourly average cooling energy rate (kW) versus hourly CourseNana.COM

average direct solar radiation (W/m2). Note: data points where the hourly CourseNana.COM

average cooling energy rate is zero should be ignored.
c) One scatter plot of hourly average cooling energy rate (kW) versus hourly
CourseNana.COM

average diffuse solar radiation (W/m2). Note: data points where the hourly CourseNana.COM

average cooling energy rate is zero should be ignored. CourseNana.COM

  1. d)  One scatter plot of hourly average cooling energy rate (kW) versus hourly CourseNana.COM

    average total solar radiation (diffuse solar radiation + direct solar radiation, W/m2). Note: data points where the hourly average cooling energy rate is zero should be ignored. CourseNana.COM

  2. e)  One scatter plot of hourly average cooling energy rate (kW) versus hourly average dewpoint temperature (C). Note: data points where the hourly average cooling energy rate is zero should be ignored. Hint: dewpoint temperature can be calculated using dry-bulb temperature and relative humidity, try to google it. CourseNana.COM

  3. f)  One scatter plot of hourly average heating energy rate (kW) versus hourly average outdoor dry-bulb temperature (C). Note: data points where the hourly average heating energy rate is zero should be ignored. CourseNana.COM

  4. g)  One scatter plot of hourly average heating energy rate (kW) versus hourly average direct solar radiation (W/m2). Note: data points where the hourly average heating energy rate is zero should be ignored. CourseNana.COM

  5. h)  One scatter plot of hourly average heating energy rate (kW) versus hourly average diffuse solar radiation (W/m2). Note: data points where the hourly average heating energy rate is zero should be ignored. CourseNana.COM

  6. i)  One scatter plot of hourly average heating energy rate (kW) versus hourly average total solar radiation (diffuse solar radiation + direct solar radiation, W/m2). Note: data points where the hourly average heating energy rate is zero should be ignored. CourseNana.COM

  7. j)  One scatter plot of hourly average heating energy rate (kW) versus hourly average dewpoint temperature (C). Note: data points where the hourly average heating energy rate is zero should be ignored. Hint: dewpoint temperature can be calculated using dry-bulb temperature and relative humidity, try to google it. CourseNana.COM

  1. What you can find from the above 13 charts? Write a brief analysis report (less than 300 words) and the report should analyze on the building energy consumption profile and which weather factor(s) have obvious impact on heating and cooling energy consumption. CourseNana.COM

  2. (BONUS) Quantify the correlation between each weather factor and heating/cooling energy consumption. You may consider to use Pearson correlation coefficient or other similar ones. CourseNana.COM

Marking Rubrics: CourseNana.COM

1. Charts: each chart is worth 6 marks CourseNana.COM

  1. a)  The chart has correct data, including unit and time resolution – 4 marks CourseNana.COM

  2. b)  The chart has clear legends, labels on x and y axis, x and y axis titles, correct CourseNana.COM

    plotting color, suitable figure size, suitable font size. Each violation will be 0.5 CourseNana.COM

CourseNana.COM

mark penalty. 2. Analysis: 9 marks CourseNana.COM

a) Clear and correct analysis on the impacts of each weather factor on heating and cooling energy consumption, with strong reference to the charts that have been plotted; correct English usage without grammar errors. CourseNana.COM

3. Bonus: 10 marks
a) Correct use and calculation of correlation coefficient 
CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
Architectural Engineering Design代写,Data Analysis and Visualization代写,Python代写,Architectural Engineering Design代编,Data Analysis and Visualization代编,Python代编,Architectural Engineering Design代考,Data Analysis and Visualization代考,Python代考,Architectural Engineering Designhelp,Data Analysis and Visualizationhelp,Pythonhelp,Architectural Engineering Design作业代写,Data Analysis and Visualization作业代写,Python作业代写,Architectural Engineering Design编程代写,Data Analysis and Visualization编程代写,Python编程代写,Architectural Engineering Designprogramming help,Data Analysis and Visualizationprogramming help,Pythonprogramming help,Architectural Engineering Designassignment help,Data Analysis and Visualizationassignment help,Pythonassignment help,Architectural Engineering Designsolution,Data Analysis and Visualizationsolution,Pythonsolution,