All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
AIM : To visualize P-V Diagram of Otto Cycle and to calculate thermal efficiency using Matlab. OBJECTIVE : To study the Otto Cycle and write a program to calculate the state variables of Otto Cycle. To write a program to plot a P-V diagram of the Otto Cycle. To calculate Thermal Efficiency of Otto Cycle using Matlab. THEORY…
Vinit Velekar
updated on 04 May 2020
AIM : To visualize P-V Diagram of Otto Cycle and to calculate thermal efficiency using Matlab.
OBJECTIVE :
THEORY :
Air Standard Cycle –
To carry out the analysis of the heat engines, the concept of air standard cycles was conceived. In these cycles certain mass of air is considered to be working in the thermodynamic cycle. The addition and rejection of heat is considered to take place with the external reservoir and ideally all the processes are reversible. The internal combustion engines are considered to be working on the principle of air standard cycles. The two most commonly used air standard cycles are Otto cycle and Diesel cycle. The Otto cycle corresponds to four stroke gasoline or petrol engines also called Spark Ignition (SI) engines. The Diesel cycle corresponds to four stroke Diesel engines also called as Compression Ignition (CI) engines.
Assumptions made in Air Standard Cycles -
Otto Cycle –
The Otto cycle is an air standard cycle which approximates the processes in petrol or diesel engines. It is based on constant volume heat addition (combustion) and heat rejection processes, and isentropic compression and expansion. The air-standard Otto cycle is the idealized cycle for spark-ignition internal combustion engines. This cycle is shown above on P–V and T-S diagrams. The spark-ignition engine is modelled with this Otto cycle. The actual P-V diagram for an engine has rounded corners because of the processes of combustion take place at a finite rate. The Ideal Otto cycle has sharp corners because the ‘combustion’ is switched on and off instantaneously.
The Otto cycle 1 → 2 → 3 → 4 consists of following four processes:
Process 1 → 2: Reversible adiabatic compression of air;
Process 2 → 3: Heat addition at constant volume;
Process 3 → 4: Reversible adiabatic expansion of air;
Process 4 → 1: Heat rejection at constant volume.
A typical engine cycle of four-stroke petrol engine is defined in the above figure. It consists of a compression stroke(a), followed by a period of combustion close to top dead centre(b) and then by expansion(c). These two strokes form the power producing processes, but afterwards the products of combustion have to be replaced by fresh air. So the exhaust valve is open at the beginning of the exhaust stroke and the burnt gases is expelled away by the upward motion of the piston(d). In a four-stroke engine the piston executes two complete revolutions of the crankshaft, and uses two strokes while the gas is pushed out by the piston on the up stroke, and then the intake valve is opened to enable air to be induced.
Detailed Processes –
Vs=π4×d2×l
where,
d = diameter or bore of the piston;
l = height of the piston.
Vc=Vs(rc−1)
where,
rc = Compression Ratio of the cylinder.
VT=Vs+Vc
PVγ=Constant
where,
P = Pressure of the system;
V = Volume of the system;
g = Value of ratio of specific heats for the fluid.
PVT=Constant
VVc=1+12(rc−1)[R+1−cosθ−(R2−sin2θ)12]
where,
V = Volume inside cylinder when piston is at an angle θ.
R = Ratio of length of connecting rod to crank pin radius (a).
Also crank pin radius (a) = stroke length l/2
η=1−(1r(γ−1)c)
MATLAB Program :
%Program to plot otto cycle PV diagram
clear all
close all
clc
%Inputs
gamma = 1.4;
t3 = 3500; %in Kelvin
%State variables
p1 = 150500; %in Pa
t1 = 700; %in Kelvin
%Engine Geometric Parametres
bore = 0.3; %in metres
stroke = 0.3; %in metres
con_rod = 0.15; %in metres
cr = 14;
%Calculating swept volume and clearance volume
v_s = (pi/4)*bore^2*stroke;
v_c = v_s/(cr-1);
v1 = v_s + v_c;
v2 = v_c;
%State variables at state point 2
%Using equation p2v2^gamma = p1v1^gamma
%p2 = p1*(v1/v2)^gamma = p1*cr^gamma
p2 = p1*cr^gamma;
%p1v1/t1 = p2v2/t2 | t2 = p2*v2*t1/(p1*v1)
t2 = p2*v2*t1/(p1*v1);
constant_c = p1*v1^gamma;
V_compression = Otto_cycle_formula(bore,stroke,con_rod,cr,180,360);
P_compression = constant_c./V_compression.^gamma;
%State variables at state point 3
v3 = v2;
%p3v3/t3 = p2v2/t2 | p3 = p2*t3/t2
p3 = p2*t3/t2;
constant_c = p3*v3^gamma;
V_expansion = Otto_cycle_formula(bore,stroke,con_rod,cr,0,180);
P_expansion = constant_c./V_expansion.^gamma;
%State variables at state point 4
v4 = v1;
%p3v3^gamma = p4v4^gamma | p4 = p3(v3/v4)^gamma
p4 = p3*(v3/v4)^gamma;
t4 = p4*v4*t3/(p3*v3);
%THERMAL EFFICIENCY
Thermal_Efficiency = 1-((cr)^(1-gamma))
%Plotting
figure(2)
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],'color','b')
plot([v4 v1],[p4 p1],'color','b')
Step-wise Explanation of the Code :
function [V] = Otto_cycle_formula(bore,stroke,con_rod,cr,start_crank,end_crank)
a = stroke/2;
R = con_rod/a;
v_s = (pi/4)*bore^2*stroke;
v_c = v_s/(cr-1);
theta = linspace(start_crank,end_crank,200);
t1 = 0.5*(cr-1);
t2 = R + 1 - cosd(theta);
t3 = (R^2 - sind(theta).^2).^0.5;
V = (1 + t1*(t2 - t3)).*v_c;
end
Plot for P-V diagram :
Values from Workspace :
ERRORS :
RESULTS :
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 - 5 - Modelling Spotwelds
AIM : To model spotwelds for the given assembly of parts and run a crash test in LS-DYNA. OBJECTIVES: To create a rigidwall in LS-Dyna on which the spotweld model can impact. To apply initial velocity of 50 kmph to the model. To run the simulation of model using two different types of spotweld i.e. beam spotweld and solid…
02 Jun 2021 05:56 AM IST
Meshing of Vehicle Side Door Plastic Model | HyperMesh
AIM : To mesh the plastic component of a passenger vehicle side door as shown below with the given quality criteria. Quality Criteria – Target Element Length = 4 mm PROCEDURE : At first we will open Hypermesh and choose our User Profile as RADIOSS. Then we will import the model using Import Tab. After importing…
29 May 2021 06:45 AM IST
Meshing of plastic component of the Vehicle Floor panel | HyperMesh
AIM : To mesh the plastic component of the vehicle Floor panel model as shown below with the given quality criteria. Quality Criteria – Target Element Length = 5 mm PROCEDURE : At first we will open Hypermesh and choose our User Profile as RADIOSS. Then we will import the model using Import Tab. After importing…
29 May 2021 06:45 AM IST
Side Pole Crash Simulation Challenge | HyperMesh
OBJECTIVE : To perform side crash analysis of a vehicle against a rigid cylindrical wall or a Pole in Hypermesh. To simulate the crash behavior of the vehicle in HyperView and discuss the results. To plot the sectional forces at cross members and discuss the results. To obtain intrusion results at B-pillar, hinge pillar…
29 May 2021 06:43 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.