clear; clc; % interpolation of voltage and current data % reading excel file data D =readmatrix('VI.xlsx'); v=D(:,1); % voltage data seperating i=D(:,2); % current data separating xq=[-17,3:0.1:0.9]; % given interpolation yq1=interp1(v,i,xq); % linear interpolation yq2=interp1(v,i,xq,'spline'); % spline interpolation %…
Rohith Punnam
updated on 06 Feb 2023
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 Rohith Punnam (5)
Project 2
Description:As discussed in Lecture 11, Project 2 deals with the development of a forward energy-based fuel consumption model of a P1 hybrid vehicle. This model is based on the conventional vehicle model from Project 1. The main goal of this project is to understand the functionality of a P1 hybrid and be able to model…
25 May 2023 03:18 PM IST
Project 1
Project 1 deals with the development of a forward energy-based fuel consumption model of a conventional vehicle. The main goal of this project is to get familiar with the modeling process, writing scripts in Matlab, modeling in Simulink, analyzing data and generating plots. In this project, a typical midsize car with a…
06 May 2023 04:55 AM IST
Project - Position control of mass spring damper system
Obtain the transfer function of a mass spring damper system and use it in the model. Add a PID controller to adjust the force on mass so that its position follows a reference signal. Take m = 3.6; %kg k = 400; %N/m c = 100; %Ns/m
17 Mar 2023 06:30 AM IST
Project - Data Handling and Interpolation
clear; clc; % interpolation of voltage and current data % reading excel file data D =readmatrix('VI.xlsx'); v=D(:,1); % voltage data seperating i=D(:,2); % current data separating xq=[-17,3:0.1:0.9]; % given interpolation yq1=interp1(v,i,xq); % linear interpolation yq2=interp1(v,i,xq,'spline'); % spline interpolation %…
06 Feb 2023 07:21 AM IST
Project - Analysis of a practical automotive wiring circuit
Identify each of the major elements in the above automotive wiring diagram. Explain the purpose and working of any three elements briefly. If the total load is 10A from battery, what should be the fuse rating? If 500W is the load, what is the voltage and capacity of battery you recommend? Identify any two elements…
24 Jan 2023 08:22 AM IST