The program is coded to plot PV diagram for Otto Cycle using Matlab. A function is created to trace out the volume values during the compression and expansion process to maintain non-linearity of the isentropic processes, governed by the non-linear equation `PV^gamma`. The code assigned to the function calculates…
Arjun Damodar
updated on 22 May 2020
Project Details
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...
Read more Projects by Arjun Damodar (12)
Vehicle Propulsion Power Excel Calculator and Study of Range Rover Sport Dragon Challenge
Objective 1. To find the maximum speed of the motor used in an electric scooter capable to run at 90 km/h, if the fixed gear ratio is 7 and tire size is Case 1: 90/100 R10 53J and Case 2: 90/90 R18 51P? 2. To prepare a simple excel calculator to identify vehicle propulsion power based on given inputs and outputs. …
03 Feb 2021 07:38 PM IST
Implementation of State Flow Control Logic of Washing Machine and Gear Transmission
Objective 1: To implement control logic of a “washing machine” using Stateflow as per given sequence: If the power supply is available, the system gets activated If the Water supply is not available, stop the process & indicate through LED Soaking time should be 200s followed by Washing time…
03 Feb 2021 07:38 PM IST
Simulink Model of Doorbell using Solenoid Block and Thermistor
Objectives: To make a Simulink model of Doorbell using solenoid block and create a situation where the switch is closed for 2 seconds and then released. To make a Simulink model of Thermistor to sense the temperature of a heater & turn on or turn off the fan as per below conditions: Temperature source:…
03 Feb 2021 07:37 PM IST
Project 1 - Parsing NASA thermodynamic data
Aim: To parse NASA's thermodynamic data to extract documented coefficients and to evaluate the polynomials which define the thermodynamic properties such as Cp, H and S. Objectives: To write a function that extracts the 14 coefficients and calculates the enthalpy, entropy and specific heats for all the species in the data…
03 Feb 2021 07:37 PM IST
Curve fitting
Program 1: clear close all clc %Collecting the data data_set = load('data'); temp = data_set(:,1); cp = data_set(:,2); %Linear Curve Fitting coeff = polyfit(temp,cp,1); predicted_cp = polyval(coeff,temp); plot(temp,cp,'linewidth',3) hold on plot(temp,predicted_cp,'linewidth',3) xlabel('Temprature') ylabel('Specific…
03 Feb 2021 07:34 PM IST
Breaking Ice with Air cushion Vehicle - Python script to find minimum Pressure with Newton-Raphson method and the optimum Relaxation Factor.
Problem Statement: The problem is to write a python script solving the minimum value of pressure needed to break the ice of different thickness with air cushion vehicle using the Newton-Raphson method. The function given below defines the process and its influencing parameters. …
26 Jul 2020 06:00 PM IST
Genetic Algorithm to find the Global Maxima of a Stalagmite function using Matlab
Optimisation of Stalagmite function to find the global maxima using Genetic Algorithm Aim & Objectives: To understand the concept of Genetic Algorithm (GA) To write MATLAB code to optimise the stalagmite function and find the global maxima of the function. To investigate on the different statistical…
26 Jul 2020 05:59 PM IST
Solving second order ODEs using Matlab - Simple Pendulum with Damping
The problem is to solve the given ODE which represents the motion of a simple pendulum with damping. In the above equation, g = gravity in m/s2, L = length of the pendulum in m, m = mass of the ball…
25 May 2020 11:54 AM IST
Matlab script to trace out volume changes during Isentropic processes in order to plot PV diagram for Otto Cycle and to calculate its Thermal Efficiency
The program is coded to plot PV diagram for Otto Cycle using Matlab. A function is created to trace out the volume values during the compression and expansion process to maintain non-linearity of the isentropic processes, governed by the non-linear equation `PV^gamma`. The code assigned to the function calculates…
22 May 2020 07:41 AM IST
Program to solve the 2nd Order ODE representing the motion of a Simple Pendulum with Damping
The problem is to solve the given ODE which represents the motion of a simple pendulum with damping. In the above equation, g = gravity in m/s2, L = length of the pendulum in m, m = mass of the ball…
10 May 2020 12:39 PM IST
Program to plot PV Diagram for Otto Cycle and to calculate the Thermal Efficiency of the Engine
The program is coded to plot PV diagram for Otto Cycle using Python. A function is created to trace out the volume values during the compression and expansion process to maintain non-linearity of the isentropic processes, governed by the non-linear equation `PV^gamma`. The code assigned to the function calculates…
10 May 2020 12:28 PM IST
Forward Kinematics of a 2R Robotic Arm
The problem is to write a program in Matlab to simulate the forward kinematics of a 2R Robotic Arm. The angle between link1 of length l1 and the horizontal axis( base of the arm)…
10 May 2020 12:21 PM IST