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
Katena32 [7]
2 years ago
6

Which of these processes uses a die and a press to form parts?

Engineering
1 answer:
Irina-Kira [14]2 years ago
4 0

The process of die forming that uses a die and a press to form parts from the given processes is called; C: Hydroforming

<h3>What are some of the steps in the die forming operations?</h3>

There are different types of die forming in sheet metal operations. Now, Hydroforming is a specialized type of die forming that uses a high pressure hydraulic fluid to press room temperature working material into a die.

Tailor Welding is a process of making welded blanks made from individual sheets of steel of different thickness, strength and even coating that are joined together by the use of laser welding.

Read more about Welding operations at; brainly.com/question/9450571

You might be interested in
A car is traveling at sea level at 78 mi/h on a 4% upgrade before the driver sees a fallen tree in the roadway 150 feet away. Th
Dmitrij [34]

Answer: V = 47.7 mi/hr

Explanation:

first we calculate elements of aero-dynamic resistance

Ka = p/2 * CD * A.f

p is the density of air(0.002378 slugs/ft^3) for zero altitude, CD is the drag coefficient(0.35) and A.f is the front region of the vehicle

so we substitute

Ka = 0.002378/2 * 0.35 * 18

Ka = 0.00749

Now we calculate the final speed of the vehicle (V2) using the relation;

S = (YbW/2gKa)In[ (UW + KaV1^2 + FriW ± Wsinθg) / (UW + KaV2^2 + FriW ± Wsinθg)

so

WE SUBSTITUTE

150 = (1.04 * 2700 / 2 * 32.2 * 0.0075) In [(0.8 * 2700 + 0.0075 *(78mil/hr * 5280ft/1min * 1hr/3600s)^2 + 0.017 * 2700 ± 2700 * 0.04) / (0.8 * 2700 + 0.0075 * V2^2 + 0.017 * 2700 ± 2700 * 0.04)]

150 = (2808/0.483) In [(2160 + 98.16 + 153.9) / ( 2160 + 0.0075V2^2 + 153.9)]

150 = 5813.66 In [ (2160 + 98.16 + 153.9) / ( 2160 + 0.0075V2^2 + 153.9)]

divide both sides by 5813.66

0.0258 = In [ (2412.06) / ( 0.0075V2^2 + 2313.9)]

take the e^ of both side

e^0.0258 = (2412.06) / ( 0.0075V2^2 + 2313.9)

1.0261 = (2412.06) / ( 0.0075V2^2 + 2313.9)]

(0.0075V2^2 + 2313.9) = 2412.06 / 1.0261

(0.0075V2^2 + 2313.9) = 2350.7

0.0075V2^2 = 2350.7 - 2313.9

0.0075V2^2 = 36.8

V2^2 = 36.8 / 0.0075

V2^2 = 4906.6666

V2 = √4906.6666

V2 = 70.0476 ft/s

converting to miles per hour

V2 = 70.0476 ft/s * 1 mil / 5280 ft * 3600s / 1hr

V = 47.7 mi/hr

8 0
3 years ago
The end of a large tubular workpart is to be faced on a NC vertical boring mill. The part has an outside diameter of 38.0 in and
nata0808 [166]

Answer:

(a) the cutting time to complete the facing operation = 11.667mins

b) the cutting speeds and metal removal rates at the beginning= 12.89in³/min and end of the cut. = 8.143in³/min

Explanation:

check attached files below for answer.

5 0
3 years ago
g For this project you are required to perform Matrix operations (Addition, Subtraction and Multiplication). For each of the ope
Kruka [31]

Answer:

C++ code is explained below

Explanation:

#include<iostream>

using namespace std;

//Function Declarations

void add();

void sub();

void mul();

//Main Code Displays Menu And Take User Input

int main()

{

  int choice;

  cout << "\nMenu";

  cout << "\nChoice 1:addition";

  cout << "\nChoice 2:subtraction";

  cout << "\nChoice 3:multiplication";

  cout << "\nChoice 0:exit";

 

  cout << "\n\nEnter your choice: ";

 

  cin >> choice;

 

  cout << "\n";

 

  switch(choice)

  {

      case 1: add();

              break;

             

      case 2: sub();

              break;

             

      case 3: mul();

              break;

     

      case 0: cout << "Exited";

              exit(1);

     

      default: cout << "Invalid";      

  }

  main();  

}

