Compute the elastic modulus for the following metal alloys, whose stress-strain behaviors may be observed in the "Tensile Tests" module of Virtual Materials Science and Engineering (VMSE): (a) titanium, (b) tempered steel, (c) aluminum, and (d) carbon steel. How do these values compare with those presented in Table 6.1 for the same metals?

Answers

Answer 1

The elastic modulus for steel given in the table is 207 GPa, which is in reasonable agreement with this value E = 200.75 GPa

The elastic modulus is the slope in the linear elastic region:

б2 = б1 / Э2 - Э1

Since stress-strain curves for all of the metals/alloys pass through the o

rigin, and if we take σ1 = 0 then ε1 = 0. Determinations of σ2 and ε2 are possible by moving the cursor to some arbitrary point in the linear region of the curve and then reading corresponding values in the “Stress” and “Strain” windows that are located below the plot.

(a) A screenshot for the titanium alloy in the elastic region is shown below

Here the cursor point resides in the elastic region at a stress of 492.4 MPA (which is the value of σ2) at a strain of 0.0049 (which is the value of ε2). Thus, the elastic modulus is equal to

| 492.4-0

0.0049-0

E=100489.79 MPA

E=100.5 GPA

The elastic modulus for titanium given in the table is 107 GPA, which is in reasonably good agreement with this value.

(b) A screenshot for the tempered steel alloy in the elastic region is shown below

Here the cursor point resides in the elastic region at a stress of 916.7 MPA (which is the value of σ2) at a strain of 0.0045 (which is the value of ε2). Thus, the elastic modulus is equal to :

1916.7-0

0.0045 -0

E = 203711.11 MPA

E = 203.7 GPA

The elastic modulus for steel given in the table is 207 GPA, which is in good agreement with this value.

(c) A screenshot for the aluminum alloy in the elastic region is shown below.

Here the cursor point resides in the elastic region at a stress of 193.6 MPa (which is the value of σ2) at a strain of 0.0028 (which is the value of ε2). Thus, the elastic modulus is equal to:

193.6 – 0

0.0028 - 0

E = 69142.85 MPa

E = 69.14 GPa

The elastic modulus for aluminum given in the table is 69 GPa, which is in excellent agreement with this value.

(d) A screenshot for the carbon steel alloy in the elastic region is shown below

Here the cursor point resides in the elastic region at a stress of 160.6 MPa (which is the value of σ2) at a strain of 0.0008 (which is the value of ε2). Thus, the elastic modulus is equal to:

160.6 – 0

0.0008 - 0

E = 200750 MPa

E = 200.75 GPa

To learn more about elastic modulus
https://brainly.com/question/9980429
#SPJ4

Compute The Elastic Modulus For The Following Metal Alloys, Whose Stress-strain Behaviors May Be Observed

Related Questions

In the following gear train, Shaft A rotates at 200 rpm and shaft B rotates at 300 rpm in the directions indicated. Determine the speed of shaft C and its direction of rotation. N2 = 35; N3 = 25; N4 = 14; N5 = 46; No = 20; N, = 16

Answers

The speed of shaft C and its direction of rotation is 1160 rpm and C.C.W respectively.

What is speed?

The rate of distance travel is referred to as speed. The SI units for measuring speed are meters per second (m/s), but other units such as miles per hour (mph), kilometers per hour (km/h), centimeters per year (cm/yr), and feet per second (ft/s) can also be used.

Due to the fact that distance is the only factor taken into account, it is a scalar quantity. Speed will ALWAYS be positive and cannot ever be negative. In a car, the speedometer displays the distance traveled; even when going backward, the speedometer still displays a positive speed. Speed is measured by how far you go in a given amount of time.

Learn more about speed

https://brainly.com/question/13943409

#SPJ4

The code produces an error when trying to retrieve the formContext object by using the getFormContext method.

Answers

Using the knowledge in computational language in JAVA it is possible to write a code that  produces an error when trying to retrieve the formContext object by using the getFormContext method.

