Answered step by step
Verified Expert Solution
Question
1 Approved Answer
MATLAB 7.1: Balance Chemical Equations 1 by a third party Though your activity may be 0/20 recorded, a page refresh may be needed to fill
MATLAB
7.1: Balance Chemical Equations 1 by a third party Though your activity may be 0/20 recorded, a page refresh may be needed to fill the banner Balance Chemical Equations 1 Write a function BalanceChemical to balance chemical reactions by solving a linear set of equations. The inputs arguments are: 1. Reagents: Symbols of reagents in string row array 2. Products: Symbols of products in string row array 3. Elements: Elements in the reaction in string row array 4. EICmpReag: Elemental composition of reactants in two dimensional numeric array 5. EiCmpPrdcts: Elemental composition of prducts in two dimensional numeric array Hint: The first part of the problem is setting up the set of linear equations that should be solve. The second part of the problem is to find the integers from the solution. One way to do this is to mulitiply the rational basis for the nullspace by increasing larger integers untl both the let- and right-side integers exist. For example, for the reaction that involves CHs reacting with 02 to produce CO, and HO: "O2"); ["CO2", ["C",'W", "O"1 Reagents: ["CH4", ElCmpReag [1,4,8 Products "H20"); Elements ,0,2); where the first row corresponds to elements in Reagents (1). 2nd to Reagents(2), etc. given in the order specified by Elements ElCmpPrdcts 11,8,2; where the first row corresponds to Products (1). 2nd to Products (2), etc. given in the order specified by Elements. The outputs arguments are: 1. leftsidelntegers: Left-side integers of reactants to balance the equation 2. rightsidelnteger: Right-side integers products to balance the equation 3. coefMat: The coefficient matrix that was composed to balance the equation For example, balance CHs+0,-Co,+H.0 >>Reagents ["CH4", "O2"]; Products-["CO2"' ..H20"); Elements "CHO";ELCmpReag 11,4,8:,e,21: ElCmpPrdcts [1,0,2:0,2,1] o[leftsideIntegers, rightsideIntegers, coefMatBalanceChemical (Reagents,Products, Elements,ElCepReag, E LeftsideIntegers 1x2 uint8 row vector Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started