answer.
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
andre [41]
2 years ago
8

Chapter 15 – Fasteners: Determine the tensile load capacity of a 5/16 – 18 UNC thread and a 5/16 – 24 UNF thread made of the sam

e material. Which is stronger?
Make the same comparison for M8 x 1.25 and M8 x 1 ISO threads. Hint: see Tables 15-1, 15-2, and 15-3
Engineering
2 answers:
Roman55 [17]2 years ago
7 0

Answer:

The 5/16 – 24 UNF is stronger because it has more tensile load capacity.

Tensile load capacity for M8 -1.25 = 5670 lb

Tensile load capacity for M8 -1 = 6067 lb

Explanation:

For 5/16 - 18 UNC thread:

D = 0.3125

n = 18

Therefore the tensile load capacity is = 100000 X (0.7854 X (0.3125 - 0.9743/ 18) ^2

= 5243 lb.

Similarly for 5/16 - 24 UNF , only the n value changes to 24

we get the tensile load capacity = 5806.6 lb

Hence the 5/16 – 24 UNF is stronger because it has more tensile load capacity.

For metric Bolts:

We have to consider all values in SI units

Strength = 689 MPa

We get for M8 -1.25:

Tensile load capacity as = 689 X 36.6 = 25223 N = 5670 lb

For M8 -1:

Tensile load capacity as = 689 X 39.167 = 26986 N = 6067lb

Aliun [14]2 years ago
7 0

Answer:

The material strength is given as 100,000 PSI

To find the tensile load capacity of a threaded rod, we multiply the Strength of the material with the Stress area for the bolt.

A_{t} = 0.7854 (D - \{0.9743}{n})^{2}

Where D is the Basic Major Diameter

n is the Number of threads per inch

At is the Tensile strength area of the bolt.

For 5/16 - 18 UNC thread

D = 0.3125

n = 18

Therefore the tensile load capacity is = 100000 X (0.7854 X (0.3125 - 0.9743/ 18) ^2

= 5243 lb.

Similarly for 5/16 - 24 UNF , only the n value changes to 24

we get the tensile load capacity = 5806.6 lb

Hence the fine thread bolt is stronger because it has more tensile load capacity.

For metric Bolts

We have to consider all values in SI units

Strength = 689 MPa

We get for M8 -1.25

Tensile load capacity as = 689 X 36.6 = 25223 N = 5670 lb

For M8 -1

Tensile load capacity as = 689 X 39.167 = 26986 N = 6067N

Strength of 5/16 - 14 Acme thread

We use the imperial fomula as mentioned above,

The tensile capacity is 4634 lb.

You might be interested in
Discuss the nature of materials causing turbidity in
Anestetic [448]

Answer:

a

Explanation:

5 0
2 years ago
Read 2 more answers
An electric field is expressed in rectangular coordinates by E = 6x2ax + 6y ay +4az V/m.Find:a) VMN if point M and N are specifi
Fittoniya [83]

Answer:

a.) -147V

b.) -120V

c.) 51V

Explanation:

a.) Equation for potential difference is the integral of the electrical field from a to b for the voltage V_ba = V(b)-V(a).

b.) The problem becomes easier to solve if you draw out the circuit. Since potential at Q is 0, then Q is at ground. So voltage across V_MQ is the same as potential at V_M.

c.) Same process as part b. Draw out the circuit and you'll see that the potential a point V_N is the same as the voltage across V_NP added with the 2V from the other box.

Honestly, these things take practice to get used to. It's really hard to explain this.

3 0
2 years ago
Fix the code so the program will run correctly for MAXCHEESE values of 0 to 20 (inclusive). Note that the value of MAXCHEESE is
GarryVolchara [31]

Answer:

Code fixed below using Java

Explanation:

<u>Error.java </u>

import java.util.Random;

public class Error {

   public static void main(String[] args) {

       final int MAXCHEESE = 10;

       String[] names = new String[MAXCHEESE];

       double[] prices = new double[MAXCHEESE];

       double[] amounts = new double[MAXCHEESE];

       // Three Special Cheeses

       names[0] = "Humboldt Fog";

       prices[0] = 25.00;

       names[1] = "Red Hawk";

       prices[1] = 40.50;

       names[2] = "Teleme";

       prices[2] = 17.25;

       System.out.println("We sell " + MAXCHEESE + " kind of Cheese:");

       System.out.println(names[0] + ": $" + prices[0] + " per pound");

       System.out.println(names[1] + ": $" + prices[1] + " per pound");

       System.out.println(names[2] + ": $" + prices[2] + " per pound");

       Random ranGen = new Random(100);

       // error at initialising i

       // i should be from 0 to MAXCHEESE value

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

           names[i] = "Cheese Type " + (char) ('A' + i);

           prices[i] = ranGen.nextInt(1000) / 100.0;

           amounts[i] = 0;

           System.out.println(names[i] + ": $" + prices[i] + " per pound");

       }        

   }

}

7 0
2 years ago
Q3: Summation Write a recursive implementation of summation, which takes a positive integer n and a function term. It applies te
harina [27]

Answer:

Here is the recursive function summation:

def summation(n, term):      

   if n == 1:  

       return term(n)

   else:

       return term(n) + summation(n - 1, term)