Writting the code:

function commonEventHandler(executionContext) {

   var formContext = executionContext.getFormContext();    

   var telephoneAttr = formContext.data.entity.attributes.get('telephone1');

   var isNumberWithCountryCode = telephoneAttr.getValue().substring(0,1) === '+';

   // telephoneField will be a form control if invoked from a form OnChange event;

   // telephoneField will be a editable grid GridCell object if invoked from editable grid OnChange event.

   var telephoneField = telephoneAttr.controls.get(0);

   if (!isNumberWithCountryCode) {

       telephoneField.setNotification('Please include the country code beginning with '+'.', 'countryCodeNotification');

   }

   else {

       telephoneField.clearNotification('countryCodeNotification');

   }

}

function onstop(executionContext) {

   var formContext = executionContext.getFormContext();

   var stop = formContext.getAttribute("abs_onstop").getValue();

   if (stop == true)

   {

       formContext.ui.setFormNotification("This account has been placed ON STOP!", "WARNING", "OnStop");

   }

   else

   {

       formContext.ui.clearFormNotification("OnStop");

   }

}

See more about JAVA at brainly.com/question/29897053

#SPJ1

You are given a data stream that has been compressed to a length of 100,000 bits, and told that it is the result of running an "ideal" entropy coder on a sequence of data. You are also told that the original data consists of samples of a continuous waveform, quantized to 2 bits per sample. The probabilities of the uncompressed values are as follows: 00 1/2 01 3/8 10 1/16 11 1/16. What (approximately) was the length of the uncompressed signal?

Answers

The uncompressed values from given data is s = 10 p(s) = 1/16

compressed file                                                                  uncompressed file

l=-(0.5 log 2 0.5)...= h bit/sample                                         2 bits sample

100,000 bits                                                                                     x bits

x bits ÷ 100000 bits = 2 bits/sample ÷ h bits sample

A data stream is the transmission of a series of coherent signals that have been digitally encoded to carry information. The sent symbols are often organized into a number of packets.

Data streaming is now commonplace. Any communication sent via the Internet is done so as a data stream. When speaking on a phone, the sound is transmitted as a data stream. Depending on the data format selected, Data Stream comprises several sorts of data. When determining the time of an event, attributes like the Timestamp attribute are helpful. An algorithmically encoded ID called "Subject ID" has been taken out of a cookie.

To learn more about Data Stream click here

brainly.com/question/14012546

#SPJ4

When an exception is thrown by code in its try block, the JVM begins searching the try statement for a catch clause that can handle it and passes control of the program to ________.
A the statement that appears immediately after the catch block
B the first catch clause that can handle the exception
C the last catch clause that can handle the exception
D each catch clause that can handle the exception

Answers

When an exception is thrown by code in its try block, the JVM begins searching the try statement for a catch clause that can handle it and passes control of the program to the first catch clause that can handle the exception.

What is catch clause?

In C#, a catch block is an optional section of code that is run after an exception is raised. The "catch" keyword is used in conjunction with the keywords "try" and "finally" to implement the catch block, which is a specific component of the exceptional handling construct and provides a method for implementing structured exception handling.

The code that is guarded and may result in an exception is included in a try block. It contains declarations that address exceptional situations and attempts to recover from such unforeseen circumstances.

The way to handle exceptions is formed by the catch block. The.NET run time may terminate the entire program if these issues are not resolved. For handling general or specific exceptions, use a catch block.

Learn more about catch block

https://brainly.com/question/14186450

#SPJ4

which nec article permits the disconnect switch for a large rooftop air conditioner to be mounted inside the unit?Step-by-step solution
Step 1 of 1
The compressor raises the energy level of the refrigerant.
Compressor raises the energy level of the refrigerant so that it can be condensed readily to a liquid. It serves as a pump to draw the expanded refrigerant gas from the evaporator. In addition, the compressor boosts the pressure of the gas and sends it to the condenser. The compression of the gas is necessary because this process adds the heat necessary to condense the gas to a liquid.

