Answer:
(a) attached below
(b)

(c) 
(d)
Ω
(e)
and 
Explanation:
Given data:





(a) Draw the power triangle for each load and for the combined load.
°
°
≅ 

≅ 
The negative sign means that the load 2 is providing reactive power rather than consuming
Then the combined load will be


(b) Determine the power factor of the combined load and state whether lagging or leading.

or in the polar form
°

The relationship between Apparent power S and Current I is

Since there is conjugate of current I therefore, the angle will become negative and hence power factor will be lagging.
(c) Determine the magnitude of the line current from the source.
Current of the combined load can be found by


(d) Δ-connected capacitors are now installed in parallel with the combined load. What value of capacitive reactance is needed in each leg of the A to make the source power factor unity?Give your answer in Ω


Ω
(e) Compute the magnitude of the current in each capacitor and the line current from the source.
Current flowing in the capacitor is

Line current flowing from the source is

Answer:
The statement can be written as
int result = cube(4);
Explanation:
A function is a block of reusable codes to perform some tasks. For example, the function in the question is to calculate the cube of a number.
A function can also operate on one or more input value (argument) and return a result. The <em>cube </em>function in the question accept one input value through its parameter <em>number </em>and the <em>number</em> will be multiplied by itself twice and return the result.
To call a function, just simply write the function name followed with parenthesis (e.g. <em>cube()</em>). Within the parenthesis, we can include zero or one or more than one values as argument(s) (e.g. <em>cube(4)</em>).
We can then use the "=" operator to assign the return output of the function to a variable (e.g. <em>int result = cube(4)</em>)
Answer:
import java.util.Scanner;
public class InputExample {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
int birthMonth;
int birthYear;
birthMonth = scnr.nextInt();
birthYear = scnr.nextInt();
System.out.println(birthMonth+"/"+birthYear);
}
}
Answer:
1) The exergy of destruction is approximately 456.93 kW
2) The reversible power output is approximately 5456.93 kW
Explanation:
1) The given parameters are;
P₁ = 8 MPa
T₁ = 500°C
From which we have;
s₁ = 6.727 kJ/(kg·K)
h₁ = 3399 kJ/kg
P₂ = 2 MPa
T₂ = 350°C
From which we have;
s₂ = 6.958 kJ/(kg·K)
h₂ = 3138 kJ/kg
P₃ = 2 MPa
T₃ = 500°C
From which we have;
s₃ = 7.434 kJ/(kg·K)
h₃ = 3468 kJ/kg
P₄ = 30 KPa
T₄ = 69.09 C (saturation temperature)
From which we have;
h₄ =
+ x₄×
= 289.229 + 0.97*2335.32 = 2554.49 kJ/kg
s₄ =
+ x₄×
= 0.94394 + 0.97*6.8235 ≈ 7.563 kJ/(kg·K)
The exergy of destruction,
, is given as follows;
= T₀ ×
= T₀ ×
× (s₄ + s₂ - s₁ - s₃)
= T₀ ×
×(s₄ + s₂ - s₁ - s₃)/(h₁ + h₃ - h₂ - h₄)
∴
= 298.15 × 5000 × (7.563 + 6.958 - 6.727 - 7.434)/(3399 + 3468 - 3138 - 2554.49) ≈ 456.93 kW
The exergy of destruction ≈ 456.93 kW
2) The reversible power output,
=
+
≈ 5000 + 456.93 kW = 5456.93 kW
The reversible power output ≈ 5456.93 kW.