Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Matlab code used: % Given: % dX/dL = eta*RNH3*A/2*FN2 % Known parameters eta = 0.6527 RNH3 = 56791.1128 A = 0 FN2 = 135.43 %

Matlab code used:

% Given:

% dX/dL = eta*RNH3*A/2*FN2

% Known parameters

eta = 0.6527

RNH3 = 56791.1128

A = 0

FN2 = 135.43

% Function used

func = @(A) eta*RNH3*A/2*FN2

X = func(A)

while abs(x-y)>0.00001

x=y

n=n+1

y=func(A)

end

I can't seem to iterate this to 97% conversion to determine the area of reactor (A) required using Matlab. Pls correct the Matlab code too.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Introduction to Chemical Engineering Thermodynamics

Authors: J. M. Smith, H. C. Van Ness, M. M. Abbott

7th edition

71247084, 978-0071247085

More Books

Students also viewed these Chemical Engineering questions

Question

Most countries effectively impose an infinite tax on organ sales.

Answered: 1 week ago