All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Q: Write a code that can solve an Otto cycle and make plots for it? a) Create a PV diagram. B) Output for thermal efficiency of the engine. Ans: Otto cycle is a set of processes of a thermodynamic cycle, which explains about spark ignition piston engine. This cycle describes the changes that occur, like…
ABHITEJA PADMA
updated on 08 Sep 2020
Q: Write a code that can solve an Otto cycle and make plots for it?
a) Create a PV diagram.
B) Output for thermal efficiency of the engine.
Ans: Otto cycle is a set of processes of a thermodynamic cycle, which explains about spark ignition piston engine. This cycle describes the changes that occur, like pressure, volume, temperature, entropy etc., during the process, when the mass of gas is considered. This cycle is commonly found in automobiles.
TDC: When the piston is at the top position of the cylinder known as TDC or Top Dead Centre.
BDC: When the piston is at the bottom position of the cylinder known as BDC or Bottom Dead Centre.
Engine parts and its position:
Otto cycle PV diagram:
Otto cycle consists of 4 stages. They are:
The Isentropic compression: This stage starts after suction of air-fuel mixture into the cylinder from the inlet port. Which means the piston is in BDC and contains the maximum volume. The piston is moved towards TDC and the compression takes place on the mixture. Here, the pressure is increased and the volume got decreased. Work is done on the system. This stage is also known as a compression stroke. This stage is represented by 1 to 2.
The isentropic compression ratio = V1/V2.
The Isochoric process with heat addition: When compression is done,(piston is at TDC) a spark is ignited to the mixture with the help of spark plug. The volume is constant and pressure is increased. This stage is also known as the ignition stage. This stage is represented by 2 to 3.
Explosion ratio = P3/P2.
The Isentropic expansion process: The piston is moved from TDC to BDC due to a force exerted by the mixture due to high pressure. Here, the work is done by the system. The volume is increased and the pressure is decreased. This is the stage where gases expansion occurs and known as the expansion process also a power stroke. This stage is represented by 3 to 4.
The isentropic expansion ratio = V1/V2.
The Isochoric process with heat rejection: The piston is at BDC and the pressure drops continuously with a constant volume. The gases will go out from the exhaust port, and the cycle comes to its initial stage. This stage is represented by 4 to 1.
Swept Volume: It is defined as the volume through which the piston is moved during a stroke.
Clearance Volume: It is defined as the volume left when the piston is at TDC.
Terms used in code:
Here, we use both methods for solving this problem and finally we conclude, which is the correct solution for this problem.
Input values for code:
With these initial values, we can find other values by using different expressions in our code.
Formulas for finding values of other terms:
Derivations at different state points:
Method 1:
Procedure:
Code:
clear all
close all
clc
% input
G = 1.4;
T3 = 2300;
% state variables
P1 = 101325;
T1 = 500;
% engine geometric parameters
BD = 0.1;
SL = 0.1;
CRL = 0.15;
CR = 12;
% calculating the swept volume and the clearance volume
SV = (pi/4) * BD^2 * SL ;
CV = SV/(CR - 1) ;
V1 = SV + CV ;
V2 = CV ;
% state variables at state point 2
P2 = P1 * CR ^G
T2 = P2 * V2 * T1 / (P1 * V1)
% state variables at state point 3
V3 = V2
P3 = P2 * (T3/T2)
% state variables at state point 4
V4 = V1
P4 = P3 * (V3/V4)^G
% Calculating thermal efficiency
TE = 1 - (1/(CR - 1)^G)
% Percentage
TEP = TE * 100
figure(1)
hold on
plot(V1, P1, '*', 'color','r')
plot(V2, P2, '*', 'color','r')
plot(V3, P3, '*', 'color','r')
plot(V4, P4, '*', 'color','r')
xlabel('Volume')
ylabel('Pressure')
figure(2)
plot([V1 V2 V3 V4 V1], [P1 P2 P3 P4 P1], 'color', 'c')
xlabel('Volume')
ylabel('Pressure')
Output in the command window:
Output figures for method 1: We get two figures i.e., one with the lines which are points of pressure and volume in red colour and lines in cyan colour.
This output is incorrect because we know, both isentropic processes will not be in straight lines. Pressure and volume changes in a curve manner. We should correct these solutions by changing straight lines into curves. Only isochoric processes have straight lines. This can be done by method-2.
Method 2:
To solve volume changes that occur inside the combustion chamber the below expression is used. The expression is derived from piston kinematics. The relation is a non-dimensional of a slider-crank model. In this relation, we solve, with the help of a crank angle.
V/CV = 1 + 0.5(CR - 1)[R + 1 - cos(theta) - (R^2 - sin(theta)^2)^0.5]
Since it is a very large expression, we divide it into various terms.
term1 = 0.5(CR - 1)
term2 = R + 1 - cos(theta)
term3 = (R^2 - sin(theta)^2)^0.5
Taking these terms with 'V' as a subject. We can write the whole expression as follows.
V = (1 + term1 * (term2 - term3)) * CV
We get more variables for finding the values.
R = ratio of connecting rod to crankpin radius.
a = crankpin radius
Since crankpin radius is half of the stroke length. We can write a formula as below.
a = SL/2
R = CRL/a
These expressions are added at starting of the code.
Procedure for code 1:
Code 1:
function V = oc_func2(BD, SL, CRL, CR, SC, EC)
a = SL/2 ;
R = CRL/a;
SV = (pi/4) * BD^2 * SL ;
CV = SV /(CR - 1) ;
theta = linspace(SC, EC, 100);
term1 = 0.5 * (CR - 1);
term2 = R + 1 - cosd(theta);
term3 = (R^2 - sind(theta).^2).^0.5;
V = (1 + term1 * (term2 - term3)).* CV;
end
Procedure for code 2:
Code 2:
clear all
close all
clc
% input
G = 1.4;
T3 = 2300;
% state variables
P1 = 101325;
T1 = 500;
% engine geometric parameters
BD = 0.1;
SL = 0.1;
CRL = 0.15;
CR = 12;
% calculating the swept volume and the clearance volume
SV = (pi/4) * BD^2 * SL ;
CV = SV/(CR - 1) ;
V1 = SV + CV ;
V2 = CV ;
% state variables at state point 2
P2 = P1 * CR ^G
T2 = P2 * V2 * T1 / (P1 * V1)
C = P1 * V1^G;
VC = oc_func2(BD, SL, CRL, CR, 180, 0)
PC = C./ VC.^G;
% state variables at state point 3
V3 = V2
P3 = P2 * T3/T2
C = P3 * V3^G;
VE = oc_func2(BD, SL, CRL, CR, 0, 180)
PE = C./ VE.^G;
% state variables at state point 4
V4 = V1
P4 = P3 * (V3/V4)^G
% Calculating thermal efficiency
TE = 1 - (1/(CR - 1)^G)
% Percentage
TEP = TE * 100
figure(1)
hold on
plot(V1, P1, '*', 'color','r')
Comp = plot(VC, PC, 'color', 'blue')
plot(V2, P2, '*', 'color','r')
plot(V3, P3, '*', 'color','r')
Expan = plot(VE, PE, 'color', 'magenta')
plot(V4, P4, '*', 'color','r')
Iso1 = plot([V2 V3], [P2 P3], 'color', 'green')
Iso2 = plot([V4 V1], [P4 P1], 'color', 'yellow')
xlabel('Volume')
ylabel('Pressure')
% adding legends
legend([Comp,Iso1,Expan,Iso2], {'Isentropic compression','Isochoric process with heat addition','Isentropic expansion','Isochoric process with heat rejection'})
Output in the command window:
The final figure for this solution:
We get curves for both isentropic processes and straight lines for both isochoric processes. Points are also denoted by '*'. We can observe changes in volume and pressure and also constant volume.
Points to remember:
Errors:
Conclusion: Therefore, method 1 is incorrect and while plotting and solving isochoric processes. Method 2 is correct and the solution is given correctly and the plot is in curve manner as shown in the above figure.
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 11 - Final project
Aim: To Creation of CAD model considering Class A surface, Nominal thickness and Attachment strategy. Objective: 1.To Creation of CAD model considering Class A surface, Nominal thickness and Attachment strategy.2.Create thickened part using master section for reference3.Create the mounting features as per design guidelines…
20 Dec 2021 10:17 AM IST
Week 9 - Project - Master Section Development
Aim : Design B-Pillar through master section Development. Step 1 : Create tooling axis. For creating the tooling axis first we extract this 4 boundries. Took a point between this 2 lines. then draw a bisecting line between this two line by using point. again bisect the remaining two lines. and finally bisect the resultant…
20 Dec 2021 10:10 AM IST
Week 9 - Project 1 - Door Applique Design with Engineering Features
Aim:Create the door applique plastic component,create tooling axis,Heat stakes & locators by using class A surface. Create tooling axis Make a close body by using Class A surface Create adrawing for 4 way locator Then pad the $ way locator sketch. After that give the thicken command to class A surface Give…
20 Dec 2021 10:02 AM IST
Week 9 - Attachment Feature Creation - Challenge 2
Aim: To create a screw boss and dog house for the centre console coin holder by considering design rules. General Guidelines for the creation of Bosses: Draft - 0.5 degrees on walls of boss Thickness - Typically 40%* of the nominal wall at the base. Height to Diameter Ratio…
04 Oct 2021 05:53 PM IST
Related Courses
0 Hours of Content
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.