Answer:
0.245 m^3/s
Explanation:
Flow rate through pipe a is 0.4 m3/s Parallel pipes have a diameter D = 30 cm => r = 15 cm = 0.15 m Length of Pipe a = 1000m Length of Pipe b = 2650m Temperature = 15 degrees Va = V / A = (0.4m3/s) / (3.14 (0.15m)^2) = 5.66 m/s h = (f(LV^2)) / D2g (fa(LaVa^2)) / Da2g = (fb(LbVb^2)) / Da2g and Da = Db; fa = fb LaVa^2 = LbVb^2 => La/Lb = Vb^2/Va^2 Vd^2 = Va^2(La/Lb) => Vb = Va(La/Lb)^(1/2) Vb = 5.66 (1000/2650)^(1/2) => 5.66 x 0.6143 = 3.4769 m/s Vb = 3.4769 m/s V = AVb = 3.14(0.15)^2 x 3.4769 m/s = 0.245 m^3/s
Answer:
It involves the active streamlining of a business's supply-side activities to maximize customer value and gain a competitive advantage in the marketplace
Explanation:
Supply chain management is the management of the flow of goods and services and includes all processes that transform raw materials into final products.
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)
Answer:
t = 25.10 sec
Explanation:
we know that Avrami equation

here Y is percentage of completion of reaction = 50%
t is duration of reaction = 146 sec
so,


taking natural log on both side
ln(0.5) = -k(306.6)

for 86 % completion




t = 25.10 sec
Answer:

Explanation:
In electrical terms, is the ratio of time in which a load or circuit is ON compared to the time in which the load or circuit is OFF.
The duty cycle or power cycle, is expressed as a percentage of the activation time. For example, a 70% duty cycle is a signal that 70% of the time is activated and the other 30% disabled. Its equation can be expressed as:

Where:



Here is a picture that will help you understand these concepts.