CSCE 155N Fall Homework Assignment 2: Stress-Strain Curve. Assigned: September 11, 2012 Due: October 02, 2012

Size: px
Start display at page:

Download "CSCE 155N Fall Homework Assignment 2: Stress-Strain Curve. Assigned: September 11, 2012 Due: October 02, 2012"

Transcription

1 CSCE 155N Fall 2012 Homework Assignment 2: Stress-Strain Curve Assigned: September 11, 2012 Due: October 02, 2012 Note: This assignment is to be completed individually - collaboration is strictly prohibited. Points: 100 points Objectives The objectives of this homework assignment: 1. Master the use of standard I/O in Matlab. 2. Master the use of plots in Matlab. 3. Master the use of selection statements in Matlab. 4. Master the use of loops in Matlab. 5. Familiarize with the use of File Input/Output (I/O) in Matlab. 6. Familiarize with the user of functions in Matlab. 7. Familiarize with the use of matrices in Matlab. 8. Familiarize with the concept of control statements (selection and loop) in solution design 9. Be exposed to the concept of problem decomposition and the design-implementationtest cycle. 10. Appreciate and understand the application of computational thinking in solving engineering problems Memo To: The programmer Memo From: Your boss Well, another job has come in! And you are my only hope! This time, the customer is from a mechanical engineering company. They want a program that takes in the parameters of a material specimen, loading force and elongation corresponding to the load, and returns the area of the specimen and the stress- strain curve. I don t know much about the setup all I have is this description of the tensile testing and the stress- strain curve. Please take care of this task! Problem Description Have a nice day! Your boss Studying the properties of different materials is a crucial field in mechanical engineering, because it helps engineers select appropriate materials for different engineering applications. Generally, materials undergo a set of tests; different tests give information about a specific property of the studied material. One of the well-known tests is the tension testing. In tension testing, a uniaxial tension force is applied to a sample of the material (specimen) we are interested to study. This sample is called tensile specimen. A typical tensile specimen (see Figure 1) has enlarged ends or shoulders used for gripping, and a gage section. The two most commonly used cross section shapes of the tensile specimen are the circular and square cross sections. In both of them, the gage section has a smaller cross sectional area than the shoulders. 1

2 The tension testing involves mounting the specimen in a machine, from the two shoulders, and then tension force is applied until it fractures. (Note from boss: This is cool!) As the load increases, the test sample elongates. This elongation in the gage section is recorded against the applied load (force). F F L o Figure 1: Typical tensile specimen An example of data recorded during a real tension testing is shown in the following table: Applied Force (N) Elongation (mm) Two important values are calculated from the force applied and the elongation experienced by the specimen, namely: engineering stress and engineering strain, respectively. Engineering stress (σ) is a value that describes how the body having the force exerted upon it counteracts the pressure that results from this force, and it is defined as: σ =!!! N/m! (1) where F is the applied force, A! is the cross section area of the gage section assuming a circular specimen with diameter D!, or a specimen with a square cross section of side length D!. Engineering strain (ε) describes the deformation and change of the specimen's length. By definition, it is the ratio between the change in the length of the specimen and the initial length before the test., and it is defined as: 2

3 ε =!!!! =!!!!!! (2) where ΔL, L!, and L are the change in gage length, initial gage length, and the final gage length, respectively. Strain is a unit-less value since it represents a ratio of parameters of the same units. Hence, you have to make sure of unit consistency, i.e., that all of the lengths used are of the same unit (either meters or millimeters). A typical stress-strain curve is shown in Figure 2. IMPORTANT: For each force-elongation pair, we have to compute the corresponding engineering stress and strain. However, usually a large set of data points are recorded in this kind of material tests. This makes the process of calculating the engineering stress and strain at each point manually, a time-consuming process. (Note from boss: Consider using loops!) As you may have noticed, a stress-strain curve for a ductile material always starts with a linear region. This linear region is called the elastic range. In the elastic range if the load is removed, the material goes back to its original length, i.e., the deformation exists as long as the load is applied but the deformation disappears if the load is removed. However, after the elastic range ends, the plastic range starts, in which the material suffers permanent deformation. In other words, the material cannot get back to its original state even if the load is removed. Figure 2: Stress-Strain Curve. Figure 3: Stress-Strain curve (Colored Elastic Region) Using visuals are helpful in making data interpretation an easy process. One way to make it easy for the engineers to recognize different phases of a material's stress-strain curve is to use colors to differentiate these different phases. For example, we can use the green color to represent the elastic range (the straight line in the curve), as shown in Fig. 3. To identify this elastic region, we need to identify the points that form it. And, in order to identify these points, we have to characterize them first. In other words, we need to find the common characteristics that the points in the elastic range have in common, and make them different from other points in the curve. Let's have a closer look at the given data, so we can identify these characteristics. In Table 1 below, we can see, the segments that define the elastic region are all of the same slope value, which is equal to 56,332. This makes them different from 3

4 all other points, because any other consecutive points that form a segment that has this exact slope, should be part of this straight line. Point number (i) Applied Force (N) Elongation (mm) Stress (MPa) Strain Slope of the segment (i, i+1) Table 1. Points and interactions between applied force and elongation, and the slope of each successive pair of points (segment). You tasks are as follows: 1. Design and implement a program that takes in an input file with the following format. a. The type of the specimen's cross section, either circular or square. (You need to give the user the option of choosing either. You must use either an "if" or a "switch" statement in your solution.) b. The diameter (or the side length) of the specimen D! in millimeters. If the user selects 1 as an answer for the previous step, then the question should ask him/her for the diameter, and if s/he selects 2, the question should ask for the side length. c. The initial length of the specimen L! in millimeters. 2. Load the two vectors of the loads and resultant elongations from two input files, ForceVector.dat and ElongationVector.dat, respectively. Note: We will provide two sample input files on the course website at: 4

