Kinetic equation, R=R∞{1-exp(-Kt)}

16 ビュー (過去 30 日間)
Bharath KL
Bharath KL 2020 年 2 月 17 日
コメント済み: Bharath KL 2020 年 8 月 5 日
  2 件のコメント
Subhamoy Saha
Subhamoy Saha 2020 年 2 月 17 日
What is your question?
Bharath KL
Bharath KL 2020 年 2 月 17 日
I have a diffrent kinetics equctions, I know the values of the R, R∞, and t
how to put the values in matlab with code and how to plot the graph
Please help

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

回答 (1 件)

Jon
Jon 2020 年 2 月 17 日
編集済み: Jon 2020 年 2 月 17 日
It sounds like you may not be too familiar with using MATLAB at all.
If you need to get going quickly at using MATLAB I would highly recommend taking the time to complete the MATLAB On Ramp training
Here's a general pattern that you could follow and modify.
Basically you need an expression to evaluate your rate, then you need to evaluate this expression for each point in time that is of interest, finally plot the results.
Just to give you a place to get started you could do something like this.
Rinf = 100; % put what it is in your situation
k = 10; % put what it is in your situation
tFinal = 5; % here final time is 1000 s, you could change according to your needs
% define a vector of time values where you want the rate evaluated
t = linspace(0,tFinal,100)
% evaluate the rate equation for each time
R = Rinf*(1-exp(-k*t));
% plot the results
plot(t,R)
xlabel('time [s]')
ylabel('Rate')
  6 件のコメント
Bharath KL
Bharath KL 2020 年 8 月 5 日
Sorry is wrong
Bharath KL
Bharath KL 2020 年 8 月 5 日
because I don't know the value of k, My quection is find the k value in this equaction

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

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by