Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

Week 2 Air standard Cycle

"""Otto_cycle"""import mathimport matplotlib.pyplot as plt def engine_kinematics(bore, stroke,con_rod, cr, start_crank, end_crank): #geometric parameters a = stroke/2 R = con_rod/a #volume parameters 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…

    Project Details

    Loading...

    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.

    Please  login to add a comment

    Other comments...

    No comments yet!
    Be the first to add a comment

    Read more Projects by Sai Gopal Dasari (4)

    Week 6 - Data analysis

    Objective:

    """Task to write a script basic performance of Engine with given engine_data Basic performance calculation Calculate the area under the P-V diagram. P is in column 2 and V is in column 8.Calculate the power output of this engine. Assume that RPM is 1500This engine consumed 20 micro grams of fuel (per 1 stroke cycle). Calculate…

    calendar

    14 Nov 2022 08:31 AM IST

      Read more

      Week 5 - Curve fitting

      Objective:

      import numpy as np import matplotlib.pyplot as pltfrom scipy.optimize import curve_fit #Curve fit funtion for linear polynomialdef func(t,a,b): return a*t +b #reading the thermodynamic data fliedef read_file(): temperature =[] cp =[] for line in open('data','r'): values =line.split(',') temperature.append(float(values[0]))…

      calendar

      04 Nov 2022 11:40 PM IST

        Read more

        Week 3 - Solving second order ODEs

        Objective:

        https://youtu.be/x98n8BcsuaU   import numpy as npfrom scipy.integrate import odeintimport matplotlib.pyplot as pltimport math # function that returns dz/dtdef model(theta,t,b,g,l,m): theta1 = theta[0] #displacement theta2 = theta[1] #velocity dtheta1_dt = theta2 dtheta2_dt = -(b/m)*theta2-(g/l)*math.sin(theta1) dtheta_dt…

        calendar

        27 Oct 2022 04:28 PM IST

          Read more

          Week 2 Air standard Cycle

          Objective:

          """Otto_cycle"""import mathimport matplotlib.pyplot as plt def engine_kinematics(bore, stroke,con_rod, cr, start_crank, end_crank): #geometric parameters a = stroke/2 R = con_rod/a #volume parameters 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…

          calendar

          27 Oct 2022 01:28 PM IST

            Read more
            Showing 1 of 4 projects