5 3. Calculate the engineering stress σ a. Calculate the cross section area A! (based on the inputs of the user in 1-b and 1-c). b. Design a "for" loop that uses the cross-sectional area A! (found in 2-a) and the vector of forces applied to find the engineering stress at each load applied using Equation (1). 4. Calculate the engineering strain (ε) a. Design a "for" loop that uses both; the initial length of the specimen L! and the vector of the resultant elongations to calculate the engineering strain using Equation (2). 5. Calculate the slopes of the segments. In the following an illustration of how to find the slope. For any two points on the straight line A = (x!, y! ) and B = (x!, y! ), the slope is defined as: slope = y! y! x! x! 6. Define a vector to store the indices of the set of points that form the elastic region. Of course you do not know the length of this vector ahead of time. 7. Use a "while" loop to fill in this vector of indices. You should scan the vector of slopes you formed in Step 4, and check if the slope satisfies the condition that characterizes the points in the elastic range or not. If yes, then the indices of the two points that form this segment should be placed in the vector of indices. Generally, we take the first slope, which corresponds to the first segment, as the condition. Then any other segment has a slope that matches this condition, is considered an extension of the first segment For example, in the given problem, the condition of an elastic region is "while the slope is equal to 56,332, place the point in the vector of the elastic range". Scanning the vector of slopes, we find that the first slope is 56,332, and the indices 1 and 2 should be placed in the vector of Step 5, because these two points from the segment (1, 2) which has the slope 56,332. Then, we take the slope of the next segment (2, 3), and compare it with the condition 56,332. As we can see, the slope of the segment (2, 3) satisfies the condition, and hence, we should place the index 3 in the vector (because 2 has already been placed there). The while loop should stop once the slope value is no longer 56,111, in this example. (Note: In our test case, we will use different set of values and thus the condition will not be always 56,111. But it will always be based on the slope value of the first segment derived from the input points.) 8. The output of the program should show the following: a. The cross-sectional area A! b. A matrix of size (M x 5). Columns from 1 to 5 represent the load, length, stress and strain and slopes, respectively. (Note: In the table shown in the previous page, each cell in the vector of slopes is centered offset between two of the data points, this is done just to illustrate that this slope is obtained using these two data points. However, in Matlab, we will not be able to generate table with such an offset; instead, a segment s slope is aligned with the row of the first point of the segment. Please see the sample output in the next page.) c. The vector of the indices of the points that form the elastic region. 9. Generate plots 5

6 a. The stress-strain curve must be plotted. This curve shows the relation between the stress and the strain you calculated previously in Steps 2 and 3. This graph should show the elastic range plotted in green color, while the rest of the curve is plotted in the black color See Figure 3 for an example. A sample run of the required program is shown below. (Note: Bold texts are user input.) Sample Output (SSCalc) Welcome to SSCalc: Please enter the following: Specimen's Type (1-Circular 2-Square): 1 Diameter of the specimen (Do) in millimeter: 12.8 Length of the specimen (Lo) in millimeter: 50.8 Filename for the load s vector in N: ForceVector Filename for the elongation s vector in millimeter: ElongationVector Output: Cross-sectional area (Ao) in mm^2= The values of the stress and strain are shown in the following table Load(N)-Length(mm)-Stress(MPa)-Strain - Slope SSvalues_output= 1.0e+04 *

7 Elastic_Rregion_Indices: Thank you for using SSCalc. Note: The "..." is used to split a long vector of input into two lines as shown above. IMPORTANT: Note that this program will be more complicated than the one you did to solve the chemical engineering problem last week. Thus, you should consider using functions to increase the modularity of your solution. That means, you should have multiple m-files in your solution package. Your boss will be looking at the quality of modularity of your work. (Hint: Think about how to break this task into multiple, smaller steps, and how each step is to process an input and then return an output to be used by the subsequent step.) Challenge - Extra Credit (10 points) As mentioned above, after the elastic range, the plastic range begins. This transition in the properties of the material concerns the designers, because it has a great impact on the design calculations. For example, while designing certain mechanical application, the engineers should know the maximum load expected to be applied to this application; and subsequently, based on this expected maximum load, the designers should use a material that will remain in its elastic range even under this maximum load. That is why it is very important to know the stress at which the elastic range ends and the plastic range starts, which is called the yield strength σ!. Sometimes this yield strength is clear and can be easily detected. But sometimes the material s properties make it hard to be detected. For such materials, a method called the offset yield method is used to determine the yield strength. In the offset yield method, a straight line that is parallel to the elastic range is plotted. This line crosses the x-axis at the point corresponding to ε = 2%. The intersection point of this straight line with the stress-strain curve represents the yield strength point. Your task is to add to your program such that it plots the straight line of the offset yield method. The benefit of this addition is twofold: (1) it will save engineers time spent on drawing this line manually, and (2) since the engineers plot this line manually, there is a high probability of error while drawing, and consequently, the value of the yield strength observed might be erroneous. On the other hand, plotting this straight line using the computer will reduce the probability of this error. An example is shown in Figure 4. As we can see, the intersection between the straight line and the stress-strain curve is almost at 280 MPa. Hence, σ! = 280 MPa. Since this straight line is parallel to the line of the elastic range, then they have the same slope. So what you have to do is to use the slope of the elastic range, you have already computed in Step 6, along with the information that this straight line passes through the point (0.002,0), to get the equation of this straight line. You need to do these calculations using paper and pencil (you should document these calculations in a document file named ANALYSIS_Challenge.doc), and then use Matlab to plot it. Your code also should print the statement "The 2% straight line of the offset yield method" beside the plotted straight line, as shown in Figure 4. You can't write this 7

