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
slava [35]
3 years ago
9

A 356 cast aluminum test bar is tested in tension. The initial gage length as marked on the sample is 50mm and the initial diame

ter is 13.1mm. After fracture, the gage length is 53.7mm and the final diameter is 12.6mm. What is the UTS?
Engineering
1 answer:
Andreas93 [3]3 years ago
6 0

Answer

given,

l₀ = 50 mm

d₀ = 13.1 mm

l₁ = 53.7 mm

d₁ = 12.6 mm

Area of cross section

A = \dfrac{\pi}{4}d_0^2

A = \dfrac{\pi}{4} \times 13.1^2

A = 134. 782 mm²

The strain is

\epsilon = \dfrac{l_f-l_0}{l_0}

             = \dfrac{53.7-50}{50}

             = 0.074

the tensile modulus of A356 aluminium is

E = 72.4 GPa

The stress is

σ = εE

  = 72.4 × 10⁹ × 0.074

  = 5357.6 × 10⁶ Pa

σ = 5357.6 MPa

UTS = \dfrac{ultimate\ load}{cross\ sectional\ area}

UTS = \dfrac{ultimate\ load}{134.782}

You might be interested in
Assume you have four fins, each with a mass of 8.0 grams. What is the total weight of these four fins? (Hint: watch your units!)
soldier1979 [14.2K]
The answer is 32.0 grams
7 0
3 years ago
What happens when the arms of the milky move away from the center of the galaxy
Alina [70]
Well this question is though because we have never seen such a thing ! and to be quite frank when that happens , nothing good comes from it. Black Holes
6 0
3 years ago
11) If the evaporating pressure was 76 psig for r-22and the compressor inlet temperature was 65f, what would be the total superh
Karolina [17]
Saturated Pressure Temperature chart for R-22 shows 45 degF at 76 psig
65-45= 20 degF superheat



7 0
3 years ago
Why is it called field effect transistor​
Mrac [35]

Answer:

The field-effect transistor (FET) is a type of transistor which uses an electric field to control the flow of current.

FET is named field effect transistor as field effect is producing, but in BJT also field effect will produce. :)

5 0
3 years ago
The second programming project involves writing a program that accepts an arithmetic expression of unsigned integers in postfix
Tpy6a [65]

Answer:

Explanation:

Note: In case of any queries, just comment in box I would be very happy to assist all your queries

SourceCode:

// MyGUI.java:

// Import packages

import java.awt.FlowLayout;

import java.awt.GridLayout;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

import java.util.EmptyStackException;

import java.util.Stack;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JTextField;

import javax.swing.SwingConstants;

// Declaare and define the class MyGUI

abstract class MyGUI extends JFrame implements ActionListener {

JTextField userInput;

JLabel inputDescLbl, resultLbl;

JPanel inputPanel, resultPanel;

JButton evlBtn;

Stack<Object> stk;

// Define the constructor MyGUI

MyGUI() {

super("Tree Address Generator");

inputPanel = new JPanel(new FlowLayout());

resultPanel = new JPanel(new FlowLayout());

setLayout(new GridLayout(2, 1));

userInput = new JTextField(20);

inputDescLbl = new JLabel("Enter Postfix Expression:");

evlBtn = new JButton("Construct Tree");

evlBtn.addActionListener(this);

resultLbl = new JLabel("Infix Expression:", SwingConstants.LEFT);

add(inputPanel);

add(resultPanel);

inputPanel.add(inputDescLbl);

inputPanel.add(userInput);

inputPanel.add(evlBtn);

resultPanel.add(resultLbl);

stk = new Stack<Object>();

}

}

//Stack.java:

// Declare and define the class Stack

class Stack {

private int[] a;

private int top, m;

public Stack(int max) {

m = max;

a = new int[m];

top = -1; }

public void push(int key) {

a[++top] = key; }

public int pop() {

return (a[top--]); }

}

// Declare and define the class Evaluation()

class Evaluation {

public int calculate(String s) {

int n, r = 0;

n = s.length();

Stack a = new Stack(n);

for (int i = 0; i < n; i++) {

char ch = s.charAt(i);

if (ch >= '0' && ch <= '9')

a.push((int) (ch - '0'));

else if (ch == ' ')

continue;

else {

int x = a.pop();

int y = a.pop();

switch (ch) {

case '+':

r = x + y;

break;

case '-':

r = y - x;

break;

case '*':

r = x * y;

break;

case '/':

r = y / x;

break;

default:

r = 0;

}

a.push(r);

}

}

r = a.pop();

return (r);

}

}

// PostfixToInfix.java:

// Import packages

import java.util.Scanner;

import java.util.Stack;

// Declare and define the class PostfixToInfix

class PostfixToInfix {

// Determine whether the character entered is an operator or not

private boolean isOperator(char c) {

if (c == '+' || c == '-' || c == '*' || c == '/' || c == '^')

return true;

return false;

}

// Declare and define the convert()

public String convert(String postfix) {

Stack<String> s = new Stack<>();

for (int i = 0; i < postfix.length(); i++) {

char c = postfix.charAt(i);

if (isOperator(c)) {

String b = s.pop();

String a = s.pop();

s.push("(" + a + c + b + ")");

} else

s.push("" + c);

}

return s.pop();

}

// Program starts from main()

public static void main(String[] args) {

PostfixToInfix obj = new PostfixToInfix();

Scanner sc = new Scanner(System.in);

// Prompt the user to enter the postfix expression

System.out.print("Postfix : ");

String postfix = sc.next();

// Display the expression in infix expression

System.out.println("Infix : " + obj.convert(postfix));

}

}

Output:

e Console X terminated PostfixTolnfix [Java Application] C:\Program Files\Java\jrel.8.0_121\bin\javaw.exe Postfix : ABD++C-D/ .

3 0
3 years ago
Other questions:
  • What is the name of the model/shape below?
    5·2 answers
  • Which statement most accurately describes Pascal's law?
    12·2 answers
  • Design a stepped-impedance low-pass filter having a cutoff frequency of 3 GHz and a fifth-order 0.5 dB equal-ripple response. As
    9·1 answer
  • The heat input to an Otto cycle is 1000kJ/kg. The compression ratio is 8 and the pressure and temperature at the beginning of th
    8·1 answer
  • Burn in hell i watched your stupid video and i still could not get the answer
    14·1 answer
  • potential difference is the work done in moving a unit positive charge from one point to another in an electric field. State Tru
    12·1 answer
  • What are the benefits of using the engineering design process
    7·1 answer
  • What must engineers keep in mind so that their solutions will be appropriate?
    15·1 answer
  • Could I please get help with this​
    11·1 answer
  • A gas mixture containing 3 moles CO2, 5 moles H2 and 1 mole water is undergoing the following reactions CO2+3H2 →cH3OH + H2O Dev
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!