wireless power transfer efficiency

12 ビュー (過去 30 日間)
Soukaina
Soukaina 2022 年 6 月 27 日
回答済み: Rohit Kulkarni 2022 年 7 月 2 日
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.

回答 (1 件)

Rohit Kulkarni
Rohit Kulkarni 2022 年 7 月 2 日
Hi,
You can use the plot function to plot the graph for various values of K.
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.
you can do it like this:
%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

カテゴリ

Help Center および File ExchangeIntroduction to Installation and Licensing についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by