I would help if It wasn’t so confusing.
Problem-Solving Tip: When cutting an FBD through an axial member, assume that the internal force is tension and draw the force arrow directed away from the cut surface. If the computed internal force value turns out to be a positive number, then the assumption of tension is confirmed.
Answer:
mechanical power used to overcome frictional effects in piping is 2.37 hp
Explanation:
given data
efficient pump = 80%
power input = 20 hp
rate = 1.5 ft³/s
free surface = 80 ft
solution
we use mechanical pumping power delivered to water is
.............1
put here value
= (0.80)(20)
= 16 hp
and
now we get change in the total mechanical energy of water is equal to the change in its potential energy
..............2
and that can be express as
..................3
so
......4
solve it we get
hp
so here
due to frictional effects, mechanical power lost in piping
we get here
put here value
= 16 -13.614
= 2.37 hp
so mechanical power used to overcome frictional effects in piping is 2.37 hp
Answer:
Aqueous solution of ionic compounds conduct electricity while solid ionic compounds don't.
Explanation:
Ionic compound conduct electricity when liquid or in aqueous solution that is resolved in water because the ionic bonds of the compound become weak and the ions are free to move from place to place.
Ionic compounds don't conduct electricity while in solid state because the ionic bonds are to strong and ions cannot move around with lack of space for movement which makes the electric conductivity zero.
Answer:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.