Rahul Sati
Engineers like to solve problems, If there are no Problems available they will create their own problems.
Skills Acquired at Skill-Lync :
Introduction
18 Projects
Air flow Rate for a Air standard Brayton Cycle
1) For calculating the Air flow rate for a Brayton cycle the we'll use the formula W = Cp[(t3-t4)-(t2-t1)]. 2) Brayton cycle consist of two Reversible constant pressure and two reversible adiabatic Process. 3) Heat addtion and rejection happens in constant pressure processes. 4) The efficiency of the Brayton cycle is given…
12 Sep 2018 09:07 AM IST
Flow over Bicycle
PART-1:- Drag force Vs Velocity When a cyclist ride a bicycle he is introduced to some resisting force developed by the air and this force is known as drag force . As the speed increases drag forces also increases keeping this concept in mind we have to write a programme in python to calculate the drag force. As we Know…
10 Nov 2018 09:42 PM IST
SIMULATION OF SIMPLE PENDULUM USING MATLAB
AIM :- To write codes on Matlab for simulation of the simple pendulum. We are going to use second oder differential equation to solve the simple pendulum simulation problem `(d^2theta)/(dt^2)+b/m(d theta)/(dt) + g/l sin(theta) = 0`. form above equation we will create two ODE ie `(d theta1)/dt = theta2`, and `(d theta2)/dt…
21 Nov 2018 05:09 AM IST
Calculation of ISFC and compression ratio
""" calculation for fuel consumption,ISFC. """ from scipy.optimize import fsolve import math import matplotlib.pyplot as plt # Given Data cv = 42000 # Calorific value of the fuel in kJ/kg. p1 = 1.33 p2 = 2.66 # Pressures at point a & b. n = 1.33 # polytropic index. eta_cycle = 0.5 # Air standard cycle efficiency. a…
26 Oct 2018 09:41 AM IST
Breaking Ice with Air cushion Vehicle - Find minimum pressure with Newton-Raphson method
In determining the minimum cushion pressure needed to break a given thickness of iceusing an air cushion vehicle, the following equation is used. where \'p\' denotes the cushion pressure, \'h\' the thickness of the ice field, \'r\' the size of the air cushion, \'σ\' the tensile strength of the ice, and \'β\'…
06 Oct 2018 10:21 AM IST
Constraint Minimization Using Lagrange Method
To Minimize the fuction 5 - (x-2)² - 2 (y-1)² subjected to constraint x+4y = 3 using Lagrange multiplier method. Solution: To solve this problem we will use Lagrange method for constrained minimization According to Lagrange, L = f - λg Where, f = 5 - (x-2)² - 2 (y-1)²…
13 Sep 2018 02:42 AM IST
Curve fitting for linear and cubic polynomial
1. a) Popt: Its a kind of array which gives the Optimal values for the parameters so that the sum of the squared residuals of f(xdata, *popt) - ydata is minimized. In simple language popt represents the coefficients defined in the function Ex. def func ( a,b,c) here a,b,c are the coefficients…
09 Oct 2018 03:48 AM IST
programme to calculate the drag force against the cyclist
PART-1:- When a cyclist ride a bicycle he is introduced to some resisting force developed by the air and this force is known as drag force . As the speed increases drag forces also increases keeping this concept in mind we have to write a programme in python to calculate the drag force. As we Know that Drag force = 0.5*rho*a*v*v*cd,…
09 Sep 2018 02:48 AM IST
Flow simulation through pipe for different reynolds number
Aim: To Run a pipe flow simulation with an inlet Reynolds number of 100,1000 and 10,000.And for each of these cases to do the following 1. Place line probes at 95%, 90% and 85% of the pipe length. 2. Compare the normalized velocity profile at each of these locations. 3. Normalize the velocity profile by the inlet…
16 Feb 2019 04:37 AM IST
CONDITIONALS AND FUNCTIONS
(a) x is given below. Write an if statement that will print whether x is positive, negative, or zero. x=-10 x = -10 if x == 0: print("x is positive") elif x > 0: print("x is positive") else: print("x is negative") (b) x and y are given below. Write an if statement that will print whether x and y are both positive, or…
06 Apr 2019 10:23 AM IST
Efficiency And P-V diagram For Air standard Otto cycle
To plot the P-V Diagram and to find the Efficiency for Air standard Otto Cycle By using python. Air Standard Otto Cycle -: Otto cycle is also called the constant volume cycle as the heat addition and heat rejection is done at a constant volume. Otto cycle is used in petrol and many other gas engines.…
19 Sep 2018 09:38 AM IST
Breaking Ice with Air cushion Vehicle - Find minimum pressure with Newton-Raphson method
In determining the minimum cushion pressure needed to break a given thickness of iceusing an air cushion vehicle, the following equation is used. where \'p\' denotes the cushion pressure, \'h\' the thickness of the ice field, \'r\' the size of the air cushion, \'σ\' the tensile strength of the ice, and \'β\'…
06 Oct 2018 10:21 AM IST
sinusoidal decay animation
Sinusoidal decay or Damping of sine waves: the codes written below is for showing the animation of sinusoidal decay. A sin wave equation used is given as y(t) = sin^2(Pi*t)*e^(-t/10). """ sinusoidal decay animation """ import numpy as np import matplotlib.pyplot as plt import matplotlib.animation as animation def…
19 Sep 2018 01:05 AM IST
Forward Kinematics of 2 R ROBOTIC ARM
Before Writing the codes We should have a basic knowledge about the Robotic field. Robotics is an emerging field nowadays. It is a multidisciplinary science, encompasssing a number of fields like Computer technology, Mechanical design, control engineering, Sensing, Kinematics and dynamics of machinery and manufacturing…
13 Sep 2018 12:20 AM IST
CURVE FITTING USING MATLAB
> Curve fit are helpful as they describe hoe your data changes mathematically. > Below is the programs for curve fitting using MATLAB. > In these programs our main motive is to predict the values of specific heat with respect to temperature to get a better fit. >As we can analyse…
28 Nov 2018 01:35 AM IST
Efficiency And P-V diagram For Air standard Otto cycle
To plot the P-V Diagram and to find the Efficiency for Air standard Otto Cycle By using python. Air Standard Otto Cycle -: Otto cycle is also called the constant volume cycle as the heat addition and heat rejection is done at a constant volume. Otto cycle is used in petrol and many other gas engines.…
19 Sep 2018 09:37 AM IST
ENGINE KINEMATICS AND EFFICIENCY OF OTTO CYCLE USING MATLAB
Air Standard Otto Cycle -: Otto cycle is also called the constant volume cycle as the heat addition and heat rejection is done at a constant volume. Otto cycle is used in petrol and many other gas engines. It consists of two reversible constant volume processes and two adiabatic processes. Efficiency…
11 Nov 2018 01:45 AM IST
Optimization of Two bar truss
For optimization we need to install a package GEKKO using PIP. Consider the design of a simple tubular symmetric truss shown in Fig. 1.1 below. A design of the truss is specified by a unique set ofvalues for the analysis variables: height (H), diameter, (d), thickness (t), separation distance (B), modulus of elasticity…
26 Oct 2018 09:40 AM IST
Here are the courses that I have enrolled
Similar Profiles
Ladder of success cannot be climbed with hands in pocket.
The Future in Motion
Give more than what you get you will get more than what you gave
Avid learner