All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Aim: To write a MATLAB program to solve for an Ideal Otto Cycle with the following requirements, The program should create a PV diagram. The program should output the thermal efficiency of the engine. Otto cycle: An Otto cycle is one of the Air-Standard cycles that describe the workings of a typical spark-ignition internal…
Kapilesh K
updated on 11 Nov 2020
Aim: To write a MATLAB program to solve for an Ideal Otto Cycle with the following requirements,
Otto cycle: An Otto cycle is one of the Air-Standard cycles that describe the workings of a typical spark-ignition internal combustion engine. It describes a set of processes that take place while converting the chemical energy into thermal energy which is then used to achieve useful mechanical work.
The PV diagram of an ideal Otto cycle is represented as follows: (where Q1 and Q2 are the heat input and heat output respectively)
Fig 1. PV diagram of an Ideal Otto Cycle.
The processes involved in the Otto cycle is explained as follows:
Process 1 to 2:- This is the isentropic compression process during the compression stroke of the engine. Here, the charge mixture is compressed and hence, the pressure is increased, and the volume is decreased.
Process 2 to 3:- This is the constant volume heat addition process that happens when the charge is ignited with the spark. Because of the rapid chemical reaction during the combustion process, the pressure is increased at that moment while keeping a constant volume. This is also where the heat is added into the system.
Process 3 to 4:- This is the isentropic expansion process during the power stroke of the engine. Here, the rapid expansion due to the combustion process the piston travels towards the bottom dead center and hence the volume is increased, and the pressure is decreased.
Process 4 to 1:- This is the constant volume heat rejection process during the exhaust stroke to the engine. Here, the piston moves from the bottom dead center to the top dead center, and the combustion products are ejected. Hence, the pressure is decreased.
Ideal cycle vs actual cycle: The above set of processes and the PV diagram best describe an ideal Otto cycle with sharp transitions between each process. However, in reality the PV diagram of an actual Otto cycle would look something like the diagram below:
Fig 2. PV diagram of an actual Otto Cycle.
Several assumptions are made in an ideal cycle which causes the deviation from an actual cycle. Some of the assumptions made in an ideal cycle are as follows:
Formulae used to determine the different state variables in the Otto Cycle:-
Before we know how to calculate the state variables, we need the following engine parameters as inputs before computing the Pressure and Volume values at different states.
The inputs are: Bore, Stroke, Connecting Rod length, Initial Pressure (P1 assumed to be 1atm or 101325 pascals), Initial Temperature after the intake stroke (T1 in kelvins), and the temperature at the end of the compression stroke (T3 in kelvins).
Now, to compute the state variables:
At state one:
Swept volume = π4π4 x bore x stroke
Clearance volume = o
V1 = Swept volume + Clearance volume
V2 = Clearance volume (since the piston is at the top dead center)
At state two:
P1V1γ = P2V2γ (Isentropic compression process)
⇒ P2 = P1V1γ / V2γ
⇒ P2 = P1 (V1/V2)γ
⇒ P2 = P1(compression ratio) γ
From ideal gas law, we have: = constant
⇒ P1V1T1=P2V2T2P1V1T1=P2V2T2
⇒ T2=P2V2P1V1T1T2=P2V2P1V1T1
At state three:
State three represents the endpoint of the constant volume compression process. Hence we have,
V3 = V2
Again, using the ideal gas law: We have,
P3V3T3=P2V2T2P3V3T3=P2V2T2
⇒ P3=P2(T3T2)P3=P2(T3T2)
At state four:
State four represents the constant volume of heat rejection. Hence we have,
V4 = V1
⇒ P3V3γ = P4V4γ
⇒ P4 = P3 (V3/V4)γ
Now that the state variables are calculated, we will have the values for the following variables that can be used as the coordinates for the PV diagram in the Otto cycle:
[V1 V2 V3 V4], [P1 P2 P3 P4]
The processes 1 to 2 and 3 to 4 cannot be connected with straight lines because the volume of the combustion chamber will not vary linearly with the crank angle. Hence we use the following expression that describes the Piston Kinematics to calculate the volume trace for a value of θ.
VVc=1+12(rc-1)[R+1-cosθ〖-(R2-〖sin〗2θ)12〗]
Where V = Volume trace,
Vc = Clearance volume(m3),
rc = Compression ratio and
R = connecting rod length/crankpin radius, where crankpin radius = stroke/2.
The volume trace is derived from the above equation for a varying range of values of θ. And this can be used to define a separate user-defined function and the function can be called as many times as we want. In call the function twice in our program, once for the isentropic compression from process 1 to 2 and the second time at isentropic expansion from process 3 to 4.
The thermal efficiency of the engine is calculated as follows:
η=1-1r(γ-1)
The following is the user-defined function used to calculate the volume trace using the expression the describes the piston kinematics:
function [V] = engine_kinematics(bore,stroke,con_rod,cr,start_crank,end_crank)
crank_pin_radius = stroke/2;
R = con_rod/crank_pin_radius;
%Calculating swept volume and the clearance volume
v_s = (pi/4)*bore*stroke;
v_c = v_s/(cr-1);
theta = linspace(start_crank,end_crank,180);
%Seperating the piston kinematics expression into 3 terms for ease of use
term1 = (cr-1)*0.5;
term2 = R+1-cosd(theta);
term3 = (R^2 - sind(theta).^2).^0.5;
%Calculating the volume trace for the range of theta value
V = (1+term1*(term2-term3)).*v_c;
end
The following is the main program that is used to plot the PV diagram of an ideal Otto cycle and calculate the thermal efficiency of the engine for the sample engine parameters.
%MATLAB program to plot the PV diagram of an ideal Otto cycle
clear all
close all
clc
%The ratio of specific heats 'gamma' value is assumed to be 1.4
gamma = 1.4;
%Input state variables: P1(pascals), T1 and T2(kelvins)
p1 = 101325;
t1 = 500;
t3 = 2300;
%Sample input engine geometric parameters
bore = 0.1;
stroke = 0.1;
cr = 12;
con_rod = 0.15;
%Calculating the state variables in State 1
swept_volume = pi/4*(bore*stroke);
clearance_volume = swept_volume/(cr-1);
v1 = swept_volume + clearance_volume;
v2 = clearance_volume;
%Calculating the state variables in State 2
%Extracting P2 from isentropic compression process expressed as P1V1^gamma = P2V2^gamma
p2 = p1*cr^gamma;
%Extracting T2 from the ideal gas law that is expressed as PV/T = constant.
t2 = (p2*v2*t1)/(p1*v1);
%Calculating the state variables in State 3:
%At the end of constant volume compression, we have the following relation
v3 = v2;
%Extracting P3 from the ideal gas law that is expressed as PV/T = constant.
p3 = p2*(t3/t2);
%Calculating the state variables at State 4
%At the end of constant volume expansion, we have the following relation
v4 = v1;
%Extracting P4 from the isentropic expansion process expressed as P3V3^gamma = P4V4^gamma
p4 = p3*(v3/v4)^gamma;
%Calling the engine kinematics function to get the points to plot at compression
V_compression = engine_kinematics(bore,stroke,con_rod,12,180,0);
constant1 = p1*v1^gamma;
P_compression = constant1./V_compression.^gamma;
%Calling the engine kinematics function to get the points to plot at expansion
V_expansion = engine_kinematics(bore,stroke,con_rod,12,0,180);
constant2 = p3*v3^gamma;
P_expansion = constant2./V_expansion.^gamma;
%Following set of commands are used to plot the PV diagram for an ideal Otto cycle
figure(1)
hold on
plot(v1,p1,'*','color','r');
plot(V_compression,P_compression);
plot(v2,p2,'*','color','r');
plot(v3,p3,'*','color','r');
plot(V_expansion,P_expansion);
plot(v4,p4,'*','color','r');
plot([v2 v3],[p2 p3]);
plot([v1 v4],[p1 p4]);
xlabel('Volume(m^3)')
ylabel('Pressure(N/m^2)')
grid on;
%The percentage of Thermal Efficiency is calculated as follows
thermal_efficiency = (1 - 1/(cr^(gamma - 1)))*100
The output of the code will have the following plot and thermal efficiency value:
This concludes the project to write a program in MATLAB that
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...
Simulating Rayleigh-Taylor instability in Ansys Fluent.
Aim: The aim of this project is as follows: To discuss about the about the different CFD models that are based on the mathematical analysis of Rayleigh Taylor instability. Perform three different cases of CFD simulation of Rayleigh Taylor instability using Ansys Fluent. Discuss about Atwood number and how it affects the…
20 Oct 2021 08:21 AM IST
Simulating Conjugate Heat Transfer (CHT) analysis in an exhaust port using Ansys Fluent.
Aim: To simulate a conjugate heat transfer analysis in an exhaust port. Objectives: To set the mesh for exhaust port geometry with the appropriate y+ considerations and it is a conforming mesh between the solid and fluid components. To set up the test case in Ansys Fluent with appropriate boundary condition, run the solution…
29 Sep 2021 02:52 AM IST
Simulating an external flow over an Ahmed Body in Ansys Fluent.
Aim: To simulate an external flow over an Ahmed Body in Ansys fluent. Objectives: To use the split body function in Ansys SpaceClaim to get the required symmetrical geometry of the Ahmed body along its length. Use appropriate enclosures around the Ahmed Body geometry to get the required mesh quality that enables proper…
27 Jun 2021 05:27 PM IST
Week 2 - Flow over a Cylinder.
https://skill-lync.com/projects/to-study-the-flow-over-a-cylinder-and-von-karman-vortex-street-in-ansys-fluent The above link leads to the project file that solves for the given assignment.
10 Jun 2021 06:45 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.