1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Stella [2.4K]
3 years ago
10

Consider the brass alloy for which the stress-strain behavior is shown in the Animated Figure 7.12. A cylindrical specimen of th

is material 10.0 mm (0.3937 in.) in diameter and 100.6 mm (3.961 in.) long is pulled in tension with a force of 9970 N (2241 lbf). If it is known that this alloy has a value for Poisson's ratio of 0.35, compute
(a) the specimen elongation,
(b) the reduction in specimen diameter.

because the diameter decreases, enter a minus sign in your answer.

Engineering
1 answer:
sleet_krkn [62]3 years ago
8 0

Answer:

(a) 0.1509 mm

(b) 0.00525 mm

Explanation:

Stress, \sigma is given by

\sigma=\frac {F}{A} where F is force and A is area and area is given by \frac {\pi d^{2}}{4} hence

\sigma=\frac {4F}{\pi d^{2}} where d is the diameter. Substituting 9970 N for F and 10mm=0.01 m for d hence

\sigma=\frac {4*9970 N}{\pi 0.01m^{2}}=126941982.6 N/m^{2}

\sigma \approx 127 Mpa

From the attached stress-strain diagram, the stress of 127 Mpa corresponds to strain of 0.0015 and since strain is given by

\epsilon=\frac {\triangle l}{l} where\epsilon is the strain, \triangle l is elongation and l is original length and making elongation the subject

\triangle l= \epsilon \times l and substituting strain with 0.0015 and length l with 100.6 mm then

\triangle l=0.0015\times 100.6=0.1509 mm

(b)

Lateral strain is given by

\epsilon_{lat}=\frac {\triangle d}{d} and substituting -v\epsilon for \epsilon_{lat} where v is poisson ratio then

-v\epsilon=\frac {\triangle d}{d} and making \triangle d the subject then

\triangle d=-vd\epsilon and substituting 0.35 for v, 0.0015 for strain and 10 mm for d

\triangle d=-(0.35)*10*0.0015=-0.00525 mm and the negative sign indicates decrease in diameter

You might be interested in
Stakeholders are people or organizations who do what?
Soloha48 [4]

Answer:

B. fund the project

D. are partners with a vested interest

Explanation:

If you look at the definition of the word stakeholder, these options match the definition which is why I chose B and D

4 0
3 years ago
Read 2 more answers
Elizabeth has been asked to design a pool umbrella that can withstand wind speeds of up to 30 miles per hour. Now that she under
zlopas [31]

Answer:

The correct option is;

D. She will need to research the problem even more

Explanation:

In other to properly design the pool umbrella that will be reliable and meet the needs of the particular customer, she will need to carry out a basic research about the environment where the pool umbrella is to be used, the presence of other factors that can impact on an idea for the pool umbrella.

She can then proceed to create a concept about the proposed pool umbrella, which is in the form of a paper concept

She will then proceed to carry out a more detailed study based on the paper concept that will consist of concept technology and application as well as functionality.

7 0
4 years ago
Read 2 more answers
3. (5%) you would like to physically separate different materials in a scrap recycling plant. describe at least one method that
Likurg_2 [28]

One of the methods that are used to separate polymers, aluminium alloys, and steels from one another is the Gravitation Separation method.

One straightforward technique is to run the mixture through a magnet, which will keep the steel particles on the magnet and separate them from the polymer.

What is the Gravitation Separation method?

When it is practicable to separate two components using gravity, i.e., when the combination's constituent parts have different specific weights, gravity separation is a technique used in industry. The components can be in suspension or in a dry granular mixture.

Polymers, Steel and Aluminium alloys can be readily split apart. The technique depends on how the two components are combined. The approach used is gravitational density. Due to the significant difference in relative specific mass values between steel and polymers (which range from 1.0 to 1.5), it is possible to separate them using flotation in a liquid that is safe and has the right density.

Therefore, the Gravitation Separation method is used to separate polymers, aluminium alloys and steels.

To learn more about the Polymer from the given link

brainly.com/question/2494725

#SPJ4

8 0
2 years ago
(40 points) Program the following sorting algorithms: InsertionSort, MergeSort, and QuickSort. There are 9 test les uploaded for
babunello [35]

Answer:

Explanation:

MERGE SORT

#include<stdlib.h>

#include<stdio.h>

#include<string.h>

void merge(int arr[], int l, int m, int r)