8 statement on the curve using the plot editor, you have to do it using the Matlab commands. (Hint: Consider using the functions "str" and "text".) IMPORTANT: Note that you have to adjust the x-axis scale to make sure that (1) the plot is readable and (2) the straight line of the offset yield method is clear, as shown in Figure 4. As a check for the correctness of your calculations and code, make sure that the point of intersection is located inside the range between 250 MPa and 300 MPa. You can do this step visually, and just write down your observation that it is located within this range. In other words, you do not need to verify this using Matlab. Figure 4: The 2% straight line in the offset yield method. Submission Procedure This assignment is due at the start of class (2:00 PM). Assignments five minutes late will NOT be accepted. It is highly recommended that you read the grading policy and grading guidelines on the course website for a complete explanation of how the assignments will be graded. Remember, your program should follow a good programming style, include plenty of comments both inline documentation and Matlabdoc documentation, and perform all of the functionality outlined above. Also, in the welcome message of your program, state whether you are implementing the extra credit functionality. There are two submission steps: (1) You must handin the following files on-line: Source files: SSCalc.m and other m-files and m-file functions Readme file: README Testing file: TEST (Also, if you complete the Challenge, please submit your input text file, TEST_Challenge, and a document that shows the work and calculations done by you, ANALYSIS_Challenge.) (2) You must submit a stapled paper copy of a coversheet, your source files, the README file, and the TEST file. Both of these steps must be done by the start of the class on the day the assignment is due. Please download this coversheet from the instructor s course website, under the Homework Assignments link. This coversheet allows the grader to give comments and categorize the points for your homework. 8

Stress-Strain Behavior

Stress-Strain Behavior Stress-Strain Behavior 6.3 A specimen of aluminum having a rectangular cross section 10 mm 1.7 mm (0.4 in. 0.5 in.) is pulled in tension with 35,500 N (8000 lb f ) force, producing only elastic deformation.

More information

Homework Assignment 2 Modeling a Drivetrain Model Accuracy Due: Friday, September 16, 2005

Homework Assignment 2 Modeling a Drivetrain Model Accuracy Due: Friday, September 16, 2005 ME 2016 Sections A-B-C-D Fall Semester 2005 Computing Techniques 3-0-3 Homework Assignment 2 Modeling a Drivetrain Model Accuracy Due: Friday, September 16, 2005 Description and Outcomes In this assignment,

More information

Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon

Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon ME 2016 A Spring Semester 2010 Computing Techniques 3-0-3 Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon Description and Outcomes In

More information

ME 2570 MECHANICS OF MATERIALS

ME 2570 MECHANICS OF MATERIALS ME 2570 MECHANICS OF MATERIALS Chapter III. Mechanical Properties of Materials 1 Tension and Compression Test The strength of a material depends on its ability to sustain a load without undue deformation

More information

Structural Metals Lab 1.2. Torsion Testing of Structural Metals. Standards ASTM E143: Shear Modulus at Room Temperature

