Answered step by step
Verified Expert Solution
Question
1 Approved Answer
USNG PYTHON 3 PLEASE. 5) According to the Turkish Seismic Design Code (TSDC 2019), the concrete compressive strength of an existing building (cm) is determined
USNG PYTHON 3 PLEASE.
5) According to the Turkish Seismic Design Code (TSDC 2019), the concrete compressive strength of an existing building (cm) is determined by considering uniaxial compression tests performed on concrete core specimens. The concrete compressive strength is defined as: fcm = Maximum (0.85fc,mean; fc,mean StDev) where, fc,mean is the mean compressive strength and StDev is the standard deviation of the test results. -fo fc,mean = StDev = Sci-fc,mean) n-1 (n is the number of tests) n A series of tests are carried out and the following compressive strength values in MPa unit) are obtained: tests = [22, 26, 20, 24, 28, 18, 30, 15, 32, 26] Prepare a script that has three functions for calculating the fc,mean, StDev and fcm values, respectively. Use your functions with the given list tests, and print out the test data and the results on the screen. Sample printout format: Tests: [22, 26, 20, 24, 28, 18, 30, 15, 32, 26] Mean compressive strength: 24.10 Standard deviation: 5.38 Concrete compressive strength: 20.48Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started