Answer:
The critical length of surface flaw = 6.176 mm
Explanation:
Given data-
Plane strain fracture toughness Kc = 29.6 MPa-m1/2
Yield Strength = 545 MPa
Design stress. =0.3 × yield strength
= 0.3 × 545
= 163.5 MPa
Dimensionless parameter. Y = 1.3
The critical length of surface flaw is given by
= 1/pi.(Plane strain fracture toughness /Dimensionless parameter× Design Stress)^2
Now putting values in above equation we get,
= 1/3.14( 29.6 / 1.3 × 163.5)^2
=6.176 × 10^-3 m
=6.176 mm
Answer:
import java.util.Scanner;
public class FindMatchValue {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
final int NUM_VALS = 4;
int[] userValues = new int[NUM_VALS];
int i;
int matchValue;
int numMatches = -99; // Assign numMatches with 0 before your for loop
matchValue = scnr.nextInt();
for (i = 0; i < userValues.length; ++i) {
userValues[i] = scnr.nextInt();
}
/* Your solution goes here */
numMatches = 0;
for (i = 0; i < userValues.length; ++i) {
if(userValues[i] == matchValue) {
numMatches++;
}
}
System.out.println("matchValue: " + matchValue + ", numMatches: " + numMatches);
}
}
Answer:
0.5 kW
Explanation:
The given parameters are;
Volume of tank = 1 m³
Pressure of air entering tank = 1 bar
Temperature of air = 27°C = 300.15 K
Temperature after heating = 477 °C = 750.15 K
V₂ = 1 m³
P₁V₁/T₁ = P₂V₂/T₂
P₁ = P₂
V₁ = T₁×V₂/T₂ = 300.15 * 1 /750.15 = 0.4 m³

For ideal gas,
= 5/2×R = 5/2*0.287 = 0.7175 kJ
PV = NKT
N = PV/(KT) = 100000×1/(750.15×1.38×10⁻²³)
N = 9.66×10²⁴
Number of moles of air = 9.66×10²⁴/(6.02×10²³) = 16.05 moles
The average mass of one mole of air = 28.8 g
Therefore, the total mass = 28.8*16.05 = 462.135 g = 0.46 kg
∴ dQ = 0.46*0.7175*(750.15 - 300.15) = 149.211 kJ
The power input required = The rate of heat transfer = 149.211/(60*5)
The power input required = 0.49737 kW ≈ 0.5 kW.