Answer is True.. hope I helped... pls mark brainliest
Answer:
Q = 63,827.5 W
Explanation:
Given:-
- The dimensions of plate A = ( 10 mm x 1 m )
- The fluid comes at T_sat , 1 atm.
- The surface temperature, T_s = 75°C
Find:-
Determine the total condensation rate of water vapor onto the front surface of a vertical plate
Solution:-
- Assuming drop-wise condensation the heat transfer coefficient for water is given by Griffith's empirical relation for T_sat = 100°C.
h = 255,310 W /m^2.K
- The rate of condensation (Q) is given by Newton's cooling law:
Q = h*As*( T_sat - Ts )
Q = (255,310)*( 0.01*1)*( 100 - 75 )
Q = 63,827.5 W
Answer:
F₁ = 1500 N
F₂ = 750 N
= 500 N
Explanation:
Given :
Power transmission, P = 7.5 kW
= 7.5 x 1000 W
= 7500 W
Belt velocity, V = 10 m/s
F₁ = 2 F₂
Now we know from power transmission equation
P = ( F₁ - F₂ ) x V
7500 = ( F₁ - F₂ ) x 10
750 = F₁ - F₂
750 = 2 F₂ - F₂ ( ∵F₁ = 2 F₂ )
∴F₂ = 750 N
Now F₁ = 2 F₂
F₁ = 2 x F₂
F₁ = 2 x 750
F₁ = 1500 N , this is the maximum force.
Therefore we know,
= 3 x 
where
is centrifugal force
=
/ 3
= 1500 / 3
= 500 N
Answer:
18 teeth/inch
Explanation:
Given that: i. driver gear has 8 teeth and diametral pitch of 6 teeth/inch.
ii. follower gear has 24 teeth.
Let the followers diametral pitch be represented by x.
Then,
8 teeth ⇒ 6 teeth/inch
24 teeth ⇒ x teeth/inch
So that;
x = 
= 
= 18 teeth/inch
The diametral is 18 teeth/inch
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);
}
}