Answer
For isotropic material plastic yielding depends upon magnitude of the principle stress not on the direction.
Tresca and Von Mises yield criteria are the yield model which is widely used.
The Tresca yield criterion stated that yielding will occur in a material only when the greatest maximum shear stress reaches a critical value.
max{|σ₁ - σ₂|,|σ₂ - σ₃|,|σ₃ - σ₁|} = σ_f
under plane stress condition
|σ₁ - σ₂| = σ_f
The Von mises yielding criteria stated that the yielding will occur when elastic energy of distortion reaches critical value.
σ₁² - σ₁ σ₂ + σ₂² = σ²_f
Answer:
The shear strain is 0.05797 rad.
Explanation:
Shear strain is the ratio of change in dimension along the shearing load direction to the height of the plate under application of shear load. Width of the plate remains same. Length of the plate slides under shear load.
Step1
Given:
Height of the pad is 1.38 in.
Deformation at the top of the pad is 0.08 in.
Calculation:
Step2
Shear strain is calculated as follows:



For small angle of
,
can take as
.

Thus, the shear strain is 0.05797 rad.
Answer: 0.95 inches
Explanation:
A direct load on a column is considered or referred to as an axial compressive load. A direct concentric load is considered axial. If the load is off center it is termed eccentric and is no longer axially applied.
The length= 64 inches
Ends are fixed Le= 64/2 = 32 inches
Factor Of Safety (FOS) = 3. 0
E= 10.6× 10^6 ps
σy= 4000ps
The square cross-section= ia^4/12
PE= π^2EI/Le^2
6500= 3.142^2 × 10^6 × a^4/12×32^2
a^4= 0.81 => a=0.81 inches => a=0.95 inches
Given σy= 4000ps
σallowable= σy/3= 40000/3= 13333. 33psi
Load acting= 6500
Area= a^2= 0.95 ×0.95= 0.9025
σactual=6500/0.9025
σ actual < σallowable
The dimension a= 0.95 inches
The forklift overturning is a very common way of getting injured from a forklift. Overturning the forklift means it tips over onto it's side due to the operator turning it too fast.
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