Answers

Article 440 permits the disconnect switch for a large rooftop air conditioner to be mounted inside the unit.  

Disconnecting devices must be placed so that they are easily visible from and reachable from the cooling or heating equipment. Installing the disconnecting device on or inside the air-conditioning or refrigeration equipment is allowed. An HVAC system known as a packed rooftop unit, also known as an RTU, is a small unit that includes all the parts required to supply conditioned air. Packaged rooftop units are primarily used in small and large commercial applications. They are extremely well-liked by commercial and industrial properties.

To learn more about air-conditioner click here

brainly.com/question/13143746

#SPJ4

Other Questions
" Future incidences effect the past" explain. a lathe rotating at is used to reduce the diameter of an long section of stock metal rod from a diameter of to at a feed rate of . the force measured at the tool post was down and pulling the tool toward the workpart. what is the specific energy of this material? write a while loop that will print out all the even numbers between 0 and 100 inclusive. each number should be printed on its own line. Answer the following question in 3-4 complete sentences. a statue resembling a long, thin feather. a life-like painting of a turkey walking on dirt with foliage behind it. the bronze sculpture (left) was created by constantin brancusi and is called bird in space. the watercolor (right) was painted by james audubon and is called wild turkey. describe the message each artist wanted to convey to the observer. A new patio is in the shape of a square. On a scale drawing, the vertices of the patio's coordinates are (10, 8. 5), (10, 1. 5), (3 ,1. 5 ), and (3, 8. 5). How long is each side of the patio?. What were the Southern responses to Reconstruction? The term pathos IS best defined asO an appeal to emotions.O the use of changes in tone. O an appeal to character.O the use of exaggeration. Select the reason that best supports Statement 6 in the given proof. Rahul is deciding between two parking garages. Garage A charges an initial fee of $12 to park plus $4 per hour. Garage B charges an initial fee of $6 to park plus $5 per hour. Let AA represent the amount Garage A would charge if Rahul parks for tt hours, and let BB represent the amount Garage B would charge if Rahul parks for tt hours. Write an equation for each situation, in terms of t,t, and determine which garage would be cheaper if Rahul needs to park for 10 hours. What is mandatory spending in the federal budget?OA. Government spending that is required by lawB. Government spending that comes from income taxesC. Government spending that does not create a deficitD. Government spending that can be changed by Congress .d. formed clampett, incorporated, as a c corporation (calendar tax year) with j.d., granny, and jethro, incorporated (a c corporation) as shareholders. on january 15, 2021, jethro, incorporated, sold all its shares to jane hathaway. on february 28, 2021, clampett, incorporated, filed an s corporation election, with j.d., granny, and jane all consenting to the election. what is the earliest effective date of the s election? why are parties important in government? What is the prime factorization of 20? 2 x 10 22 x 5 5 x 8 22 x 4 What is economics definition by Adam Smith? __ is defined as monitoring performance, comparing it with goals and taking corrective action as needed.Select one:a. Controllingb. Planningc. Leadingd. Measuringe. Organising 8. Rajat read the weather forecast of the coming week of July as shown here. Which of these items willmost probably be used by him in such weather?Monday-RainyTuesday-RainyWednesday-Party cloudyThursday-CloudyFriday-Party cloudya. umbrella, raincoat and woolen socksb. Raincoat, gumboots and woollen glovesc. Raincoat, umbrella and gumbootsd. Umbrella, gumboots and sweater What are the 7 types of angles with diagram? glaciers are made of compacted snow. what is most likely to happen to the global ocean conveyor belt if additional freshwater by melting glaciers is added to the north atlantic How do animals depend on photosynthesis? check both responses that correctly answer this question. One tablecloth 48 inches wide & 72 inches long. Want 2nd tablecloth 30 inches wide how long should it be