Structural Metals Lab 1.2. Torsion Testing of Structural Metals. Standards ASTM E143: Shear Modulus at Room Temperature Torsion Testing of Structural Metals Standards ASTM E143: Shear Modulus at Room Temperature Purpose To determine the shear modulus of structural metals Equipment Tinius-Olsen Lo-Torq Torsion Machine (figure

More information

TINIUS OLSEN Testing Machine Co., Inc.

TINIUS OLSEN Testing Machine Co., Inc. Interpretation of Stress-Strain Curves and Mechanical Properties of Materials Tinius Olsen has prepared this general introduction to the interpretation of stress-strain curves for the benefit of those

More information

ME 243. Mechanics of Solids

ME 243. Mechanics of Solids ME 243 Mechanics of Solids Lecture 2: Stress and Strain Ahmad Shahedi Shakil Lecturer, Dept. of Mechanical Engg, BUET E-mail: sshakil@me.buet.ac.bd, shakil6791@gmail.com Website: teacher.buet.ac.bd/sshakil

More information

The objective of this experiment is to investigate the behavior of steel specimen under a tensile test and to determine it's properties.

The objective of this experiment is to investigate the behavior of steel specimen under a tensile test and to determine it's properties. Objective: The objective of this experiment is to investigate the behavior of steel specimen under a tensile test and to determine it's properties. Introduction: Mechanical testing plays an important role

More information

Mechatronics II Laboratory EXPERIMENT #1: FORCE AND TORQUE SENSORS DC Motor Characteristics Dynamometer, Part I

Mechatronics II Laboratory EXPERIMENT #1: FORCE AND TORQUE SENSORS DC Motor Characteristics Dynamometer, Part I Mechatronics II Laboratory EXPEIMENT #1: FOCE AND TOQUE SENSOS DC Motor Characteristics Dynamometer, Part I Force Sensors Force and torque are not measured directly. Typically, the deformation or strain

More information

Lecture 09 Combined Effect of Strain, Strain Rate and Temperature

Lecture 09 Combined Effect of Strain, Strain Rate and Temperature Fundamentals of Materials Processing (Part- II) Prof. Shashank Shekhar and Prof. Anshu Gaur Department of Materials Science and Engineering Indian Institute of Technology, Kanpur Lecture 09 Combined Effect

More information

WeatherHawk Weather Station Protocol

WeatherHawk Weather Station Protocol WeatherHawk Weather Station Protocol Purpose To log atmosphere data using a WeatherHawk TM weather station Overview A weather station is setup to measure and record atmospheric measurements at 15 minute

More information

Solid Mechanics Homework Answers

Solid Mechanics Homework Answers Name: Date: Solid Mechanics Homework nswers Please show all of your work, including which equations you are using, and circle your final answer. Be sure to include the units in your answers. 1. The yield

More information

Problem Set 3 September 25, 2009

Problem Set 3 September 25, 2009 September 25, 2009 General Instructions: 1. You are expected to state all your assumptions and provide step-by-step solutions to the numerical problems. Unless indicated otherwise, the computational problems

More information

1.105 Solid Mechanics Laboratory

1.105 Solid Mechanics Laboratory 1.105 Solid Mechanics Laboratory General Information Fall 2003 Prof. Louis Bucciarelli Rm 5-213 x3-4061 llbjr@mit.edu TA: Attasit Korchaiyapruk, Pong Rm 5-330B x 3-5170 attasit@mit.edu Athena Locker: /mit/1.105/

More information

Designing Information Devices and Systems I Fall 2017 Homework 3

Designing Information Devices and Systems I Fall 2017 Homework 3 EECS 6A Designing Information Devices and Systems I Fall 07 Homework 3 This homework is due September 8, 07, at 3:9. Self-grades are due September, 07, at 3:9. Submission Format Your homework submission

More information

Physics 141 Course Information

Physics 141 Course Information Physics 141 Course Information General Physics I - Mechanics Spring 2008 Instructors: Office Hours: Textbook: Online Homework: Disclaimer: Nikos Varelas 2134 SES (312) 996-3415 varelas@uic.edu Charles

More information

Activity Tensile Testing SIM

Activity Tensile Testing SIM Activity 2.3.2 Tensile Testing SIM Introduction Tensile testing provides engineers with the ability to verify and establish material properties related to a specific material. This verification process

More information

6.4 A cylindrical specimen of a titanium alloy having an elastic modulus of 107 GPa ( psi) and

6.4 A cylindrical specimen of a titanium alloy having an elastic modulus of 107 GPa ( psi) and 6.4 A cylindrical specimen of a titanium alloy having an elastic modulus of 107 GPa (15.5 10 6 psi) and an original diameter of 3.8 mm (0.15 in.) will experience only elastic deformation when a tensile

More information

Physics 141 Course Information

Physics 141 Course Information Physics 141 Course Information General Physics I - Mechanics Spring 2009 Instructors: Office Hours: Textbook: Online Homework: Disclaimer: Nikos Varelas 2134 SES (312) 996-3415 varelas@uic.edu Adrian Barkan

More information

MECE 3321 MECHANICS OF SOLIDS CHAPTER 3

MECE 3321 MECHANICS OF SOLIDS CHAPTER 3 MECE 3321 MECHANICS OF SOLIDS CHAPTER 3 Samantha Ramirez TENSION AND COMPRESSION TESTS Tension and compression tests are used primarily to determine the relationship between σ avg and ε avg in any material.

More information

Task 1 - Material Testing of Bionax Pipe and Joints

Task 1 - Material Testing of Bionax Pipe and Joints Task 1 - Material Testing of Bionax Pipe and Joints Submitted to: Jeff Phillips Western Regional Engineer IPEX Management, Inc. 20460 Duncan Way Langley, BC, Canada V3A 7A3 Ph: 604-534-8631 Fax: 604-534-7616

More information

1.105 Solid Mechanics Laboratory Fall 2003 Experiment 3 The Tension Test

1.105 Solid Mechanics Laboratory Fall 2003 Experiment 3 The Tension Test 1.105 Solid Mechanics Laboratory Fall 2003 Experiment 3 The Tension Test Our objective is to measure the Elastic Modulus of steel. The experiment comes in two parts. In the first, you will subject a steel

More information

BioMechanics and BioMaterials Lab (BME 541) Experiment #5 Mechanical Prosperities of Biomaterials Tensile Test

BioMechanics and BioMaterials Lab (BME 541) Experiment #5 Mechanical Prosperities of Biomaterials Tensile Test BioMechanics and BioMaterials Lab (BME 541) Experiment #5 Mechanical Prosperities of Biomaterials Tensile Test Objectives 1. To be familiar with the material testing machine(810le4) and provide a practical

More information

Introduction. Pre-Lab Questions: Physics 1CL PERIODIC MOTION - PART II Spring 2009

Introduction. Pre-Lab Questions: Physics 1CL PERIODIC MOTION - PART II Spring 2009 Introduction This is the second of two labs on simple harmonic motion (SHM). In the first lab you studied elastic forces and elastic energy, and you measured the net force on a pendulum bob held at an

More information

MATERIALS FOR CIVIL AND CONSTRUCTION ENGINEERS

MATERIALS FOR CIVIL AND CONSTRUCTION ENGINEERS MATERIALS FOR CIVIL AND CONSTRUCTION ENGINEERS 3 rd Edition Michael S. Mamlouk Arizona State University John P. Zaniewski West Virginia University Solution Manual FOREWORD This solution manual includes

More information

1 332 Laboratories 1. 2 Computational Exercises 1 FEA of a Cantilever Beam... 1 Experimental Laboratory: Tensile Testing of Materials...

1 332 Laboratories 1. 2 Computational Exercises 1 FEA of a Cantilever Beam... 1 Experimental Laboratory: Tensile Testing of Materials... 1 332 Laboratories Contents 1 332 Laboratories 1 2 Computational Exercises 1 FEA of a Cantilever Beam.......................................... 1 Experimental Laboratory: Tensile Testing of Materials..........................

More information

Developing a Scientific Theory

Developing a Scientific Theory Name Date Developing a Scientific Theory Equipment Needed Qty Equipment Needed Qty Photogate/Pulley System (ME-6838) 1 String (SE-8050) 1 Mass and Hanger Set (ME-8967) 1 Universal Table Clamp (ME-9376B)

More information

ENGINEERING TRIPOS PART IIA 3C7: EXPERIMENTAL STRESS ANALYSIS

ENGINEERING TRIPOS PART IIA 3C7: EXPERIMENTAL STRESS ANALYSIS ENGINEERING TRIPOS PART IIA 3C7: EXPERIMENTAL STRESS ANALYSIS Experiment takes place in BNB-06 (follow downward stairs opposite Baker Building reception). OBJECTIVES To develop an appreciation of two different

More information

Chapter 1 Linear Equations. 1.1 Systems of Linear Equations

Chapter 1 Linear Equations. 1.1 Systems of Linear Equations Chapter Linear Equations. Systems of Linear Equations A linear equation in the n variables x, x 2,..., x n is one that can be expressed in the form a x + a 2 x 2 + + a n x n = b where a, a 2,..., a n and

More information

NOTE To improve the TA to class ratio, two groups will perform this experiment at one time. Group times are listed on the class website.

NOTE To improve the TA to class ratio, two groups will perform this experiment at one time. Group times are listed on the class website. Laboratory 3: Viscoelastic Characterization of Tendon using Harmonic Oscillations November 8/9, 2006 BIOEN 5201 Introduction to Biomechanics Instructor: Jeff Weiss TA: Heath Henninger Lab Quiz: A 10 point

More information

Lab 11 Simple Harmonic Motion A study of the kind of motion that results from the force applied to an object by a spring

Lab 11 Simple Harmonic Motion A study of the kind of motion that results from the force applied to an object by a spring Lab 11 Simple Harmonic Motion A study of the kind of motion that results from the force applied to an object by a spring Print Your Name Print Your Partners' Names Instructions April 20, 2016 Before lab,

More information

Experiment: Torsion Test Expected Duration: 1.25 Hours

Experiment: Torsion Test Expected Duration: 1.25 Hours Course: Higher Diploma in Civil Engineering Unit: Structural Analysis I Experiment: Expected Duration: 1.25 Hours Objective: 1. To determine the shear modulus of the metal specimens. 2. To determine the

More information

Project 2: Using linear systems for numerical solution of boundary value problems

Project 2: Using linear systems for numerical solution of boundary value problems LINEAR ALGEBRA, MATH 124 Instructor: Dr. T.I. Lakoba Project 2: Using linear systems for numerical solution of boundary value problems Goal Introduce one of the most important applications of Linear Algebra

More information

NORMAL STRESS. The simplest form of stress is normal stress/direct stress, which is the stress perpendicular to the surface on which it acts.

NORMAL STRESS. The simplest form of stress is normal stress/direct stress, which is the stress perpendicular to the surface on which it acts. NORMAL STRESS The simplest form of stress is normal stress/direct stress, which is the stress perpendicular to the surface on which it acts. σ = force/area = P/A where σ = the normal stress P = the centric

More information

ME 354, MECHANICS OF MATERIALS LABORATORY COMPRESSION AND BUCKLING

ME 354, MECHANICS OF MATERIALS LABORATORY COMPRESSION AND BUCKLING ME 354, MECHANICS OF MATERIALS LABATY COMPRESSION AND BUCKLING PURPOSE 01 January 2000 / mgj The purpose of this exercise is to study the effects of end conditions, column length, and material properties

More information

Math 98 - Introduction to MATLAB Programming. Spring Lecture 3

Math 98 - Introduction to MATLAB Programming. Spring Lecture 3 Reminders Instructor: Chris Policastro Class Website: https://math.berkeley.edu/~cpoli/math98/fall2016.html Assignment Submission: https://bcourses.berkeley.edu Homework 2 1 Due September 8th by 11:59pm

More information

Determination of Density 1

Determination of Density 1 Introduction Determination of Density 1 Authors: B. D. Lamp, D. L. McCurdy, V. M. Pultz and J. M. McCormick* Last Update: February 1, 2013 Not so long ago a statistical data analysis of any data set larger

More information

(1) Brass, an alloy of copper and zinc, consists of 70% by volume of copper and 30% by volume of zinc.

(1) Brass, an alloy of copper and zinc, consists of 70% by volume of copper and 30% by volume of zinc. PhysicsAndMathsTutor.com 1 Q1. (a) Define the density of a material....... (1) (b) Brass, an alloy of copper and zinc, consists of 70% by volume of copper and 30% by volume of zinc. density of copper =

More information

Multiple Representations: Equations to Tables and Graphs Transcript

Multiple Representations: Equations to Tables and Graphs Transcript Algebra l Teacher: It s good to see you again. Last time we talked about multiple representations. If we could, I would like to continue and discuss the subtle differences of multiple representations between

More information

You will return this handout to the instructor at the end of the lab period. Experimental verification of Ampere s Law.

You will return this handout to the instructor at the end of the lab period. Experimental verification of Ampere s Law. PHY222 LAB 6 AMPERE S LAW Print Your Name Print Your Partners' Names Instructions Read section A prior to attending your lab section. You will return this handout to the instructor at the end of the lab

More information

Electric Fields and Equipotentials

Electric Fields and Equipotentials OBJECTIVE Electric Fields and Equipotentials To study and describe the two-dimensional electric field. To map the location of the equipotential surfaces around charged electrodes. To study the relationship

More information

Laboratory 4 Bending Test of Materials

Laboratory 4 Bending Test of Materials Department of Materials and Metallurgical Engineering Bangladesh University of Engineering Technology, Dhaka MME 222 Materials Testing Sessional.50 Credits Laboratory 4 Bending Test of Materials. Objective

More information

June If you want, you may scan your assignment and convert it to a.pdf file and it to me.

June If you want, you may scan your assignment and convert it to a.pdf file and  it to me. Summer Assignment Pre-Calculus Honors June 2016 Dear Student: This assignment is a mandatory part of the Pre-Calculus Honors course. Students who do not complete the assignment will be placed in the regular

More information

Boiling Ice Lab. D) Materials A thermometer A beaker A stopwatch A hot plate Ice

