본문내용
이 많아짐에 따라, 기존에 구동에 한계가 있었던 펌프의 기계적 개선을 취할 수 있음을 예측해 볼 수 있다.
[첨부] Matlab 코드
>> r2=0.5; n=30; beta=pi/36; b=3; g=9.81;
>>q=0:1:2000;
>>h=(r2^2*n^2-(q.*tan(beta)*r2*n/(2*pi*r2*b)))/g;
>>hold on
>>grid on
>>plot(q,h)
>>n=50; h=(r2^2*n^2-(q.*tan(beta)*r2*n/(2*pi*r2*b)))/g;
>>plot(q,h)
>>n=70; h=(r2^2*n^2-(q.*tan(beta)*r2*n/(2*pi*r2*b)))/g;
>>plot(q,h)
>>n=90; h=(r2^2*n^2-(q.*tan(beta)*r2*n/(2*pi*r2*b)))/g;
>>plot(q,h)
>>n=110; h=(r2^2*n^2-(q.*tan(beta)*r2*n/(2*pi*r2*b)))/g;
>>plot(q,h)
Graph ②는 위의 코드에 n의 값만 변화시켜 주면 구현할 수 있다.
REPORT
<터보기계>
- Centrifugal pump에서 회전수에 따른 유량과 높이의 관계 도식화 -
[첨부] Matlab 코드
>> r2=0.5; n=30; beta=pi/36; b=3; g=9.81;
>>q=0:1:2000;
>>h=(r2^2*n^2-(q.*tan(beta)*r2*n/(2*pi*r2*b)))/g;
>>hold on
>>grid on
>>plot(q,h)
>>n=50; h=(r2^2*n^2-(q.*tan(beta)*r2*n/(2*pi*r2*b)))/g;
>>plot(q,h)
>>n=70; h=(r2^2*n^2-(q.*tan(beta)*r2*n/(2*pi*r2*b)))/g;
>>plot(q,h)
>>n=90; h=(r2^2*n^2-(q.*tan(beta)*r2*n/(2*pi*r2*b)))/g;
>>plot(q,h)
>>n=110; h=(r2^2*n^2-(q.*tan(beta)*r2*n/(2*pi*r2*b)))/g;
>>plot(q,h)
Graph ②는 위의 코드에 n의 값만 변화시켜 주면 구현할 수 있다.
REPORT
<터보기계>
- Centrifugal pump에서 회전수에 따른 유량과 높이의 관계 도식화 -
소개글