ENGR 1330 – Computational Thinking and Data Science - Spring 2022

Introduction: Concrete Strength Prediction

The Compressive Strength of Concrete determines the quality of Concrete. The strength is determined by a standard crushing test on a concrete cylinder, that requires engineers to build small concrete cylinders with different combinations of raw materials and test these cylinders for strength variations with a change in each raw material. The recommended wait time for testing the cylinder is 28 days to ensure correct results, although there are formulas for making estimates from shorter cure times. The formal 28-day approach consumes a lot of time and labor to prepare different prototypes and test them; the method itself is error prone and mistakes can cause the wait time to drastically increase.

One way of reducing the wait time and reducing the number of combinations to try is to make use of digital simulations, where we can provide information to the computer about what we know and the computer tries different combinations to predict the compressive strength. This approach can reduce the number of combinations we can try physically and reduce the total amount of time for experimentation. But, to design such software we have to know the relations between all the raw materials and how one material affects the strength. It is possible to derive mathematical equations and run simulations based on these equations, but we cannot expect the relations to be same in real-world. Also, these tests have been performed for many numbers of times now and we have enough real-world data that can be used for predictive modelling.

The figure below shows a picture of a typical conrete cylinder tested in compression.


Objective(s):

  • Literature scan on concrete design, and utility of a predictive approach
  • Analyse an existing concrete compressive strength database and build a data model to predict the compressive strength of a concrete mixture.
  • Build an interface to allow users to enter concrete mixtures and return an estimated strength and an assessment of the uncertainty in the estimate
  • Build an interface to allow users to add observations to the underlying database, and automatically update the Data Model to incorporate the new observations

Tasks:

Literature Research:

  • Describe the challenge of concrete mixture design and the importance of compressive strength.
  • Summarize the value of a data model in the context of the conventional approach to strength prediction

Some places to start are:

Database Acquisition

Exploratory Data Analysis

  • Describe (in words) the database.
  • Reformat as needed (column headings perhaps) the database for subsequent analysis.
  • Select possible data model structures (multi-feature linear model, power-law, ...)
  • Select possible data model "fitting" tools (ordinary least squares,lasso regression, decision trees, random forests, ...)

Model Building

  • Build data models
  • Assess data model quality (decide which model is best)
  • Build the input data interface for using the "best" model
  • Using your best model determine projected concrete strength for 5 possible mixtures in the table below:
Cement BlastFurnaceSlag FlyAsh CoarseAggregate FineAggregate Water Superplasticizer Age
175.0 13.0 172.0 1000.0 856.0 156.0 4.0 3.0
320.0 0.0 0.0 970.0 850.0 192.0 0.0 7.0
320.0 0.0 126.0 860.0 856.0 209.0 5.70 28.0
320.0 73.0 54.0 972.0 773.0 181.0 6.0 45.0
530.0 359.0 200.0 1145.0 992.0 247.0 32.0 365.0
In [ ]:
strength = b0+b1*BlastSlag+b2*FlyAsh+b3*Coarse+ ....
log(strength) = log(b0+b1*BlastSlag+b2*FlyAsh+b3*Coarse+ ....)
strength = b0*(Blast**e1* Fly**e2* Doarse**e3...)

Deliverables:

Effort Sheets (due every week on Friday):

Each team must submit an effort sheet which is a table with a clear discription of the tasks undertaken by each member and has the signiture of all team members. The effort sheets should be submitted digitally via email.

Interim Report (due Wednesday April 20th, 2022):

This report must include:

  • The "Literature Research" section
  • A description of the Concrete Strength database
  • A plan of work for how you want to handle the project and solve the modeling tasks.
  • Break down each task into manageable subtasks and describe how you intend to solve the subtasks and how you will test each task. (Perhaps make a simple Gantt Chart)
  • Address the responsibilities of each team member for tasks completed and tasks to be completed until the end of the semester. (Perhaps make explicit subtask assignments)

Your report should be limited to 7 pages, 12 pt font size, double linespacing (exclusive of references which are NOT included in the page count). You need to cite/reference all sources you used. This report must be submitted by Midnight April 20th in PDF format.

Final Report (due Tuesday May 2nd, 2022):

This report must include:

  • All the required parts, including the ones from the Interim report as well as the sections on EDA and Model Building parts.
  • All the filled effort sheets with the signitures of the team members with a clear description of all the tasks performed by each member.
  • All the references used in the entire length of the project.
    This report must be submitted by Midnight May 2nd in PDF format, along with the following documents:

    • A well-documented Jupyter Notebook (.ipynb file) for the analysis and implementation of the data models.
    • A well-documented Jupyter Notebook (.ipynb file) for the implementation of the data model user interface.

      Above items can reside in a single notebook; but clearly identify sections that perform different tasks.

    • A how-to video demonstrating the application, performance and description of what you did for the project, including the problems that you solved as well as those that you were not able to solve.

    • A project management video (up to 5 minutes) in which you explain how you completed the project and how you worked as a team.

      Above items can reside in a single video; but structure the video into the two parts; use an obvious transition when moving from "how to ..." into the project management portion.
      Keep the total video length to less than 10 minutes; submit as an "unlisted" YouTube video, and just supply the link (someone on each team is likely to have a YouTube creator account). Keep in mind a 10 minute video can approach 100MB file size before compression, so it won't upload to Blackboard and cannot be emailed.