Explanation:

The function summation() has two arguments where n is a positive integer and term is a function term. term has the lambda function which is a small function having an argument and an expression e.g lambda b: b+20

So the summation() function is a recursive function which returns sum of the first n terms in the sequence defined by term ( a lambda function).

If you want to check if this function works, you can call this function by passing values to it like given in the question.

summation(5, lambda x: 2**x)

Here the value of n is 5 and the term is a lambda function x: 2**x

If you want to see the results of this function on output screen then use:

print(summation(5, lambda x: 2**x))

The print() function will print the results on screen.

This returns the sum of first 5 terms in sequence defined in the function x: 2**x

In recursive methods there are two cases: base case and recursive case. Base case is the stopping case which means that the recursion will stop when the base case/ base condition evaluates to true. The recursive case is when the function keeps calling itself so the recursive function keepsexecuting until the base case becomes true.

Here the base case is if n == 1:  So the recursive function calling itself until the value of n becomes 1.  

Recursive case is:

       return term(n) + summation(n - 1, term)

For the above example with n= 5 and term = x:2**x the recursions starts from n and adds all the terms of the series one by one and the value of n keeps decrementing by 1 at every recursive call.

When the value of n is equal to 1 the base case gets true and the recursion ends and the result of the sum is displayed in output.

This is how the summation() function works for the above function call:

2^1 + 2^2 + 2^3 + 2^4 + 2^5

n is 5 So this term function is called recursively 5 times and at every recursive call its value decreases by 1. Here the term function is used to compute 2 raise to power n. So in first recursive call the 2 raise to the power 5 is computed, then 5 is decremented and then in second recursive call to summation(), 2 raise to the power 4 is calculated, in third recursive call  to summation(), 2 raise to the power 3 is calculated, in fourth recursive call  to summation(), 2 raise to the power 2 is calculated, in fifth recursive call  to summation(), 2 raise to the power 1 is calculated, then the base condition is reached as n==1. So the recursion stops and the sum of the above computed power function results is returned which is 62.

2^1 + 2^2 + 2^3 + 2^4 + 2^5 = 62

The screen shot of recursive function along with the output of explained examples is attached.

6 0
2 years ago
CHALLENGE ACTIVITY 1.4.1: Basic syntax errors. Type the statements. Then, correct the one syntax error in each statement. Hints:
Lunna [17]

Answer:

Lets check each statement for the errors.

Explanation:

System.out.println("Predictions are hard.");

This statement has no syntax errors. When this statement is executed the following line will be displayed:

Predictions are hard.

System.out.print("Especially ');

This statement is missing the closing quotation mark. A single quotation mark is placed instead of double quotation mark in the statement.

The following error message will be displayed when this program statement will be compiled:

Main.java:15: error: unclosed string literal

String literals use double quotes. So to correct this syntax error, the statement should be changed as follows:

System.out.print("Especially");

The output of this corrected line is as following:

Especially

System.out.println("about the future.").

In this line a period . is placed at the end of the statement instead of a semicolon ; but according to the syntax rules statements should end in semicolons.

The error message displayed when this line is compiled is as following:

Main.java:15: error: ; expected

Main.java:15: error: not a statement

So in order to correct this syntax error the statement should be changed as following:

System.out.println("about the future.");    

The output of this corrected line is as following:

about the future

System.out.println("Num is: " - userName);

There is a syntax error in this statement because of - symbol used instead of +

+ symbol is used to join together a variable and a value a variable and another variable in a single print statement.

The error message displayed when this line is compiled is as following:

Main.java:13: error: bad operand types for binary operator '-'

So in order to correct this syntax error the statement should be changed as following:

System.out.println("Num is: " + userName);

This line will print two things one is the string Num is and the other is the value stored in userName variable.

So let userName= 5 then the output of this corrected line is as following:

Num is: 5

8 0
2 years ago
Other questions:
  • Oil with a density of 800 kg/m3 is pumped from a pressure of 0.6 bar to a pressure of 1.4 bar, and the outlet is 3 m above the i
    9·1 answer
  • Six years ago, an 80-kW diesel electric set cost $160,000. The cost index for this class of equipment six years ago was 187 and
    8·1 answer
  • Water has a density of 1.94 slug/ft^3. What is the density expressed in SI units? Express the answer to three significant figure
    8·1 answer
  • (3) Calculate the heat flux through a sheet of brass 7.5 mm (0.30 in.) thick if the temperatures at the two faces are 150°Cand 5
    9·1 answer
  • Write multiple if statements: If carYear is before 1967, print "Probably has few safety features." (without quotes). If after 19
    6·1 answer
  • Prompt the user to enter five numbers, being five people's weights. Store the numbers in an array of doubles. Output the array's
    11·2 answers
  • A three-story school has interior column bays that are spaced 25 ft apart in both directions. If the loading on the flat roof is
    7·1 answer
  • Check the answer that best describes the relationship between f(x) and x. (For example if f(x) is Θ(x) check that as your answer
    12·1 answer
  • The mass fractions of a mixture of gases are 15 percent nitrogen, 5 percent helium, 60 percent methane, and 20 percent ethane. T
    9·1 answer
  • Most fatal collisions in Florida happen during
    8·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!