//Addition Of Matrix

void add()

{

  int rows1,cols1,i,j,rows2,cols2;

 

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  //Taking First Matrix

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

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

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  //Printing 1st Matrix

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

  {

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

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

  //Taking Second Matrix

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

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

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  //Displaying second Matrix

  cout << "\n";

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

  {

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

          cout << m2[i][j] << " ";

      cout << "\n";

  }

  //Displaying Sum of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      cout << "\n";

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

      {

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

              cout << m1[i][j]+m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void sub()

{

  int rows1,cols1,i,j,k,rows2,cols2;

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

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

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

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

 

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

  {

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

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

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

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

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

 

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

  {

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

          cout << m1[i][j] << " ";

      cout << "\n";

  }

  cout << "\n";

  //Displaying Subtraction of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

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

      {

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

              cout << m1[i][j]-m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void mul()

{

  int rows1,cols1,i,j,k,rows2,cols2,mul[10][10];

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

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

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

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  cout << "\n";

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

  {

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

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

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

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

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  cout << "\n";

  //Displaying Matrix 2

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

  {

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

          cout << m2[i][j] << " ";

      cout << "\n";

  }

     

  if(cols1!=rows2)

      cout << "operation is not supported";

  else

  {

      //Initializing results as 0

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

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

  mul[i][j]=0;

// Multiplying matrix m1 and m2 and storing in array mul.

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

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

  for(k = 0; k < cols1; k++)

  mul[i][j] += m1[i][k] * m2[k][j];

// Displaying the result.

  cout << "\n";

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

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

      {

      cout << " " << mul[i][j];

      if(j == cols2-1)

      cout << endl;

      }

      }  

  main();

 }

5 0
3 years ago
A cone penetration test was carried out in normally consolidated sand, for which the results are summarized below: Depth (m) Con
Cerrena [4.2K]

Answer:

hello your question is incomplete attached below is the missing equation related to the question  

answer : 40.389° , 38.987° , 38° , 39.869° , 40.265°

Explanation:

<u>Determine the friction angle at each depth</u>

attached below is the detailed solution

To calculate the vertical stress = depth * unit weight of sand

also inverse of Tan = Tan^-1

also qc is in Mpa while σ0 is in kPa

Friction angle at each depth

2 meters = 40.389°

3.5 meters  = 38.987°

5 meters = 38.022°

6.5 meters = 39.869°

8 meters = 40.265°

6 0
3 years ago
What tools are used to build a watch tower PLEASE HELP ME​
harkovskaia [24]

Answer:

The trunks were all cut at the same lenght, 9 Carolingian feet, easier to carry away and to build. The construction was built by a team of four people, using traditional tools such as a hand saw, clamp, gimlet, Catalan type axe, wood hammer, chisel, two-handed wood saw, heavy wood hammer and metal wedges.

Explanation:

8 0
2 years ago
Other questions:
  • The steel 4140 steel contains 0.4% C, however, it shows higher yield strength and ultimate strength than that of the 1045 (0.45%
    14·1 answer
  • 12.28 LAB: Output values in a list below a user defined amount - functions Write a program that first gets a list of integers fr
    13·1 answer
  • True/False
    15·1 answer
  • In the ______ phase of the organizational life cycle, the organization is usually very small and agile, focusing on new products
    8·1 answer
  • Always refill your gas tank well before
    6·1 answer
  • Whats is the purpose of the stator winding​
    13·1 answer
  • DE QUE MANERA LA ALEGRIA NOS AYUDA A CONSEGIR AMIGOS <br> ≤→ω←≥
    10·1 answer
  • Need help with these 3 ez questions pls help me.
    6·1 answer
  • If the old radiator is replaced with a new one that has longer tubes made of the same material and same thickness as those in th
    10·1 answer
  • 4. Long term marijuana use can cause
    12·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!