Answered step by step
Verified Expert Solution
Question
1 Approved Answer
problem2, the file Test_Data.xlsx contains in cylinder pressure data from a firing engine. the data is resolved in crank angle degree and is taken every
problem2, the file "Test_Data.xlsx" contains in cylinder pressure data from a firing engine. the data is resolved in crank angle degree and is taken every 1/2 degree.
O tittps/ualearn blackboard.com/bbcswebdav/pid plot a new function on the same graph overwriting the orizinal function 1 of11 Functions to choose from: y A sin(Bx C)+ D y A sin2(Bx+ C) + D y A In(Bx + C)D y A exp(Bx + C)+ D . The file "Test Data.xlsx" contains in-cylinder pressure data from a firing engine. The data is resolved in crank angle degrees (CAD) and is taken every 1/2 degree. A full cycle of data consists of 1440 points. The file can be converted into a 2D array in MATLAB by using the xlsread function. With the file in your working directory, the code to read the data should look something like "data - xlsread('Test Data'),". This will give you a 2D array with CAD in the first column and pressure in the second column. For this problem, write a script file that a, Plots all cycles on a single graph {x = CAD, y-Pressure) b. Finds and reports the maximum and minimum pressure for each cycle c. Finds and plots the average of all the cycles d. Plots the cycle with the maximum peak pressure and the cycle with the minimum peak pressure (largest and smallest max pressure) on the graph with the average of all the cycles L. Make the maximum and minimum cycles dotted lines Hints: a. b. Convert the pressure column into a matrix with each cycle being a new column Remember that you can reference all columns lA(1.)-all columns in row 11 and all rows TA(:,1) all rows in column 2] using the array indexes ME349 Page I O Type here to searchStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started