All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
g_drive link: https://drive.google.com/drive/folders/1mwlGUaGJyMrs0zaj7CcsVDp8T3jkt2CQ Aim write the code for otto cycle and ploting the pv diagram and output the thermal efficiency of the engine. Introduction the cycle is defined as the series of operation or processes performed…
KANNAN SARAVANAN
updated on 06 Nov 2020
g_drive link: https://drive.google.com/drive/folders/1mwlGUaGJyMrs0zaj7CcsVDp8T3jkt2CQ
Aim
Introduction
Otto cycle
This process involves the motion of piston from TDC to BDC. The air that is sucked into cylinder during suction stroke undergoes reversible adiabatic (isentropic) compression. Since the air is compressed, the pressure increases from P1 to P2, the volume decreases from V1 to V2, temperature rises from T1 to T2, and entropy remains constant.
This process is an isochoric process i.e. the heat is added to the air at constant volume. The piston in this process rest for a moment at TDC and during this time heat is added to the air through external source. Due to the heat addition, the pressure increases from P2 to P3, pressure, volume remains constant(i.e. V2=V3), temperature increases from T2 to T3 and entropy increases from S2 to S3.
In this process, the isentropic (reversible adiabatic) expansion of air takes place. The piston moves from TDC to BDC. Power is obtained in this process which is used to do some work. Since this process involves expansion of air, so the pressure decreases from P3 to P4, volume increases from V3 to V4, temperature falls from T3 to T4 and entropy remains unchanged (i.e. S3=S4).
In this process, the piston rest for a moment at BDC and rejection of heat takes place at constant volume. The pressure decreases from P4 to P1, Volume remains constant (i.e. V4=V1), temperature falls from T4 to T1.
#output request
plt.plot([v2,v3],[p2,p3])
plt.plot(V_compression,P_compression)
plt.plot(V_expansion,P_expansion)
plt.plot([v4,v1],[p4,p1])
plt.xlabel('volume')
plt.ylabel('pressure')
plt.show()
# write the code for otto cycle and ploting the pv diagram and output the thermal efficiency of the engine.
import math # for math calculation
import matplotlib.pyplot as plt #for graph plot purpose
bore=0.1
stroke=0.1
con_rod=0.15
cr=8
def engine_kinematics(bore,stroke,con_rod,cr,start_crank,end_crank):
#geometry parameters
a=stroke/2
R=con_rod/a
V_s = math.pi*(1/4)*pow(bore,2)*stroke
V_c = V_s/(cr-1)
sc =math.radians(start_crank)
ec =math.radians(end_crank)
num_values=60
dtheta=(ec-sc)/(num_values-1)
v = []
for i in range(0,num_values):
theta= sc + i*dtheta
term1 =0.5*(cr-1)
term2 = R +1 - math.cos(theta)
term3 = pow(R,2)-pow(math.sin(theta),2)
term3 = pow (term3,0.5)
v.append((1+term1*(term2-term3))*V_c)
return (v)
#basic inputs data
p1=101325 #pressure is pascal
t1=500 #temp is kelvin
gamma=1.4
t3=2300 #peak temp
#state point 1
V_s = math.pi*(1/4)*pow(bore,2)*stroke
V_c = V_s/(cr-1)
v1=V_s+V_c
#state point 2
v2 =V_c
p2=(p1*pow(v1,gamma))/pow(v2,gamma)
rhs=p1*v1/t1
t2=p2*v2/rhs
V_compression = engine_kinematics(bore,stroke,con_rod,cr,180,0)
constant=p1*pow(v1,gamma)
P_compression=[]
for v in V_compression:
P_compression.append(constant/(pow(v,gamma)))
#state pint 3
v3 = v2
rhs=p2*v2/t2
p3=rhs*t3/v3
V_expansion =engine_kinematics(bore,stroke,con_rod,cr,0,180)
constant=p3*pow(v3,gamma)
P_expansion=[]
for v in V_expansion:
P_expansion.append(constant/(pow(v,gamma)))
#state point 4
v4= v1
p4=(p3*pow(v3,gamma))/pow(v4,gamma)
t4=p4*v4/rhs
#thermal efficiency
n=1-((t4-t1)/(t3-t2))
print (n)
#output request
plt.plot([v2,v3],[p2,p3])
plt.plot(V_compression,P_compression)
plt.plot(V_expansion,P_expansion)
plt.plot([v4,v1],[p4,p1])
plt.xlabel('volume')
plt.ylabel('pressure')
plt.show()
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 - Solving second order ODEs
Gdrive: https://drive.google.com/drive/folders/1mwlGUaGJyMrs0zaj7CcsVDp8T3jkt2CQ AIM Your objective is to write a program that solves the following ODE. This ODE represents the equation of motion of a simple pendulum with damping. Program import numpy as np from scipy.integrate import odeint # for intagration purpose…
09 Nov 2020 10:30 AM IST
Week 2 Air standard Cycle
g_drive link: https://drive.google.com/drive/folders/1mwlGUaGJyMrs0zaj7CcsVDp8T3jkt2CQ Aim write the code for otto cycle and ploting the pv diagram and output the thermal efficiency of the engine. Introduction the cycle is defined as the series of operation or processes performed…
06 Nov 2020 08:02 AM IST
Bird Strike - Project - 2
G dive link: https://drive.google.com/drive/folders/1S18pT4BTUAOJ-_CcfmpdcvvKG5dY2Guq Aim: The bird, casing, and the blades should be in different input files and there should be one main file referencing all the input files. The main file should contain only references. Control cards and boundary conditions…
01 Oct 2020 02:53 PM IST
week-11 Joint creation and Demonstration
G-drive link: https://drive.google.com/drive/u/0/folders/1S18pT4BTUAOJ-_CcfmpdcvvKG5dY2Guq Simulation video link: https://drive.google.com/drive/u/0/folders/16dxW1p2dg8mwujoqqLEpOK45ycAKQg3g Aim: to create the various type of joints based on the ls dyna user guide 1.revoulte joints 2.spherical joints 3.cyclinderical…
17 Sep 2020 02:56 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.