Boiling Ice Lab. D) Materials A thermometer A beaker A stopwatch A hot plate Ice IP 644 Name: Date: Block: Boiling Ice Lab A) Introduction All matter can exist as a solid, liquid, or gas. The phase in which a substance exists depends on its temperature. The solid phase exists at a

More information

6A Lab Post-test. Instructions for printed version. Week 10, Fall 2016

6A Lab Post-test. Instructions for printed version. Week 10, Fall 2016 6A Lab Post-test Instructions for printed version Week 10, Fall 2016 This is the printed version of 6A Lab post-test. Please complete it during your final 6A lab, which will occur during week 10. DO NOT

More information

Mechatronics II Laboratory EXPERIMENT #1 MOTOR CHARACTERISTICS FORCE/TORQUE SENSORS AND DYNAMOMETER PART 1

Mechatronics II Laboratory EXPERIMENT #1 MOTOR CHARACTERISTICS FORCE/TORQUE SENSORS AND DYNAMOMETER PART 1 Mechatronics II Laboratory EXPEIMENT #1 MOTO CHAACTEISTICS FOCE/TOQUE SENSOS AND DYNAMOMETE PAT 1 Force Sensors Force and torque are not measured directly. Typically, the deformation or strain of some

More information

MATERIAL MECHANICS, SE2126 COMPUTER LAB 2 PLASTICITY

MATERIAL MECHANICS, SE2126 COMPUTER LAB 2 PLASTICITY MATERIAL MECHANICS, SE2126 COMPUTER LAB 2 PLASTICITY PART A INTEGRATED CIRCUIT An integrated circuit can be thought of as a very complex maze of electronic components and metallic connectors. These connectors

More information

Lab Week 6. Quiz #3 Voltage Divider Homework P11, P12 Kirchhoff's Voltage Law (KVL) Kirchhoff's Current Law (KCL) KCL + KVL Module Report tips