{

int i, j, k;

int n1 = m - l + 1;

int n2 = r - m;

 

int L[n1], R[n2];

for (i = 0; i < n1; i++)

L[i] = arr[l + i];

for (j = 0; j < n2; j++)

R[j] = arr[m + 1+ j];

i = 0;

j = 0;

k = l;

while (i < n1 && j < n2)

{

if (L[i] <= R[j])

{

arr[k] = L[i];

i++;

}

else

{

arr[k] = R[j];

j++;

}

k++;

}

while (i < n1)

{

arr[k] = L[i];

i++;

k++;

}

while (j < n2)

{

arr[k] = R[j];

j++;

k++;

}

}

void mergeSort(int arr[], int l, int r)

{

if (l < r)

{

int m = l+(r-l)/2;

mergeSort(arr, l, m);

mergeSort(arr, m+1, r);

merge(arr, l, m, r);

}

}

void printArray(int A[], int size)

{

int i;

for (i=0; i < size; i++)

printf("%d ", A[i]);

printf("\n");

}

int main()

{

int arr[1000] = {0};

int arr_size =0;

int data;

char file1[20];

strcpy(file1,"data.txt");

FILE *fp;

fp = fopen(file1,"r+");

if (fp == NULL) // if file not opened return error

{

perror("Unable to open file");

return -1;

}

else

{

fscanf (fp, "%d", &data);    

arr[arr_size]=data;

arr_size++;

while (!feof (fp))

{  

fscanf (fp, "%d", &data);  

arr[arr_size]=data;

arr_size++;    

}

}

printf("Given array is \n");

printArray(arr, arr_size);

mergeSort(arr, 0, arr_size - 1);

printf("\nSorted array Using MERGE SORT is \n");

printArray(arr, arr_size);

return 0;

}

3 0
3 years ago
Briefly discuss if it would be better to operate with pumps in parallel or series and how your answer would change as the steepn
Aleksandr [31]

Answer:

1) In series, the combined head will move from point 1 to point 2 in theory. However, practically speaking, the combined head and flow rate will move along the system curve to point 3.

2) In parallel, the combined head and volume flow will move along the system curve from point 1 to point 3.

Explanation:

1) Pump in series:

When two or more pumps are connected in series, their resulting pump performance curve will be obtained by adding their respective heads at the same flow rate as shown in the first diagram attached.

In the first diagram, we have 3 curves namely:

- system curve

- single pump curve

- 2 pump in series curve

Also, we have points labeled 1, 2 and 3.

- Point 1 represents the point that the system operates with one pump running.

- Point 2 represents the point where the head of two identical pumps connected in series is twice the head of a single pump flowing at the same rate.

- Point 3 is the point where the system is operating when both pumps are running.

Now, since the flowrate is constant, the combined head will move from point 1 to point 2 in theory. However, practically speaking, the combined head and flow rate will move along the system curve to point 3.

2) Pump in parallel:

When two or more pumps are connected in parallel, their resulting pump performance curve will be obtained by adding their respective flow rates at same head as shown in the second diagram attached.

In the second diagram, we have 3 curves namely:

- system curve

- single pump curve

- 2 pump in series curve

Also, we have points labeled 1, 2 and 3

- Point 1 represents the point that the system operates with one pump running.

- Point 2 represents the point where the flow rate of two identical pumps connected in series is twice the flow rate of a single pump.

- Point 3 is the point where the system is operating when both pumps are running.

In this case, the combined head and volume flow will move along the system curve from point 1 to point 3.

5 0
3 years ago
Other questions:
  • What are the two types of pumps in compressors?
    5·2 answers
  • A 0.2‐kg particle P is constrained to move along the vertical‐plane circular slot of radius r = 0.5 m and is confined to the slo
    5·1 answer
  • If you measure 0.7 V across a diode, the diode is probably made of
    6·1 answer
  • Amorphous material is characterized by by a) organized crystalline structure; b) high hardness and ductility c)the chaotic arran
    6·1 answer
  • 6. What living area room must be adjacent to the kitchen?
    14·1 answer
  • Write a SELECT statement that returns these column names and data from the Products table: product_name The product_name column
    9·1 answer
  • A student lives in an apartment with a floor area of 60 m2 and ceiling height of 1.8 m. The apartment has a fresh (outdoor) air
    14·1 answer
  • Select a research proposal topic that relates to electrical and electronics engineering and write a proposal report taking into
    12·1 answer
  • The raised areas between the grooves in a rifled bore are called:.
    10·1 answer
  • Optimum engine oil pressure at operating temperature and moderate engine load should be __________ ps
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!