Hello, everyone! Welcome to Chemical Engineering World! In this blog, I will share my solutions of the practice and exercise of some of the Chemical Engineering subjects. I hope that it benefits students who struggle in the study of the subjects. Do check it out and stay tuned! 😊 - Learn smart, study hard
Saturday, July 31, 2021
Roots Finding: Open Methods
Wednesday, July 28, 2021
Roots Finding: Open Methods
Problem 6.14.
In a chemical engineering process, water vapor (H2O) is heated to sufficiently high temperatures that a significant portion of water dissociates, or splits apart, to form oxygen and hydrogen:
H2O⇆H2+1/2O2
If it is assumed that this is the only reaction involved, the mole fraction x of H2O that dissociates can be represented by
Solution:
Roots Finding: Open Methods
Problem 6.4.
Determine the lowest positive root of f(x) = 7sin(x)e-x - 1: (a) Graphically. (b) Using the Newton-Raphson method (three iterations, x0 = 0.3). (c) Using the secant method (three iterations, x-1 = 0.5 and x0 = 0.4). (d) Using the modified secant method (five iterations, x0 = 0.3, δ = 0.01).
Solution:
Tuesday, July 27, 2021
Roots Finding: Open Methods
Problem 6.2.
Use (a) fixed-point iteration and (b) the Newton-Raphson method to determine a root of f(x) = -0.9x2 + 1.7x + 2.5 using x0 = 5. Perform the computation until εa is less than εs = 0.01%.
Solution:
Discussion:
Sunday, July 25, 2021
Roots Finding: Bracketing Methods
Problem 5.12.
Water is flowing in a trapezoidal channel at a rate of Q = 20 m3/s. The critical depth y for such a channel must satisfy the equation
Eq 5.12.(a)
Solution:
Firstly, compute a single function that only depends on y using Eq.5.12(a) by substituting the relation for B and Ac.
>> fy = 1- (400./(9.81*(3*y+y.^2/2).^3)).*(3+y);
>> plot(y,fy),grid,xlabel('y'),ylabel('f(y)')
Saturday, July 24, 2021
Roots Finding: Bracketing Methods
Problem 5.7.
(a) Determine the roots of f(x) = -12 - 21x + 18x2 - 2.75x3 graphically. In addition determine the first root of the function with (b) bisection and (c) false position. For (b) and (c), use xl = -1 and xu = 0, and a stopping criterion of 1%.
Solution:
Friday, July 23, 2021
Good day, everyone! My name is Shu Jia, currently an undergraduate chemical engineering student at Universiti Putra Malaysia. The main purpose of establishing this blog is to share my knowledge on some of the chemical engineering subjects by providing the solutions for example questions. Step-by-step solution will be provided so that you can understand how to solve the question, instead of just knowing the answers. Do subscribe to get the latest updates of solutions!
*Kind advice: Please try to do the questions on your own before referring to my solutions. The solution is just a guideline, full understanding on the related topic is always the priority to master a subject!
Numerical Integration Formulas
Here are the M-files to implement composite trapezoidal rule for equally spaced data and unequally spaced data. Composite Trapezoidal Rule ...
-
Problem 6.15. The Redlich-Kwong equation of state is given by Eq.(6.15(a)) where R = the universal gas constant [= 0.518 kJ/(kg K)], T = ab...
-
Here are the M-files to implement naive Gauss Elimination and Gauss Elimination with partial pivoting . Naive Gauss Elimination M-file func...
-
Problem 5.14. A reversible chemical reaction 2A + B ⇄ C can be characterized by the equilibrium relationship Eq.(5.14(a)) where the nomenc...