Concentrating solar power (CSP) plants use mirrors to concentrate the sun's energy to drive traditional steam turbines or engines that create electricity. The thermal energy concentrated in a CSP plant can be stored and used to produce electricity when it is needed, day or night. Today, roughly 1,815 megawatts (MWac) of CSP plants are in operation in the United States.
Parabolic Trough
Parabolic trough systems use curved mirrors to focus the sun’s energy onto a receiver tube that runs down the center of a trough. In the receiver tube, a high-temperature heat transfer fluid (such as a synthetic oil) absorbs the sun’s energy, reaching temperatures of 750°F or higher, and passes through a heat exchanger to heat water and produce steam. The steam drives a conventional steam turbine power system to generate electricity. A typical solar collector field contains hundreds of parallel rows of troughs connected as a series of loops, which are placed on a north-south axis so the troughs can track the sun from east to west. Individual collector modules are typically 15-20 feet tall and 300-450 feet long.
Compact Linear Fresnel Reflector
CLFR uses the principles of curved-mirror trough systems, but with long parallel rows of lower-cost flat mirrors. These modular reflectors focus the sun's energy onto elevated receivers, which consist of a system of tubes through which water flows. The concentrated sunlight boils the water, generating high-pressure steam for direct use in power generation and industrial steam applications.
I would go with C but i am not 100 percent on that
A. AFGI is the answer for this question.
Answer:
Given that;
Jello there, see explanstion for step by step solving.
A horizontal channel of height H has two fluids of different viscosities and densities flowing because of a pressure gradient dp/dx1. Find the velocity profiles of two fluids if the height of the flat interface is ha.
Explanation:
A horizontal channel of height H has two fluids of different viscosities and densities flowing because of a pressure gradient dp/dx1. Find the velocity profiles of two fluids if the height of the flat interface is ha.
See attachment for more clearity
Answer:
Explanation:
% Clears variables and screen
clear; clc
% Asks user for input
n = input('Total number of objects: ');
r = input('Size of subgroup: ');
% Computes and displays permutation according to basic formulas
p = 1;
for i = n - r + 1 : n
p = p*i;
end
str1 = [num2str(p) ' permutations'];
disp(str1)
% Computes and displays combinations according to basic formulas
str2 = [num2str(p/factorial(r)) ' combinations'];
disp(str2)
=================================================================================
Example: check
How many permutations and combinations can be made of the 15 alphabets, taking four at a time?
The answer is:
32760 permutations
1365 combinations
==================================================================================