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
storchak [24]
3 years ago
12

Calculate pressure at the mid-plane of an annular cylinder of iron powder pressed using double-action press. The punch pressure

(i.e., applied pressure) is 100 MPa when the height of the pressed sample is 10 cm. The coefficient of friction is 0.1, radial-to-axial pressure ratio is 0.4, and the wall thickness of the annular compact is 2 cm.

Engineering
1 answer:
JulijaS [17]3 years ago
5 0

Answer:

81.87

Explanation:

Please kindly check attachment for the step by step solution of the given problem.

Solution as an attached file.

You might be interested in
Payment to beneficiaries who were named by<br> the insured person
Zanzabum
Death benefit from a Life insurance policy
4 0
3 years ago
For a flow rate of 212 cfs find the critical depth in (a) a rectangular channel with ????=6.5 ft, (b) a triangular channel with
Fofino [41]

Answer:

A. 3.21ft

B. 3.51ft

C. 2.95ft

D. 1.5275ft

Explanation:

A) Q =212 cu.f/s

Formula for critical depth of rectangular section is: dc =[(Q^2) /(b^2(g))]^1/3

Where dc =critical depth, ft

Q= quantity of flow or discharge, ft3/s

B= width of channel, ft (m)

g = acceleration due to gravity which is 9.81m/s2 or 32.185ft/s2

Now, from the question,

Q = 212 cu.f/s and b=6.5ft

Therefore, the critical depth is: [(212^2)/(6.5^2 x32. 185)]^(1/3)

To give ; critical depth= (44,944/1359.82)^(1/3) = 3.21ft

B. Formula for critical depth of a triangular section; dc = (2Q^2/gm^2)^(1/5)

From the question, Q =212 cu.f/s and m=1.6ft while g= 32.185ft/s2

Therefore, critical depth = [(212^2) /(1.6^2 x32. 185)] ^(1/5) = (44,944/84.466)^(1/5) = 3.51ft

C. For trapezoidal channel, critical depth(y) is derived from (Q^2 /g) = (A^3/T)

Where A= (B + my)y and T=(B+2my)

Now from the question, B=6.5ft and m=5ft.

Therefore, A= (6.5 + 2y)y and T=(6. 5 + 2(5y))= 6.5 + 10y

Now, let's plug the value of A and T into the initial equation to derive the critical depth ;

(212^2 /32.185) = [((6.5 + 2y)^3)y^3]/ (6.5 + 10y)

Which gives;

1396.43 = [((6.5 + 2y)^3)y^3]/ (6.5 + 10y)

Multiply both sides by 6.5 + 10y to get;

1396.43(6.5 + 10y) = [((6.5 + 2y)^3)y^3]

Factorizing this, we get y = 2. 95ft

D) Formula for critical depth of a circular section; dc =D/2[1 - cos(Ѳ/2)]

Where D is diameter of pipe and Ѳ is angle at critical depth in radians.

Angle not given, so we assume it's perpendicular angle is 90.

Since angle is in radians, therefore Ѳ/2 = 90/2 = 45 radians ; converting to degree, = 2578. 31

Therefore, dc = (6.5/2) (1 - cos (2578.31))

dc = 3.25(1 - 0.53) = 3.25 x 0.47 = 1.5275ft

8 0
3 years ago
⦁ An ideal Otto cycle has a compression ratio of 8. At the beginning of the compression process, air is at 95 kPa and 27°C, and
Anon25 [30]

Answer:

<u><em>note:</em></u>

<u><em>solution is attached in word form due to error in mathematical equation. furthermore i also attach Screenshot of solution in word due to different version of MS Office please find the attachment</em></u>

Download docx
8 0
4 years ago
Which of the following headlines about the French Revolution is not true?
Sever21 [200]

Answer:

d) "Napoleon Declares Himself Holy Roman Emperor"

Explanation:

The French Revolution is defined as a period of the major social upheaval which began in the year 1787 and lasted till year 1799. This revolution completely redefined the the very nature of the political power in France. and also the relationship between the rulers of France and the people they governed.

The 1789 Estates-General was the 1st meeting since year 1614 of the French Estates-General. It is a general assembly which represents the French estates of  realm.

During the French revolution was at peak, the National Assembly issued the Declaration of the rights of the man to the public.

