Answer:
Explanation:
From the given question:
Using the distortion energy theory to determine the factors of safety FOS can be expressed by the relation:
where; syt = strength in tension and compression = 350 MPa
The maximum shear stress theory can be expressed as:
where;
a. Using distortion - energy theory formula:
FOS = 2.183
USing the maximum-shear stress theory;
FOS = 1.977
b. σx = 110 MPa, σy = 100 MPa
Using distortion - energy theory formula:
FOS =3.322
USing the maximum-shear stress theory;
FOS = 350/2×25
FOS = 350/50
FOS = 70
c. σx = 90 MPa, σy = 20 MPa, τxy =−20 MPa
Using distortion- energy theory formula:
FOS = 350/88.88
FOS = 3.939
USing the maximum-shear stress theory;
FOS = 4.341
Malleable and ductile
non metals like plastic also have other properties but can't be malleable and ductile so they r most valuable metallic properties
The largest tensile force that can be applied to the cables given a rod with diameter 1.5 is 2013.15lb
<h3>The static equilibrium is given as:</h3>
F = P (Normal force)
Formula for moment at section
M = P(4 + 1.5/2)
= 4.75p
Solve for the cross sectional area
Area =
d = 1.5
= 1.767 inches²
<h3>Solve for inertia</h3>
= 0.2485inches⁴
Solve for the tensile force from here
30x10³ =
30000 = 14.902 p
divide through by 14.902
2013.15 = P
The largest tensile force that can be applied to the cables given a rod with diameter 1.5 is 2013.15lb
Read more on tensile force here: brainly.com/question/25748369
Answer and Explanation:
In thermodynamics, the overall heat transfer coefficient also referred as film effectiveness is a constant of proportionality between force drive for the heat flow and the heat flux.
It gives the measure of the heat transfer as a result of convection or conduction. The coefficient of overall heat transfer depends on surface area, resistance of the material, temperature difference, thickness, etc.
It is given by:
Q = UA
where
U = overall heat transfer coefficient
Its SI units is .
Answer:
Java program explained below
Explanation:
FindSpecialNumber.java
import java.util.Scanner;
public class FindSpecialNumber {
public static void main(String[] args) {
//Declaring variable
int number;
/*
* Creating an Scanner class object which is used to get the inputs
* entered by the user
*/
Scanner sc = new Scanner(System.in);
//getting the input entered by the user
System.out.print("Enter a number :");
number = sc.nextInt();
/* Based on user entered number
* check whether it is special number or not
*/
if (number == -99 || number == 0 || number == 44) {
System.out.println("Special Number");
} else {
System.out.println("Not Special Number");
}
}
}
_______________
Output#1:
Enter a number :-99
Special Number
Output#2:
Enter a number :49
Not Special Number