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 program in Python to solve an Otto cycle and make plots for it. OBJECTIVE : To solve and find out different state variables in the Otto cycle and plot its a p-V diagram. To calculate the thermal efficiency of the given Otto cycle. THEORY: The Otto cycle is the perfect cycle for sparkle…
Sourabh Lakhera
updated on 17 Jul 2020
AIM: To write a program in Python to solve an Otto cycle and make plots for it.
OBJECTIVE :
THEORY: The Otto cycle is the perfect cycle for sparkle starts responding motors. In most flash start motors, the cylinder executes four complete strokes (two mechanical cycles) inside the chamber, and the driving rod finishes two insurgencies for each thermodynamic cycle. These motors are called four-stroke interior ignition motors.
At first, both the admission and the fumes valves are shut, and the cylinder is at its most minimal position (BDC). During the pressure stroke, the cylinder moves upward, packing the air-fuel blend. Without further ado before the cylinder arrives at its most elevated position (TDC), the sparkle plug fires and the blend touches off, expanding the weight and temperature of the framework. The high-pressure gases power the cylinder down, which thus powers the driving rod to turn, creating a valuable work yield during the development or force stroke. Toward the finish of this stroke, the cylinder is at its most minimal position (the culmination of the main mechanical cycle), and the chamber is loaded up with ignition items. Presently the cylinder moves upward once again, cleansing the fumes gases through the fumes valve (the fumes stroke), and during a time, attracting the natural air-fuel blend through the admission valve (the admission stroke). Notice that the weight in the chamber is somewhat over the air an incentive during the fumes stroke and marginally underneath during the admission stroke.
Fig.1 -Actual and ideal cycles in spark-ignition engines and their p-V diagrams.
The four processes in an Otto cycle are:
GOVERNING EQUATIONS :
Various equations of the Otto cycle are involved in this project. These are :
where R = length of connecting rod/crank radius ,
BODY OF THE CONTENT :
EXPLANATION OF PYTHON CODES :
PYTHON CODE FOR SOLVING AND PLOTTING CURVE :
''' A program to calculate different state variables in an Otto Cycle and
to calculate its thermal efficiency and plot it on p-v diagram '''
import math
import matplotlib.pyplot as plt
def engine_kinematics(bore,stroke,connecting_rod,c_r,start_crank_angle,end_crank_angle):
# Engine geometrical parameters
r = stroke/2
n = connecting_rod/r
# Engine Volume related parameters
v_swept = (math.pi/4)*pow(bore,2)*stroke
v_clearance = v_swept/(c_r -1)
# For different values of theta we have to calculate the variables
theta_startcrank = math.radians(start_crank_angle)
theta_endcrank = math.radians(end_crank_angle)
num_val = 100
dtheta = (theta_endcrank - theta_startcrank)/(num_val - 1)
V = []
for i in range(0,num_val):
theta = theta_startcrank + i*dtheta
term_1 = 0.5*(c_r - 1)
term_2 = n + 1 - math.cos(theta)
term_3 = (pow(n,2) - pow(math.sin(theta),2))
term_3 = pow(term_3,0.5)
V.append((1 + term_1* (term_2 -term_3))*v_clearance)
return V
# Inputs varibale
gamma = 1.4 # for air gamma= 1.4
T3 = 2000 #After constant volume heat addition(i.e max temp inside engine cylinder)
# State variable
# ambient atmospheric conditions assumed
p1 = 101325 #(in pascals)
T1 = 350 #(in kelvin)
# Engine geometry properties
bore = 0.15
stroke = 0.2
connecting_rod = 0.8
c_r = 10
# Calculating swept volume and clearance volume
v_swept = (math.pi/4)*pow(bore,2)*stroke
v_clearance = v_swept/(c_r -1)
v1 = v_swept + v_clearance
v2 = v_clearance
# Variables at state point 2
# p2*v2^gamma = p1*v1^gamma --- ..............Isentropic compression
p2 = p1* pow(c_r,gamma) #...........we know (v1/v2) is compression ratio
# (p1v1)/T1 = (p2v2)/T2 |(p1v1)/T1 = rhs | (p2v2)/T2 = rhs | T2 = p2*v2*T1/(p1*v1)
T2 = p2*v2*T1/(p1*v1)
V_comp = engine_kinematics(bore,stroke,connecting_rod,c_r,180,0)
C_const = p1*pow(v1,gamma)
P_comp = []
for v in V_comp:
P_comp.append(C_const/pow(v,gamma))
# State variables at state point 3
v3 = v2 # Isochoric process(Volume is constant)
''' (p3*v3)/T3 = (p2*v2)/T2 |as volume is same | p3 = p2*T3/(T2) '''
p3 = p2*T3/(T2)
V_expp = engine_kinematics(bore,stroke,connecting_rod,c_r,0,180)
C_const = p3*pow(v3,gamma)
P_expp = []
for v in V_expp:
P_expp.append(C_const/pow(v,gamma))
# state variables at state point 4
v4 = v1 # Isochoric process(Volume is constant)
''' p3*v3^gamma = p4*v4^gamma ''' # Isentropic expansion process(ds = 0)
p4 = p3*pow(v3,gamma)/pow(v4,gamma)
''' (p3*v3)/T3 = (p4*v4)/T4 | T4 = p4*v4*T3/(p3*v3) '''
T4 = p4*v4*T3/(p3*v3)
plt.plot(V_comp,P_comp)
plt.plot([v2,v3],[p2,p3])
plt.plot(V_expp,P_expp)
plt.plot([v4,v1],[p4,p1])
plt.ylim([-500000,8000000])
plt.xlim([0,0.005])
plt.xlabel('Volume (m^3)')
plt.ylabel('Pressure(Pa)')
plt.title('p-V diagram of an Otto Cycle')
plt.text(0.00385,-250000,r'$ 1 $')
plt.text(0.0002,2000000,r'$ 2 $')
plt.text(0.0002,5850000,r'$ 3 $')
plt.text(0.00385,400000,r'$ 4 $')
plt.grid()
plt.show()
#Calculating thermal efficiency
thermal_efficincy = 1- (1/pow((c_r),(gamma-1)))
print('Thermal efficiency of given Otto Cycle is :',thermal_efficincy)
RESULTS :
CONCLUSION: The desired and correct p-V diagram of the Otto cycle was obtained using an array of volume inside the engine cylinder at a different crank angles.
REFERENCES:
1.Engineering Thermodynamics by PK NAG
2 . The Internal combustion engine (Otto Cycle)
NOTATIONS :
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...
Project 1 - Data Cleaning and Transformation using Pivot table and Charts for the Report on requirement of Team Hiring
Project Documentation: Optimizing Team Hiring Insights through Data Cleaning and TransformationIntroductionIn today's data-driven environment, businesses thrive on informed decision-making. At ABC Private Limited, a manufacturer and seller of diverse products ranging from Classic Cars to Trucks and Buses, understanding…
26 Sep 2024 02:54 PM IST
Project 2
Project Documentation: Alumni Career Choices AnalysisAimThe aim of this project is to analyze the career choices of alumni from two universities with respect to their passing year and the courses they completed. This analysis helps in understanding the career growth of alumni, which plays a crucial role in the institute's…
10 Jul 2024 08:03 AM IST
Project 1
From the series of queries and actions conducted on the database, several insights can be derived regarding the user demographics and their activities on the platform. Firstly, the database contains information about users' demographics, such as their gender, country, language, and usage of applications like…
28 Feb 2024 07:45 PM IST
Project 2 - EDA on Vehicle Insurance Customer Data
EDA on Vehicle Insurance Customer Data Aim: The aim of this project is to perform exploratory data analysis (EDA) and data cleaning on two datasets containing customer details and policy details. The objective is to prepare the data for future analysis and modeling, identify patterns, and derive insights to aid business…
19 Feb 2024 08:36 PM 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.