Wind turbine model block, cp(lambda, beta) function syntax error

42 ビュー (過去 30 日間)
Giovanni Ponce
Giovanni Ponce 2022 年 11 月 1 日
コメント済み: Ragul E 2023 年 4 月 12 日
Hello, I am trying to run a wind turbine model block from simscape, and I am getting this error.
The expression: c1*(c2/u[2]-c3*u[3]-c4)*exp(-c5/u[2])+c6*u[1]
in 'Wind turbine model/cp(lambda,beta)/Fcn1'
has a syntax error
This formula is the generic equation to model cp(lmbda,beta), what am I doing wrong? Do I need to define the coefficients or is it a simple syntax error? I have attached pictures of the wind tubine block parameter
  1 件のコメント
Ragul E
Ragul E 2023 年 4 月 12 日
Hi brother i'm having the same issue could you help me in solving this

サインインしてコメントする。

回答 (2 件)

Geetla Sindhu
Geetla Sindhu 2022 年 11 月 11 日
Hello Giovanni,
I understand that you are getting syntax error using MATLAB function block in Simulink.
The cause of this error is the use of square brackets [ ] for indexing the input vector. Instead, you can try using the following syntax to solve the issue.
function y = fcn(u)
y = c1*(c2/u(2) c3*u(3) c4)*exp(-c5/u(2)) + c6*u(1);
end
Hope this resolves your issue.
Thank you.
  4 件のコメント
Rajagurunathan P
Rajagurunathan P 2023 年 3 月 27 日
help me what i do any solution pls
Rajagurunathan P
Rajagurunathan P 2023 年 3 月 27 日
help me pls mam ....

サインインしてコメントする。


Sam Chak
Sam Chak 2023 年 3 月 27 日
The error clearly tells you that the math expression has a syntax error, which is a common error when programmer uses some characters incorrectly, or misses some punctuation marks.
In your case, you should use the hyphen-minus (-) an ASCII character, as if it is directly entered from the keyboard.
In short, use (-) instead of (–).

カテゴリ

Help Center および File ExchangeWind Power についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by