Lab Week 6. Quiz #3 Voltage Divider Homework P11, P12 Kirchhoff's Voltage Law (KVL) Kirchhoff's Current Law (KCL) KCL + KVL Module Report tips Lab Week 6 Quiz #3 Voltage Divider Homework P11, P12 Kirchhoff's Voltage Law (KVL) Kirchhoff's Current Law (KCL) KCL + KVL Module Report tips Quiz 3 Voltage Divider (20 pts.) Please clear desks and turn

More information

Machine Learning: Homework 5

Machine Learning: Homework 5 0-60 Machine Learning: Homework 5 Due 5:0 p.m. Thursday, March, 06 TAs: Travis Dick and Han Zhao Instructions Late homework policy: Homework is worth full credit if submitted before the due date, half

More information

Outline. Tensile-Test Specimen and Machine. Stress-Strain Curve. Review of Mechanical Properties. Mechanical Behaviour

Outline. Tensile-Test Specimen and Machine. Stress-Strain Curve. Review of Mechanical Properties. Mechanical Behaviour Tensile-Test Specimen and Machine Review of Mechanical Properties Outline Tensile test True stress - true strain (flow curve) mechanical properties: - Resilience - Ductility - Toughness - Hardness A standard

More information

Sample Alignment Part

Sample Alignment Part Sample Alignment Part Contents Contents 1. How to set Part conditions...1 1.1 Setting conditions... 1 1.2 Customizing scan conditions and slit conditions... 6 2. Sample alignment sequence...13 2.1 Direct

More information

Chapter 7. Highlights:

Chapter 7. Highlights: Chapter 7 Highlights: 1. Understand the basic concepts of engineering stress and strain, yield strength, tensile strength, Young's(elastic) modulus, ductility, toughness, resilience, true stress and true

More information

Appendix A: Laboratory Report Format

Appendix A: Laboratory Report Format Appendix A: Laboratory Report Format This appendix contains details on the format for formal written laboratory reports in the form of author's instructions. Author's Instructions for ME354 Formal Lababoratory

More information

Rolling marble lab. B. Pre-Lab Questions a) When an object is moving down a ramp, is its speed increasing, decreasing, or staying the same?

Rolling marble lab. B. Pre-Lab Questions a) When an object is moving down a ramp, is its speed increasing, decreasing, or staying the same? IP 614 Rolling marble lab Name: Block: Date: A. Purpose In this lab you are going to see, first hand, what acceleration means. You will learn to describe such motion and its velocity. How does the position

More information

θ Beam Pivot F r Figure 1. Figure 2. STATICS (Force Vectors, Tension & Torque) MBL-32 (Ver. 3/20/2006) Name: Lab Partner: Lab Partner:

θ Beam Pivot F r Figure 1. Figure 2. STATICS (Force Vectors, Tension & Torque) MBL-32 (Ver. 3/20/2006) Name: Lab Partner: Lab Partner: Please Circle Your Lab day: M T W T F Name: Lab Partner: Lab Partner: Project #1: Kinesthetic experiences with force vectors and torque. Project #2: How does torque depend on the lever arm? Project #1:

More information

ECEN 651: Microprogrammed Control of Digital Systems Department of Electrical and Computer Engineering Texas A&M University

ECEN 651: Microprogrammed Control of Digital Systems Department of Electrical and Computer Engineering Texas A&M University ECEN 651: Microprogrammed Control of Digital Systems Department of Electrical and Computer Engineering Texas A&M University Prof. Mi Lu TA: Ehsan Rohani Laboratory Exercise #4 MIPS Assembly and Simulation

More information

Who invented Calculus Newton or Leibniz? Join me in this discussion on Sept. 4, 2018.

Who invented Calculus Newton or Leibniz? Join me in this discussion on Sept. 4, 2018. Who invented Calculus Newton or Leibniz? Join me in this discussion on Sept. 4, 208. Sir Isaac Newton idology.wordpress.com Gottfried Wilhelm Leibniz et.fh-koeln.de Welcome to BC Calculus. I hope that

More information

Experiment 1: Linear Regression

Experiment 1: Linear Regression Experiment 1: Linear Regression August 27, 2018 1 Description This first exercise will give you practice with linear regression. These exercises have been extensively tested with Matlab, but they should

More information

AST101: Our Corner of the Universe Take Home Lab: Observing the Moon and the Sun

AST101: Our Corner of the Universe Take Home Lab: Observing the Moon and the Sun AST101: Our Corner of the Universe Take Home Lab: Observing the Moon and the Sun Name: NetID: Lab section number: 1 Introduction Objectives This lab is designed to help you understand the motion of the

More information

AAE 553 Elasticity in Aerospace Engineering

AAE 553 Elasticity in Aerospace Engineering AAE 553 Elasticity in Aerospace Engineering Professor Tyler N. Tallman email: ttallman@purdue.edu office location: ARMS 3214 office phone: (765) 494-2490 Course Description AAE 553 is a fundamental course

More information

Sample Alignment (2D detector) Part

Sample Alignment (2D detector) Part Sample Alignment (2D detector) Part Contents Contents 1 How to set Part conditions...1 1.1 Setting conditions... 1 1.2 Customizing scan conditions and slit conditions... 6 2 Sample alignment sequence...13

More information

Lab 1: Handout GULP: an Empirical energy code

Lab 1: Handout GULP: an Empirical energy code Lab 1: Handout GULP: an Empirical energy code We will be using the GULP code as our energy code. GULP is a program for performing a variety of types of simulations on 3D periodic solids, gas phase clusters,

More information

cos(θ)sin(θ) Alternative Exercise Correct Correct θ = 0 skiladæmi 10 Part A Part B Part C Due: 11:59pm on Wednesday, November 11, 2015

cos(θ)sin(θ) Alternative Exercise Correct Correct θ = 0 skiladæmi 10 Part A Part B Part C Due: 11:59pm on Wednesday, November 11, 2015 skiladæmi 10 Due: 11:59pm on Wednesday, November 11, 015 You will receive no credit for items you complete after the assignment is due Grading Policy Alternative Exercise 1115 A bar with cross sectional

