import math import matplotlib.pyplot as plt \"\"\" function is created by define with name Engine Kinematics \"\"\" def engine_kin(bore,stroke,con_rod,cr,start_crank,end_crank): #Geometric parameters a=stroke/2 R=con_rod/a # Volume calculations V_s=math.pi*(1/4)*pow(bore,2)*stroke # Swept volume computation V_c=V_s/(cr-1)…
vinod shahane
updated on 22 Jan 2019
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 vinod shahane (8)
Week - 1 - Consistency of units
Dear Support, First assignment is completed
24 May 2020 04:26 PM IST
LS Dyna- Week1_Consistency of units
https://drive.google.com/file/d/124NU2HSaMIGgqD-SxCT1qPzUqEV1UXrl/view?usp=sharing
15 Apr 2020 11:05 AM IST
Week 1 - Flow over Bicycle
Write a Matlab program to calculate drag force. %% Program 1 clear all close all clc % inputs Parameter %drag force c_d = 0.8 %% Coefficient of Drag force is defined % Area m^2 A = 0.1 %% sectional area of Rider is considerd %Density kg/m^3 rho = 1.2 %% variable is defined for to define the Density of Air %Velocity in…
09 Apr 2019 12:41 AM IST
Breaking Ice with Air cushion Vehicle - Find minimum pressure with Newton-Raphson method
# Assignment for Ice breaking with Air-cushion Vehicle # To calculate the minimum pressure using Netwon Rephson Method import matplotlib.pyplot as pl import numpy as np import math # Given function f(x) = P^3(1-B^2)+(0.4hB^2-(S*h^2)/r^2)*P^2 +((S^2*h^4*P)/3*r^4)*P -((S*h^2)/(3*r^2))^3 = 0 # Objective minimization of function…
09 Apr 2019 12:41 AM IST
Data Analysis
\'\'\' Data analysis \'\'\' #Import Modules import matplotlib.pyplot as graph import numpy as np from numpy import trapz as trp #input the data data_file = \'engine_data.out\' n = 0 Header = 0 Col_Name = [] col_units = [] for line in open(data_file,\'r\'): if \'#\' not in line: n = n + 1 cols = len(str.split(line)) # columns…
25 Jan 2019 03:38 AM IST
Air Standard Cycle using Python
import math import matplotlib.pyplot as plt \"\"\" function is created by define with name Engine Kinematics \"\"\" def engine_kin(bore,stroke,con_rod,cr,start_crank,end_crank): #Geometric parameters a=stroke/2 R=con_rod/a # Volume calculations V_s=math.pi*(1/4)*pow(bore,2)*stroke # Swept volume computation V_c=V_s/(cr-1)…
22 Jan 2019 11:10 PM IST
Curve Fitting using Python
# To read the data file as a input provided def read_file():temperature = []cp = []for line in open(\'data\',\'r\'):values = line.split(\',\') # Data is splint using read the file temperature.append(float(values[0])) # temperature is assigned with appending with read the data in float valuescp.append(float(values[1]))…
22 Jan 2019 03:38 AM IST
Week 4 - Genetic Algorithm
function [fx_y] = stag(input_parameter) x = input_parameter(1); y = input_parameter(2); f1_x = (sin((5.1*pi.*x)+0.5)).^6; % Define the function f1.x f1_y = (sin((5.1*pi.*y)+0.5)).^6; % Define the function f1.y f2_x = exp(-4*log(2).*(((x-0.0667).^2)/0.64)); % Define the function f2.x f2_y = exp(-4*log(2).*(((y-0.0667).^2)/0.64));…
25 Dec 2018 11:34 PM IST