Answer:
(a) maximum positive reaction at A = 64.0 k
(b) maximum positive shear at A = 32.0 k
(c) maximum negative moment at C = -540 k·ft
Explanation:
Given;
dead load Gk = 400 lb/ft
live load Qk = 2 k/ft
concentrated live load Pk =8 k
(a) from the influence line for vertical reaction at A, the maximum positive reaction is
= 2*(8) +(1/2(20 - 0)* (2))*(2 + 0.4) = 64 k
See attachment for the calculations of (b) & (c) including the influence line
Answer:
Writing an excellent problem statement will not help guide you through the rest of the process and steer you towards the BEST solution.
False
Explanation:
An excellent problem statement sets the overall tone for the rest of the engineering process, whether it be at the analysis, design, or implementation stages. This is why a problem statement must be focused, clear, and specific. An excellent problem statement contains the problem definition, method for solving the problem (the claim proposed), purpose, statement of objectives, and scope. For an excellent problem statement to be effective, it must also show the gap that is to be closed to achieve the intended objective.
78950W the answer
Explanation:
A 75- kw, 3-, Y- connected, 50-Hz 440- V cylindrical synchronous motor operates at rated condition with 0.8 p.f leading. the motor efficiency excluding field and stator losses, is 95%and X=2.5ohms. calculate the mechanical power developed, the Armature current, back e.m.f, power angle and maximum or pull out torque of the motor
A 75- kw, 3-, Y- connected, 50-Hz 440- V cylindrical synchronous motor operates at rated condition with 0.8 p.f leading. the motor efficiency excluding field and stator losses, is 95%and X=2.5ohms. calculate the mechanical power developed, the Armature current, back e.m.f, power angle and maximum or pull out torque of the motor
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);
}
}