More information

Checkpoint Questions Due Monday, October 1 at 2:15 PM Remaining Questions Due Friday, October 5 at 2:15 PM

Checkpoint Questions Due Monday, October 1 at 2:15 PM Remaining Questions Due Friday, October 5 at 2:15 PM CS103 Handout 03 Fall 2012 September 28, 2012 Problem Set 1 This first problem set is designed to help you gain a familiarity with set theory and basic proof techniques. By the time you're done, you should

More information

4.MECHANICAL PROPERTIES OF MATERIALS

4.MECHANICAL PROPERTIES OF MATERIALS 4.MECHANICAL PROPERTIES OF MATERIALS The diagram representing the relation between stress and strain in a given material is an important characteristic of the material. To obtain the stress-strain diagram

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES. ALGEBRA I Part II 1 st Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES. ALGEBRA I Part II 1 st Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA I Part II 1 st Nine Weeks, 2016-2017 OVERVIEW Algebra I Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

COMS 6100 Class Notes

COMS 6100 Class Notes COMS 6100 Class Notes Daniel Solus September 20, 2016 1 General Remarks The Lecture notes submitted by the class have been very good. Integer division seemed to be a common oversight when working the Fortran

More information

Understanding 1D Motion

Understanding 1D Motion Understanding 1D Motion OBJECTIVE Analyze the motion of a student walking across the room. Predict, sketch, and test position vs. time kinematics graphs. Predict, sketch, and test velocity vs. time kinematics

More information

Using An Introduction to Structural Methods - An Interactive CD-ROM - In and Out of the Classroom

Using An Introduction to Structural Methods - An Interactive CD-ROM - In and Out of the Classroom Using An to Structural Methods - An Interactive CD-ROM - In and Out of the Classroom Tekla A. Harms, Amherst College taharms@amherst.edu H. Robert Burger, Smith College rburger@email.smith.edu TYPE OF

More information

Introduction to Engineering Analysis - ENGR1100 Course Description and Syllabus Tuesday / Friday Sections. Spring '13.

Introduction to Engineering Analysis - ENGR1100 Course Description and Syllabus Tuesday / Friday Sections. Spring '13. Introduction to Engineering Analysis - ENGR1100 Course Description and Syllabus Tuesday / Friday Sections Spring 2013 Back exams, HW solutions, and other useful links can be found at the following website:

More information

Calculating Bond Enthalpies of the Hydrides

Calculating Bond Enthalpies of the Hydrides Proposed Exercise for the General Chemistry Section of the Teaching with Cache Workbook: Calculating Bond Enthalpies of the Hydrides Contributed by James Foresman, Rachel Fogle, and Jeremy Beck, York College

More information

2 One-dimensional motion with constant acceleration

2 One-dimensional motion with constant acceleration 2 One-dimensional motion with constant acceleration Experiment objectives: 1. Achieve a better understanding of how to solve position, velocity and acceleration problems in one-dimensional motion with

More information

Elastic Properties of Solids (One or two weights)

Elastic Properties of Solids (One or two weights) Elastic properties of solids Page 1 of 8 Elastic Properties of Solids (One or two weights) This is a rare experiment where you will get points for breaking a sample! The recommended textbooks and other

More information

Math 3C Midterm 1 Study Guide

Math 3C Midterm 1 Study Guide Math 3C Midterm 1 Study Guide October 23, 2014 Acknowledgement I want to say thanks to Mark Kempton for letting me update this study guide for my class. General Information: The test will be held Thursday,

More information

Sample Questions for the ME328 Machine Design Final Examination Closed notes, closed book, no calculator.

Sample Questions for the ME328 Machine Design Final Examination Closed notes, closed book, no calculator. Sample Questions for the ME328 Machine Design Final Examination Closed notes, closed book, no calculator. The following is from the first page of the examination. I recommend you read it before the exam.

More information

Vectors and Vector Arithmetic

Vectors and Vector Arithmetic Vectors and Vector Arithmetic Introduction and Goals: The purpose of this lab is to become familiar with the syntax of Maple commands for manipulating and graphing vectors. It will introduce you to basic

More information

Donald P. Shiley School of Engineering ME 328 Machine Design, Spring 2019 Assignment 1 Review Questions

