필터 지우기
필터 지우기

Matlab code to solve an integral

조회 수: 3 (최근 30일)
Marina Gonzalez
Marina Gonzalez 2019년 6월 15일
편집: KALYAN ACHARJYA 2019년 6월 15일
Hello! I need some help with Matlab.
I would like to solve and plot the following function:
kjb.PNG
I know everything except for W and x. I want to plot x vs. W, and the values of x should go from 0 to 1.
kw = 91371;
Ca0 = 1.81 * 10 ^ -4;
Fa0 = 0.1233;
K = 2;
Thank you in advance.
  댓글 수: 1
Walter Roberson
Walter Roberson 2019년 6월 15일
The value of the expression goes to infinity as x approaches 1, and the integral does as well. The integral is
(4116815215161981957*A)/1525375194746818396160000 - (2711395674095616*log(1 - A))/363677786528305625

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

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 6월 15일
편집: KALYAN ACHARJYA 2019년 6월 15일
#Edited
syms x
kw = 91371;
CaO= 1.81 * 10 ^ -4;
FaO= 0.1233;
K = 2;
fun = (FaO*(1+(K*CaO)*(1-x)))/(kw*CaO*(1-x))
int(fun)
  댓글 수: 4
Walter Roberson
Walter Roberson 2019년 6월 15일
This is incorrect code. The 1+ K*Ca0 is not being multiplied by (1-x) in the original formula: it is 1 + (K*Ca0)*(1-x) .
KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 6월 15일
@Walter Yes, Edited Thanks sir

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by