wireless power transfer efficiency
4 ビュー (過去 30 日間)
古いコメントを表示
hi, could you help me to find the code of the efficiency curve as a function of frequency, the result will be as the picture shows.
0 件のコメント
回答 (1 件)
Rohit Kulkarni
2024 年 8 月 15 日
Hi,
As frequency will be a vector. You will have to calculate a efficiency vector corresponding to a particular "K" value for the particular range of frequency.
This can be achieved in the following way:
%frequency is a vector of the range you want to pass
plot(frequency, calculate_efficiency_vector(0.2, frequency))
hold on
for K = [0.175 0.15 0.125 0.1 0.075 0.05]
plot(frequency, calculate_efficiency_vector(K, frequency))
end
hold off
function efficiency = calculate_efficiency_vector(K, frequency)
efficiency = %write the function here, in terms of K and frequency
end
Hope this helps you resolve your query!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Multirate Signal Processing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!