フィルターのクリア

EES Matlab interface?

7 ビュー (過去 30 日間)
Ahmad Abubaker
Ahmad Abubaker 2020 年 2 月 15 日
コメント済み: ayman alkezza 2020 年 4 月 5 日
Can someone give me a point by point on how to use the EES in the Matlab, please?

回答 (1 件)

Dhananjay Kumar
Dhananjay Kumar 2020 年 2 月 17 日
See if this helps:
  1 件のコメント
ayman alkezza
ayman alkezza 2020 年 4 月 5 日
function [v,h] =Volume( fluid,T,P)
EESInput='FromMatlab.txt';
EESOutPut='ToMatlab.txt';
propinfo={fluid T P};
fid=fopen(EESInput,'W');
fprintf(fid,'%s %d %d',propinfo{:});
fclose(fid);
system (' C: \EES32 \EES.exe C:\Program Files\MATLAB\R2016b\bin\volume.ees /solve' );
v=dlmread(EESOutPut)
end
---------------------------------------------------------------------------

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

カテゴリ

Help Center および File ExchangeSimscape Fluids についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by