how to write the formula ?
古いコメントを表示
please help me to find the solution. thank you
回答 (2 件)
Ganesh Hegade
2016 年 10 月 25 日
編集済み: Ganesh Hegade
2016 年 10 月 25 日
HI,
Please do the following changes and check.
x = (b/ (1.2 + 0.01));
x = fix(x);
y = (c / (0.6 + 0.01));
y = fix(y);
z = x * y;
z = fix(z);
similarly,
o = (b/ (0.6 + 0.01));
o = fix(o);
p = (c / (1.2 + 0.01));
p = fix(p);
q = o * p;
q = fix(q);
For number of modules:
nNumnerOfModule = a * max(z,q);
Please set this to handle of NUMBER OF MODULE
Thanks.
Muhammad Farhan Aslam
2021 年 12 月 12 日
0 投票
x = (b/ (120+ 120));
x = fix(x);
y = (c / (0.6 + 0.01));
y = fix(y);
z = x * y;
z = fix(z);
カテゴリ
ヘルプ センター および File Exchange で Simscape Electrical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!