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
Daniel [21]
3 years ago
7

Shear plane angle and shear strain: In an orthogonal cutting operation, the tool has a rake angle = 16°. The chip thickness befo

re the cut = 0.32 mm and the cut yields a deformed chip thickness = 0.72 mm. Calculate (a) the shear plane angle and (b) the shear strain for the operation.
Engineering
1 answer:
Oduvanchick [21]3 years ago
6 0

Answer:

shear plane angle Ф = 26.28°

shear strain 2.20

Explanation:

given data

angle = 16°

chip thickness t1 = 0.32 mm

cut yields chip thickness t2 = 0.72 mm

solution

we get here first chip thickness ratio that is

chip thickness ratio = \frac{t1}{t2}    ................. 1

put here value

chip thickness ratio  = \frac{0.32}{0.72}  

chip thickness ratio r = 0.45

so here shear angle will be Ф

tan Ф = \frac{r*cos\alpha }{1-rsin\alpha}   ............2

tan Ф = \frac{0.45*cos16 }{1-rsin16}  

tan Ф = 0.4938

Ф = 26.28°

and

now we get shear strain that is

shear strain r = cot Ф + tan (Ф - α )   ................3

shear strain r  = cot(26.28) + tan (26.28 - 16 )

shear strain r = 2.20

You might be interested in
Which of the following is NOT true about hydraulic systems?
Dmitry [639]

Answer: The answer is D

D.In hydraulic systems, the operating temperatures must be kept between 170�F and 180°F 

Explanation:

The operating temperature for hydraulic systems is 140°F and below. Anything above this temperature is too high and will reduce the useful life of hydraulic fluid.

Most often problems associated with hydraulic systems are caused by fluid contaminated with particulate matter.

7 0
3 years ago
Un mol de gas ideal realiza un trabajo de 3000 J sobre su entorno, cuando se expande de manera isotermica a una temperatura de 5
Shkiper50 [21]

Answer:

74,4 litros

Explanation:

Dado que

W = nRT ln (Vf / Vi)

W = 3000J

R = 8,314 JK-1mol-1

T = 58 + 273 = 331 K

Vf = desconocido

Vi = 25 L

W / nRT = ln (Vf / Vi)

W / nRT = 2.303 log (Vf / Vi)

W / nRT * 1 / 2.303 = log (Vf / Vi)

Vf / Vi = Antilog (W / nRT * 1 / 2.303)

Vf = Antilog (W / nRT * 1 / 2.303) * Vi

Vf = Antilog (3000/1 * 8,314 * 331 * 1 / 2,303) * 25

Vf = 74,4 litros

3 0
3 years ago
What is the smallest variable type I can use to represent the number 27?
oksano4ka [1.4K]

Answer:3

Explanation:

Cuz

3 0
3 years ago
Water vapor at 100 psi, 500 F and a velocity of 100 ft./sec enters a nozzle operating at steady sate and expands adiabatically t
almond37 [142]

Answer:

a)exit velocity of the steam, V2 = 2016.8 ft/s

b) the amount of entropy produced is 0.006 Btu/Ibm.R

Explanation:

Given:

P1 = 100 psi

V1 = 100 ft./sec

T1 = 500f

P2 = 40 psi

n = 95% = 0.95

a) for nozzle:

Let's apply steady gas equation.

h_1 + \frac{(v_1) ^2}{2} = h_2 + \frac{(v_2)^2}{2}

h1 and h2 = inlet and exit enthalpy respectively.

At T1 = 500f and P1 = 100 psi,

h1 = 1278.8 Btu/Ibm

s1 = 1.708 Btu/Ibm.R

At P2 = 40psi and s1 = 1.708 Btu/Ibm.R

1193.5 Btu/Ibm

Let's find the actual h2 using the formula :

n = \frac{h_1 - h_2*}{h_1 - h_2}

n = \frac{1278.8 - h_2*}{1278.8 - 1193.5}

