All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
AIM: 1. Write functions to calculate the stoichiometric co-efficient (ar) for each fuel 2. Show a plot that compares the effect of number of atoms of carbon on the stoichiometric co-efficient "ar". Compare how this trend changes with the fuel type (alkane, alkene and alkyne). THEORY: Combustion or burning is a high…
Naveen Gopan
updated on 25 May 2021
AIM:
1. Write functions to calculate the stoichiometric co-efficient (ar) for each fuel
2. Show a plot that compares the effect of number of atoms of carbon on the stoichiometric co-efficient "ar". Compare how this trend changes with the fuel type (alkane, alkene and alkyne).
THEORY:
Combustion or burning is a high temperature exothermic reaction. It happens between a fuel and oxygen (oxidant), giving out gaseous products, also termed as smoke.
Alkane is referred to as a saturated open chain hydrocarbon consisting of carbon-carbon single bonds. For a generic alkane fuel the combustion process will following the below equation:
CnH2n+2 + ar(O2 + 3.76N2) → aCO2 + bH2O + cN2
Here
n = Number of moles of C
ar = Stoichiometric co-efficient
a = Number of moles of Carbon-di-oxide
b = Number of moles of water
c = Number of moles of nitrogen
The stoichiometric coefficient is given by:
ar = 2a+b2 → Eq 1
n=a → Eq 2
2n+2 = 2b → n=b-1 → b=n+1 → Eq 3
Eq 2 and 3 in 1 gives:
ar = 3n+12
Alkene is referred to as a saturated open chain hydrocarbon consisting of carbon-carbon double bonds. For a generic alkene fuel the combustion process will following the below equation:
CnH2n + ar(O2 + 3.76N2) → aCO2 + bH2O + cN2
Here
n = Number of moles of C
ar = Stoichiometric co-efficient
a = Number of moles of Carbon-di-oxide
b = Number of moles of water
c = Number of moles of nitrogen
The stoichiometric coefficient is given by:
ar = 2a+b2 → Eq 1
n=a → Eq 2
n=b → Eq 3
Eq 2 and 3 in 1 gives:
ar=3n2
Alkyne is referred to as a saturated open chain hydrocarbon consisting of carbon-carbon triple bonds. For a generic alkyne fuel the combustion process will following the below equation:
CnH2n-2 + ar(O2 + 3.76N2) → aCO2 + bH2O + cN2
Here
n = Number of moles of C
ar = Stoichiometric co-efficient
a = Number of moles of Carbon-di-oxide
b = Number of moles of water
c = Number of moles of nitrogen
The stoichiometric coefficient is given by:
ar = 2a+b2 → Eq 1
n=a → Eq 2
n=b+1 → Eq 3
Eq 2 and 3 in 1 gives:
ar=3n−12
MATLAB Code to compares the effect of number of atoms of carbon on the stoichiometric co-efficient "ar"
function stoichiometric_calculator(max_number_c_atoms)
n=linspace(1,max_number_c_atoms,20);
for i=1:length(n)
ar1(i) = ((3*(n(i)))+1)/2; %stoichiometric coeficient for alkanes ar = 3n+1/2
ar2(i) = (3*n(i))/2; %stoichiometric coeficient for alkenes ar = 3n/2
ar3(i) = ((3*n(i))-1)/2; %stoichiometric coeficient for alkanes ar = 3n-1/2
end
plot(n,ar1,n,ar2,n,ar3)
grid on
xlabel('No: of Carbon Atoms')
ylabel('Stoichiometric Coefficient')
legend('Alkanes','Alkenes','Alkynes')
end
Here, the user of the calculator can determine what should be the maximum number of carbon atoms.
We can enter the following line of code to call on the fuction
stoichiometric_calculator(20)
or
stoichiometric_calculator(30)
or
stoichiometric_calculator(50)
depending on user descretion.
OBSERVATIONS:
OUTPUT FOR stoichiometric_calculator(20)
OUTPUT FOR stoichiometric_calculator(30)
OUTPUT FOR stoichiometric_calculator(50)
CONCLUSION:
LINK TO CODE: https://drive.google.com/file/d/1YQC7wmVjQhqQngXkzD26-1dUWjQIS4SJ/view?usp=sharing
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Week 3.5 - Deriving 4th order approximation of a 2nd order derivative using Taylor Table method
AIM: Derive the following 4th order approximations of the second-order derivative. 1. Central difference 2. Skewed right-sided difference 3. Skewed left-sided difference After deriving these schemes, prove that your skewed schemes are fourth-order accurate Writing a program in Matlab to evaluate the second-order…
02 Jun 2021 02:17 PM IST
SIMULATION OF DAMPED HARMONIC MOTION OF A SIMPLE PENDULUM USING MATLAB
AIM: To write a program that solves the ODE representing the equation of motion of a simple pendulum with damping and to produce the simulation of motion for this damped oscillation. OBJECTIVE: To write the neccessary code to solve the 2nd order ODE of damped harmonic motion using MATLAB. To plot the angular displacement…
27 May 2021 01:49 PM IST
STOICHIOMETRIC COMBUSTION COEFFICIENT CALCULATOR USING MATLAB
AIM: 1. Write functions to calculate the stoichiometric co-efficient (ar) for each fuel 2. Show a plot that compares the effect of number of atoms of carbon on the stoichiometric co-efficient "ar". Compare how this trend changes with the fuel type (alkane, alkene and alkyne). THEORY: Combustion or burning is a high…
25 May 2021 11:08 AM IST
DESIGN OF A BY-PASS VALVE
AIM: Design of a Solenoid in-line By-Pass Valve with Inlet Día of ∅9 mm and Outlet Día of ∅11 mm using Autodesk Inventor. SOLENOID VALVE: A solenoid valve is an electromechanically operated valve. Solenoid valves differ in the characteristics of the electric current they use, the strength of the…
01 Nov 2020 10:12 AM IST
Related Courses
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.