Answer:
(b)False
Explanation:
Given:
Prandtl number(Pr) =1000.
We know that 
Where
is the molecular diffusivity of momentum
is the molecular diffusivity of heat.
Prandtl number(Pr) can also be defined as

Where
is the hydrodynamic boundary layer thickness and
is the thermal boundary layer thickness.
So if Pr>1 then hydrodynamic boundary layer thickness will be greater than thermal boundary layer thickness.
In given question Pr>1 so hydrodynamic boundary layer thickness will be greater than thermal boundary layer thickness.
So hydrodynamic layer will be thicker than the thermal boundary layer.
They ran different shapes and materials through a wind tunnel to see which shape and material would decrease energy output so that it takes in equal COthan it puts out.
Hi
Acetylene and propane
I hope this help you!
Answer:
Wind energy is converted to Mechanical energy which is then converted in to electrical energy
Explanation:
In a wind mill the following energy conversions take place
a) Wind energy is converted into Mechanical energy (rotation of rotor blades)
b) Mechanical energy is converted into electrical energy (by using electric motor)
This electrical energy is then used for transmission through electric lines.
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)