solving for h2, we have

h_2 = 1197.77 Btu/Ibm

Take Btu/Ibm = 25037 ft²/s²

Using the first equation, exit velocity of the steam =

(1278.8 * 25037) + \frac{(100)^2}{2}= (1197.77*25037)+ \frac{(V_2)^2}{2}

Solving for V2, we have

V2 = 2016.8 ft/s

b) The amount of entropy produced in BTU/ lbm R will be calculated using :

Δs = s2 - s1

Where s1 = 1.708 Btu/Ibm.R

At h2 = 1197.77 Btu/Ibm and P2 =40 psi,

S2 = 1.714 Btu/Ibm.R

Therefore, amount of entropy produced will be:

Δs = 1.714Btu/Ibm.R - 1.708Btu/Ibm.R

= 0.006 Btu/Ibm.R

3 0
3 years ago
Find the largest number. The process of finding the maximum value (i.e., the largest of a group of values) is used frequently in
salantis [7]

Answer:

See Explanation

Explanation:

Required

- Pseudocode to determine the largest of 10 numbers

- C# program to determine the largest of 10 numbers

The pseudocode and program makes use of a 1 dimensional array to accept input for the 10 numbers;

The largest of the 10 numbers is then saved in variable Largest and printed afterwards.

Pseudocode (Number lines are used for indentation to illustrate the program flow)

1. Start:

2. Declare Number as 1 dimensional array of 10 integers

3. Initialize: counter = 0

4. Do:

4.1 Display “Enter Number ”+(counter + 1)

4.2 Accept input for Number[counter]

4.3 While counter < 10

5. Initialize: Largest = Number[0]

6. Loop: i = 0 to 10

6.1 if Largest < Number[i] Then

6.2 Largest = Number[i]

6.3 End Loop:

7. Display “The largest input is “+Largest

8. Stop

C# Program (Console)

Comments are used for explanatory purpose

using System;

namespace ConsoleApplication1

{

   class Program

   {

       static void Main(string[] args)

       {

           int[] Number = new int[10];  // Declare array of 10 elements

           //Accept Input

           int counter = 0;

           while(counter<10)

           {

               Console.WriteLine("Enter Number " + (counter + 1)+": ");

               string var = Console.ReadLine();

               Number[counter] = Convert.ToInt32(var);

               counter++;                  

           }

           //Initialize largest to first element of the array

           int Largest = Number[0];

           //Determine Largest

           for(int i=0;i<10;i++)

           {

               if(Largest < Number[i])

               {

                   Largest = Number[i];

               }

           }

           //Print Largest

           Console.WriteLine("The largest input is "+ Largest);

           Console.ReadLine();

       }

   }

}

8 0
3 years ago
Other questions:
  • . Air at 200 C blows over a 50 cm x 75 cm plain carbon steel (AISI 1010) hot plate with a constant surface temperature of 2500 C
    6·1 answer
  • What is the velocity of flow in an asphalt channel that has a hydraulic radius of 3.404 m, length of 200 m and bed slope of 0.00
    5·1 answer
  • What is the Principle of Entropy Increase?
    9·1 answer
  • Why is low voltage advantageous in arc welding?
    5·1 answer
  • Liquid water enters an adiabatic piping system at 15°C at a rate of 8kg/s. If the water temperature rises by 0.2°C during flow d
    12·1 answer
  • From the information generated in Prob. 6.4 (from your previous Aero HW#1), calculate the maximum rate of climb for the single-e
    13·1 answer
  • 28. What is the value of a resistor in a series circuit if you measure 0.5 amps flowing through it and 15 volts
    10·1 answer
  • Agricultural economics is a study of how agriculture and business are related.<br> False<br> True
    15·1 answer
  • Which of the following uses pressure and flow to transmit power from one location to another?
    11·1 answer
  • The ______ number of a flow is defined as the ratio of the speed of flow to the speed of sound in the flowing fluid.
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!