Answer:
a) The maximum possible heat removal rate = 2.20w
b) Fin length = 37.4 mm
c) Fin effectiveness = 89.6
d) Percentage increase = 435%
Explanation:
See the attached file for the explanation.
Answer:
The solution code is written in Java.
- public class Main {
-
- public static void main(String[] args) {
-
- Scanner inNum = new Scanner(System.in);
- System.out.print("Enter number of toss: ");
- int num = inNum.nextInt();
-
- for(int i=0; i < num; i++){
- System.out.println(toss());
- }
- }
-
- public static String toss(){
- String option[] = {"heads", "tails"};
- Random rand = new Random();
- return option[rand.nextInt(2)];
- }
- }
Explanation:
Firstly, we create a function <em>toss()</em> with no parameter but will return a string (Line 14). Within the function body, create an option array with two elements, "heads" and "tails" (Line 15). Next create a Random object (Line 16) and use <em>nextInt()</em> method to get random value either 0 or 1. Please note we need to pass the value of 2 into <em>nextInx() </em>method to ensure the random value generated is either 0 or 1. We use this generate random value as an index of <em>option </em>array and return either "heads" or "tails" as output (Line 17).
In the main program, we create Scanner object and use it to prompt user to input an number for how many times to toss the coin (Line 6 - 7). Next, we use the input num to control how many times a for loop should run (Line 9). In each round of the loop, call the function <em>toss() </em>and print the output to terminal (Line 10).
Answer:
C. Welded contacts on the thermostat
Explanation:
Any fault that keeps the heating element heating when it should not is a fault that will cause the symptom described. The details <em>depend on the design of the brewer</em> (not given).
"A short at the terminals" depends on what terminals are being referenced. The device on-off switch terminals are normally connected together when the brewer is turned on, so a short there may not be observable.
"Welded contacts on the thermostat" will have the observed effect if the thermostat is the primary means of ending the brewing cycle. If the thermostat of interest is an overheat protective device not normally involved in ending the brewing cycle, then that fault may not cause the observed symptom.
__
If the heating element is open-circuit, no heating will occur. A gasket leak may cause a puddle, but may have nothing to do with the end of the brewing cycle. (Loss of water can be expected to end boiling, rather than prolong it.)
1. Define <em>Viscosity</em>
In physics, <em>Viscosity</em> refers to the level of resistance of a fluid to flow due to internal friction, in other words, viscosity is the result of the magnitude of internal friction in a fluid, as measured by the force per unit area resisting uniform flow. For example, the honey is a fluid with high viscosity while the water has low viscosity.
What are the main differences between viscous and inviscid flows?
Viscous flows are flows that has a thick, sticky consistency between solid and liquid, contain and conduct heat, does not have a rest frame mass density and whose motion at a fixed point always remains constant. Inviscid flows, on the other hand, are flows characterized for having zero viscosity (it does not have a thick, sticky consistency), for not containing or conducting heat, for the lack of steady flow and for having a rest frame mass density
Furthermore, viscous flows are much more common than inviscid flows, while this latter is often considered an idealized model since helium is the only fluid that can become inviscid.