blob: c632fa987781cd40daf3415e938c4de91e19b01b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Finding of Power Required
//Given
L=100;
D=0.1;
q=0.01;
mu=0.8;
//To Find
A=(%pi/4)*D^2;
v=q/A;
p=(32*q*mu*v*L)/D^2;
P=p/100;
disp("Power Required ="+string(P)+" KiloWatts");
|