How would I solve for the two unknowns with 3 equations

5 ビュー (過去 30 日間)
Kevin Santos
Kevin Santos 2021 年 4 月 2 日
回答済み: Sulaymon Eshkabilov 2021 年 4 月 2 日
syms t2 T2
mr = 73.74
hfgr= 171.82e3
cpgr= 1040
t1=31.3
T1= 228.6
mw= 9
hfgw = 2173.7e3
cpgw = 2158
F = 1
Uo = 3712.385
Ao = 255.849
format short
% qr = qw = qlmtd
qr = mr*(hfgr + (.68*cpgr* (t2-t1)))
qw = mw*(hfgw + (.68*cpgw *(T1-T2)))
del1 = T1-t2
del2 = (T2-t1)
LMTD = (del1 - del2) / log(del1/del2)
qlmtd = F*Ao*Uo*LMTD
  3 件のコメント
Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021 年 4 月 2 日
Do you have the values of LMTD, qlmtd, del1, del2?
Kevin Santos
Kevin Santos 2021 年 4 月 2 日
sorry, I forgot to mention that qr = qw = qlmtd

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

採用された回答

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021 年 4 月 2 日
Here is the simple solution:
SOL = solve(mr*(hfgr + (.68*cpgr* (t2-t1)))==mw*(hfgw + (.68*cpgw *(T1-T2))), F*Ao*Uo*LMTD==mr*(hfgr + (.68*cpgr* (t2-t1))))
t2 = double(SOL.t2);
T2 = double(SOL.T2);
Good luck.

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by