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

#program to plot pv diagram for otto cycle and thermal efficiency of the cycle import math import matplotlib.pyplot as plt def engine_kinematics(bore, stroke, con_rod, cr, crank_start,crank_end): #inputs bore = 0.1 stroke = 0.1 con_rod = 0.15 cr = 12 #crank pin radius a = stroke /2 R = con_rod / a # volume trace v_s =…

    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 rohit kumar (4)

    Week 6 - Data analysis

    Objective:

    """ Demonstrating file parsing in python """ # Import modules import matplotlib.pyplot as plt # Basic Initialisation line_count = 1 crank = [] pressure = [] temperature = [] volume = [] # File parsing starts here for line in open('engine_data.out'): if '#' not in line: crank.append(float(line.split()[0])) pressure.append(float(line.split()[1]))…

    calendar

    30 Jun 2020 06:09 PM IST

      Read more

      Week 5 - Curve fitting

      Objective:

      1. The popt are best fit argument for the variables. pcov variable contains the covariance matrix which indicates uncertainities and correlations between parameters. This is mostly useful when data has uncertainities. 2. np.array() is used so that array operations can be used on the list of temperatures. It is a part of…

      calendar

      30 Jun 2020 05:59 PM IST

        Read more

        Week 3 - Solving second order ODEs

        Objective:

        SOLVING 2ND ORDER ODE USING PYTHON   INTRODUCTION: ODE's represent the transient behaviour of a system, for example as of a pendulim. The pendulum has a string attached at one end and a bob is attachedat the other end.  If an initial velocity is given , the bobs starts swinging but the amplitudeof osciattion…

        calendar

        31 May 2020 12:02 AM IST

          Read more

          Week 2 Air standard Cycle

          Objective:

          #program to plot pv diagram for otto cycle and thermal efficiency of the cycle import math import matplotlib.pyplot as plt def engine_kinematics(bore, stroke, con_rod, cr, crank_start,crank_end): #inputs bore = 0.1 stroke = 0.1 con_rod = 0.15 cr = 12 #crank pin radius a = stroke /2 R = con_rod / a # volume trace v_s =…

          calendar

          17 May 2020 06:48 PM IST

            Read more
            Showing 1 of 4 projects