objective:to write a programm curvefitting wwith sets in linear and cubic fit curvefitting can be defined as the process of a curve or mathamatical function has the best fit to series of data points,subject to constraints. the result obtained consists of the curve for specific heat as afunction of tempearture will be comared…
seshagiri sanku
updated on 09 Sep 2021
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 seshagiri sanku (7)
Week 6 - Data analysis
Data analysis (python)1. OBJECTIVESWrite a script that does the following.Link to data file1. Data visualizerWrite a script that should take column numbers as the input and plot the respective columns as separate images.Each file should be saved by the name of the columnThe plot labels should be extracted from the file.…
15 Sep 2021 07:50 AM IST
Week 3 - Solving second order ODEs
objective is to write a program that solves the following ODE. This ODE represents the equation of motion of a simple pendulum with damping Theory: Pendulum is a body suspended from a fixed support so that it swings freely back and forth under the influence of gravity. When a pendulum is displaced sidewaysfrom its resting,…
09 Sep 2021 04:21 PM IST
Week 2 Air standard Cycle
objective:Based on the concepts you have learnt during the forward kinematics routine, go ahead and write code that can solve an otto cycle and make plots for it. In this programme i have plotted a PV diagramme for an Otto cycle by using a engine parameters and some inputs. In this cycle we have four process to completeone…
09 Sep 2021 03:56 PM IST
Week 5 - Curve fitting
objective:to write a programm curvefitting wwith sets in linear and cubic fit curvefitting can be defined as the process of a curve or mathamatical function has the best fit to series of data points,subject to constraints. the result obtained consists of the curve for specific heat as afunction of tempearture will be comared…
09 Sep 2021 02:17 PM IST
Project 1 - Parsing NASA thermodynamic data
objective: 1. Write a function that extracts the 14 co-efficients and calculates the enthalpy, entropy and specific heats for all the species in the data file. The FIRST 7 coefficients are HIGH-temperature coefficients and the SECOND 7 coefficients are LOW-temperature coefficients. Also…
24 Aug 2021 03:13 PM IST
Week 4.1 - Genetic Algorithm
objective: Write a code in MATLAB to optimise the stalagmite function and find the global maxima of the function clear all close all clc %definiing our search spaces x=linspace(0,0.6,150); y=linspace(0,0.6,150); %creating 2d mesh [xx yy]=meshgrid(x,y); %evaluating the stalagimite function for i=1:length(xx)…
14 Aug 2021 03:22 PM IST
Week 3 - Solving second order ODEs
objective:To write a program that solves the following ODE. This ODE represents the equation of motion of a simple pendulum with damping code: close all clear all clc %inputing required variables b=0.05; g=9.81; l=1; m=0.1; %initial condition theta_0=[0;5]; %timepoints t_span=linspace(0,10,500); % to solve ode eqation…
13 Aug 2021 08:55 AM IST