필터 지우기
필터 지우기

creating a matrix from 2 vectors and a function loop

조회 수: 1 (최근 30일)
Alexander Wilkinson
Alexander Wilkinson 2021년 1월 18일
편집: Alexander Wilkinson 2021년 1월 18일
Im looking at how the power generated varies with the radius of the turbine wheel and the radius of the outlet water nozzle. Iv had to create these two vectors for inputs.
wheel_radius = [0.12:0.02:0.3]
nozzle_radius = [0.002:0.001:0.01]
I am told using loops pass each combination of wheel_radius and nozzle_radius to the waterwheel_generate function which i am given and also create a matrix gen_power that contains the power generated for each combination, the nozzle_radius should change with each column and the wheel_radius with each row.
The function waterwheel_generate.p has the Format: power_output = waterwheel_generate(wheel_radius, nozzle_radius)
Calculates the generated power for a turbine wheel connected to a generator based on a particular turbine wheel radius and water outlet nozzle radius. The inputs are in metres and output in watts.

채택된 답변

David Hill
David Hill 2021년 1월 18일
[wheel_radius,nozzle_radius]=meshgrid(.12:.02:.3,.002:.001:.01);
for k=1:numel(wheel_radius)
power_output(k)=waterwheel_generate(wheel_radius(k),nozzle_radius(k));
end
power_output=reshape(power_output,size(wheel_radius));

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Wind Power에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by