필터 지우기
필터 지우기

Solving an implicit equation (iteration)

조회 수: 26 (최근 30일)
Hammaad Shafi
Hammaad Shafi 2022년 2월 9일
댓글: Hammaad Shafi 2022년 2월 10일
I'm stuck at this question which is part of our chemical engineering comp lab. thanks in advance for your help.

채택된 답변

AndresVar
AndresVar 2022년 2월 10일
The formula has the form of an atracting fixed point if it looks like A=f(A) (and other conditions see the links below), then you can find the value of A by guessing an initial value A1:
A2=f(A1)
then try again
A3=f(A2)
and so on..
A(n+1)=f(A(n))
...
Eventually A(n) = A(n+1) and that's the fixed point solution.
In matlab you can make a function
function Phi2 = Phif(Re,Phi1)
% note the eq(3) is not quite Phi2=Phif(Re,Phi1), but ALMOST, just needs a
% little one step tweak
end
then call this function many times. The first call you guess a value, for the next calls you use the Phi2 output.
Instead of writing many calls just put the call in a loop and make the loop break when Phi1 is close enough to Phi2 (for example their absolute difference is very small)
when you get your asnwer, verify it by pluggin it in.
See:
  댓글 수: 1
Hammaad Shafi
Hammaad Shafi 2022년 2월 10일
thank you for the response. I am still struggling on how to tweak equation 3 and how to start implementing the loop

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Chemistry에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by