Donald P. Shiley School of Engineering ME 328 Machine Design, Spring 2019 Assignment 1 Review Questions Donald P. Shiley School of Engineering ME 328 Machine Design, Spring 2019 Assignment 1 Review Questions Name: This is assignment is in workbook format, meaning you may fill in the blanks (you do not need

More information

Designing Information Devices and Systems I Fall 2018 Homework 3

Designing Information Devices and Systems I Fall 2018 Homework 3 Last Updated: 28-9-5 :8 EECS 6A Designing Information Devices and Systems I Fall 28 Homework 3 This homework is due September 4, 28, at 23:59. Self-grades are due September 8, 28, at 23:59. Submission

More information

Homework 1 Solutions Probability, Maximum Likelihood Estimation (MLE), Bayes Rule, knn

Homework 1 Solutions Probability, Maximum Likelihood Estimation (MLE), Bayes Rule, knn Homework 1 Solutions Probability, Maximum Likelihood Estimation (MLE), Bayes Rule, knn CMU 10-701: Machine Learning (Fall 2016) https://piazza.com/class/is95mzbrvpn63d OUT: September 13th DUE: September

More information

3.032 Mechanical Behavior of Materials

3.032 Mechanical Behavior of Materials I. TEACHING TEAM Instructors Prof. Krystyn J. Van Vliet Prof. John B. Vander Sande II. WHAT AM I LEARNING? A. Lectures Week Day Date L# Topic Reading in Course Reader (see TOC) 1 W 09.05.07 1 Introduction

More information

LTM - LandScape Terrain Modeller

LTM - LandScape Terrain Modeller Define slope In the Ribbon New Sub Element, the slope must be typed in percentage % (+ Enter). A positive number will create a decreased slope, negative numbers will create an increased slope Default Floor

More information

CE 320 Structures Laboratory 1 Flexure Fall 2006

CE 320 Structures Laboratory 1 Flexure Fall 2006 CE 320 Structures Laboratory 1 Flexure Fall 2006 General Note: All structures labs are to be conducted by teams of no more than four students. Teams are expected to meet to decide on an experimental design

More information

Lab 4: Gauss Gun Conservation of Energy

Lab 4: Gauss Gun Conservation of Energy Lab 4: Gauss Gun Conservation of Energy Before coming to Lab Read the lab handout Complete the pre-lab assignment and hand in at the beginning of your lab section. The pre-lab is written into this weeks

More information

June Dear Future Algebra 2 Trig Student,

June Dear Future Algebra 2 Trig Student, June 016 Dear Future Algebra Trig Student, Welcome to Algebra /Trig! Since we have so very many topics to cover during our 016-17 school year, it is important that each one of you is able to complete these

More information

Modeling the Motion of a Projectile in Air

Modeling the Motion of a Projectile in Air In this lab, you will do the following: Modeling the Motion of a Projectile in Air analyze the motion of an object fired from a cannon using two different fundamental physics principles: the momentum principle

More information

Lab 1: Numerical Solution of Laplace s Equation

Lab 1: Numerical Solution of Laplace s Equation Lab 1: Numerical Solution of Laplace s Equation ELEC 3105 last modified August 27, 2012 1 Before You Start This lab and all relevant files can be found at the course website. You will need to obtain an

More information

Lab 5: Calculating an equilibrium constant

Lab 5: Calculating an equilibrium constant Chemistry 162 The following write-up is inaccurate for the particular chemicals we are using. Please have all sections up through and including the data tables ready before class on Wednesday, February

More information

PHYSICS LAB: CONSTANT MOTION

PHYSICS LAB: CONSTANT MOTION PHYSICS LAB: CONSTANT MOTION Introduction Experimentation is fundamental to physics (and all science, for that matter) because it allows us to prove or disprove our hypotheses about how the physical world

More information

1 of 5 10/4/2009 8:45 PM

1 of 5 10/4/2009 8:45 PM http://sessionmasteringphysicscom/myct/assignmentprint?assignmentid= 1 of 5 10/4/2009 8:45 PM Chapter 8 Homework Due: 9:00am on Wednesday October 7 2009 Note: To understand how points are awarded read

More information

Motion II. Goals and Introduction

Motion II. Goals and Introduction Motion II Goals and Introduction As you have probably already seen in lecture or homework, and if you ve performed the experiment Motion I, it is important to develop a strong understanding of how to model

More information

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations Lab 2 Worksheet Problems Problem : Geometry and Linear Equations Linear algebra is, first and foremost, the study of systems of linear equations. You are going to encounter linear systems frequently in

More information

Introduction. Pre-Lab Questions: Physics 1CL PERIODIC MOTION - PART II Fall 2009

Introduction. Pre-Lab Questions: Physics 1CL PERIODIC MOTION - PART II Fall 2009 Introduction This is the second of two labs on simple harmonic motion (SHM). In the first lab you studied elastic forces and elastic energy, and you measured the net force on a pendulum bob held at an

More information

ALGEBRA 1 FINAL EXAM 2006

ALGEBRA 1 FINAL EXAM 2006 Overall instructions: Your Name Teacher ALGEBRA FINAL EXAM 2006 There is a mix of easier and harder problems. Don t give up if you see some questions that you don t know how to answer. Try moving on to

More information

Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Homework 2

Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Homework 2 EECS 16A Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Homework 2 This homework is due February 6, 2017, at 23:59. Self-grades are due February 9, 2017, at

More information

Creep. Creep behavior of viscoelastic polymeric materials

Creep. Creep behavior of viscoelastic polymeric materials B1 Version: 2.2_EN Date: 15. March 2018. BUDAPEST UNIVERSITY OF TECHNOLOGY AND ECONOMICS FACULTY OF MECHANICAL ENGINEERING DEPARTMENT OF POLYMER ENGINEERING Creep Creep behavior of viscoelastic polymeric

More information

MATERIAL MECHANICS, SE2126 COMPUTER LAB 3 VISCOELASTICITY. k a. N t

MATERIAL MECHANICS, SE2126 COMPUTER LAB 3 VISCOELASTICITY. k a. N t MATERIAL MECHANICS, SE2126 COMPUTER LAB 3 VISCOELASTICITY N t i Gt () G0 1 i ( 1 e τ = α ) i= 1 k a k b τ PART A RELAXING PLASTIC PAPERCLIP Consider an ordinary paperclip made of plastic, as they more

More information

PHY 221 Lab 9 Work and Energy

PHY 221 Lab 9 Work and Energy PHY 221 Lab 9 Work and Energy Name: Partners: Before coming to lab, please read this packet and do the prelab on page 13 of this handout. Goals: While F = ma may be one of the most important equations

More information

Data Structure and Algorithm Homework #1 Due: 2:20pm, Tuesday, March 12, 2013 TA === Homework submission instructions ===

Data Structure and Algorithm Homework #1 Due: 2:20pm, Tuesday, March 12, 2013 TA   === Homework submission instructions === Data Structure and Algorithm Homework #1 Due: 2:20pm, Tuesday, March 12, 2013 TA email: dsa1@csie.ntu.edu.tw === Homework submission instructions === For Problem 1, submit your source code, a Makefile

More information

Physics 8, Fall 2017, Homework #6. Due at start of class on Friday, October 20, 2017

Physics 8, Fall 2017, Homework #6. Due at start of class on Friday, October 20, 2017 Physics 8, Fall 2017, Homework #6. Due at start of class on Friday, October 20, 2017 Problems marked with (*) must include your own drawing or graph representing the problem and at least one complete sentence

More information

v Prerequisite Tutorials GSSHA WMS Basics Watershed Delineation using DEMs and 2D Grid Generation Time minutes

v Prerequisite Tutorials GSSHA WMS Basics Watershed Delineation using DEMs and 2D Grid Generation Time minutes v. 10.1 WMS 10.1 Tutorial GSSHA WMS Basics Creating Feature Objects and Mapping Attributes to the 2D Grid Populate hydrologic parameters in a GSSHA model using land use and soil data Objectives This tutorial

More information