Maximilien Robespierre was considered to be one of the most influential figure and most important statesman during the French Revolution.

Thus all the options (a),(b) and (c) are headlines about the French Revolution, except option (d).

3 0
3 years ago
Write a GUI-based program that plays a guess-the-number game in which the roles of the computer and the user are the reverse of
AURORKA [14]

Answer:

import javax.swing.*;

import java.awt.*;

import java.util.Random;

import java.awt.event.*;

public class Guess extends JFrame

{

   private static final long serialVersionUID = 1L;

   private JButton newGame;

   private JButton enter;

   private JButton exit;

   private JTextField guess;

   private JLabel initialTextLabel;

   private JLabel enterLabel;

   private JLabel userMessageLabel;

   private int randNum;

   private int userInput;

   private int maxtries = 0;

   public Guess()

   {

       super("Guessing Game");

       newGame = new JButton("New Game");

       exit = new JButton("Exit Game");

       enter = new JButton("Enter");

       guess = new JTextField(4);

       initialTextLabel = new JLabel("I'm thinking of a number between 1 and 100. Guess it!");

       enterLabel = new JLabel("Enter your guess.");

       userMessageLabel = new JLabel("");

       randNum = new Random().nextInt(100) + 1;

       setLayout(new FlowLayout());

       add(initialTextLabel);

       add(enterLabel);

       add(guess);

       add(newGame);

       add(enter);

       add(exit);

       add(userMessageLabel);

   

       setSize(500, 300);

       addWindowListener(new WindowAdapter()

       {

           public void windowClosing(WindowEvent e)

           {

               System.exit(0);

           }

       });

       newGameButtonHandler nghandler = new newGameButtonHandler();

       newGame.addActionListener(nghandler);

       ExitButtonHandler exithandler = new ExitButtonHandler();

       exit.addActionListener(exithandler);

       enterButtonHandler enterhandler = new enterButtonHandler();

       enter.addActionListener(enterhandler);

   }

   class newGameButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           setBackground(Color.ORANGE);

           guess.setEnabled(true);

           guess.setText("");

           enter.setEnabled(true);

           maxtries = 0;

           userMessageLabel.setText("");

           randNum = new Random().nextInt(100) + 1;

       }

   }

   class ExitButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           System.exit(0);

       }

   }

   class enterButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           userInput = Integer.parseInt(guess.getText());

           checkGuess(randNum);

      if(userInput > 100 )

          {

                               userMessageLabel.setText("invalid entry");

          }

       }

   }

   public void checkGuess(int randomNumber)

   {

       maxtries++;

     if(maxtries==10){

           userMessageLabel.setText("You Lose!!");

           guess.setEnabled(false);

           enter.setEnabled(false);

         

       }else if (userInput == randomNumber)

           {

               userMessageLabel.setText("Correct !");

           }

       else if (userInput > randomNumber)

           {

               userMessageLabel.setText("Too high");

           }

       else if (userInput < randomNumber)

           {

               userMessageLabel.setText("Too Low");

           }

   }

   public static void main(String[] args)

   {

       Guess game = new Guess();

       game.setVisible(true);

   }

}

8 0
3 years ago
Other questions:
  • How does a car batteray NOT die?
    13·1 answer
  • 100 points Im so bored lol
    11·2 answers
  • In a food processing facility, a spherical container of inner radius r1 = 40 cm, outer radius r2 = 41 cm, and thermal conductivi
    12·1 answer
  • What kind or kinds of engineers does take to design a drone and why?
    11·1 answer
  • A pump transfers water from a lake to a reservoir, which is located 29.2 m above the lake, at a rate of 11.5 L/s. Determine the
    12·1 answer
  • For binary flash distillation, we discussed in class that there are 8 variables (F, ZA, V, ya, L, XA, P and T) and 4 equations d
    10·1 answer
  • Which of the following is a possible consequence of poor measurement in construction as stated in the segment?
    14·1 answer
  • A furniture manufacturer purchases a drill press machine enabled with 5G and edge computing capabilities to keep the machine ope
    13·1 answer
  • A composite plane wall consists of a 5-in.-thick layer of insulation (ks = 0.029 Btu/h*ft*°R) and a 0.75-in.-thick layer of sidi
    11·1 answer
  • Which thematic group is involved in the transmission and generation of electrical power?
    10·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!