DAD 220 Analysis and Summary Medeiros
docx
keyboard_arrow_up
School
Southern New Hampshire University *
*We aren’t endorsed by this school
Course
220
Subject
Mechanical Engineering
Date
Jan 9, 2024
Type
docx
Pages
8
Uploaded by rwmedeiros
DAD 220 Analysis and Summary Template
Replace the bracketed text in this template with your responses and any supporting screenshots. Then
submit it to the Module Five Activity for grading and feedback. Rename this document by adding your
last name to the file name before you submit.
Explanation:
Created a table names
PartsMaintenance
using the following command:
CREATE TABLE PartsMaintenance (vehicle_id VARCHAR(20),
state VARCHAR(2), repair VARCHAR(50), reason VARCHAR(50),
year INT, make VARCHAR(20), body_type VARCHAR(50));
I was then able to show the command worked using the following
show table
command:
show tables;
1.
Analyze the data
you’ve been provided with to
identify themes
:
a.
Which parts are being replaced most?
Explanation:
Using the commands below:
SELECT repair AS PART_REPAIR, COUNT(*) AS NUMBER_OF_REPAIRS
FROM PartsMaintenance
GROUP BY PART_REPAIR
ORDER BY NUMBER_OF_REPAIRS DESC;
We can identify that the “
Fule” tank
(Fuel tank) is the most replaced part coming in at
95
replacements
.
b.
Is there a region of the country that experiences more part failures and replacements
than others?
i.
Identify region:
Explanation:
We can identify which region of the country that experiences more part failures and
replacements using the command below:
SELECT 'SOUTHWEST' AS REGION, COUNT(*) AS NUMBER_OF_REPAIRS
FROM PartsMaintenance
WHERE UPPER(state) IN ('AZ','NM','TX','OK')
UNION
SELECT 'NORTHEAST' AS REGION, COUNT(*) AS NUMBER_OF_REPAIRS
FROM PartsMaintenance
WHERE UPPER(state) IN ('PA','NJ','NY','CT','RI','MA','VT','ME','NH')
UNION
SELECT 'SOUTHEAST' AS REGION, COUNT(*) AS NUMBER_OF_REPAIRS
FROM PartsMaintenance
WHERE UPPER(state) IN ('AR','LA','AL','GA','TN','SC','NC','VA','WV','DE','MD')
UNION
SELECT 'MIDWEST' AS REGION, COUNT(*) AS NUMBER_OF_REPAIRS
FROM PartsMaintenance
WHERE UPPER(state) IN ('ND','SD','KS','NE','MN','WI','IA','MO','MI','IN','IL','OH')
UNION
SELECT 'WEST' AS REGION, COUNT(*) AS NUMBER_OF_REPAIRS
FROM PartsMaintenance
WHERE UPPER(state) IN ('WA','ID','MT','OR','WY','CO','UT','NV','CA')
ORDER BY NUMBER_OF_REPAIRS DESC;
The result of this query identifies the
Midwest
as experiencing the most part failures with
260
repairs
while the nest closest region is the
Northeast
with
208 repairs.
Using the
UNION
command to combine the multiple results that were received from
each
SELECT
statement that represented their own specific region.
ii.
How might the fleet maintenance team use the information to update its
maintenance schedule?
1.
Fleet Maintenance can use this information to alter their maintenance
schedule.
2.
More resources can be allotted to the regions with the highest number
of repairs.
3.
The team can from this point schedule and do more preventative
maintenance in those higher regions.
4.
Combining the previous tables with this information can also allow the
inventory and logistics departments to use more warehouse space for
the more pertinent parts that are needed.
c.
Which parts are being replaced most due to corrosion or rust?
i.
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
Explanation:
Using the below command allows us to see which parts are being replaced most due to
corrosion or rust:
SELECT repair AS PART_REPAIR,COUNT(*)
AS NUMBER_OF_REPAIRS FROM PartsMaintenance
WHERE UPPER(reason) IN ('CORROSION','RUST')
GROUP BY PART_REPAIR
ORDER BY NUMBER_OF_REPAIRS
DESC;
Using the above code to disseminate the information that we need.
We can clearly see that
Wheel
Arch
and
Fender replacement
are the top 2 parts that are replaced due to rust or corrosion.
The
maintenance team can use this information as part of a preventative maintenance plan.
d.
Which parts are being replaced most because of mechanical failure or accident, like a
flat tire or rock through the windshield?
i.
Explanation:
We can retrieve the information on which parts are being replaced most because of
mechanical failure or accident (flat tire or rock through the windshield)
using the command below:
SELECT repair AS PART_REPAIR,COUNT(*)
AS NUMBER_OF_REPAIRS FROM PartsMaintenance
WHERE UPPER(reason) LIKE '%FLAT%' OR
UPPER(reason) LIKE '%CRACK%'
GROUP BY PART_REPAIR
ORDER BY NUMBER_OF_REPAIRS DESC;
The result of this query shows us the parts that are being replaced most because of mechanical failure or
accident (flat tire or rock through the windshield) are
Tires
.
Having this information readily accessible to
the maintenance team will allow them to keep the needed tires in stock, and make sure that every
vehicle has the tools/equipment to deal with slow leaks or blow outs.
2.
Write a brief summary of your analysis
that
takes the information from Step 1 and presents it in
a way that nontechnical stakeholders can understand.
a.
With the data that we retrieved from Step 1 there are some important trends to pay
special attention to the “
Fule Tank”
(Fuel Tank) to get down to the reason why it is the
most replaced part.
On top of the issue with the “
Fule Tank”
(Fuel Tank), the “
Midwest”
has the highest number of part failures, which is a cause for a diversion of resources
from the areas that don’t need as much resources as the rest of the areas (think of a
tiered resource system) to fortify the Midwest.
In closing, using this data and applying it
to the fortification of resources in the Midwest and the replacement of Wheel Arch and
Fenders due to rust and corrosion and prioritize preventative measures for these issues.
3.
Outline the approach
that you took to conduct the analysis.
a.
What queries did you use to identify trends or themes in the data?
SELECT repair AS PART_REPAIR, COUNT(*) AS NUMBER_OF_REPAIRS
FROM PartsMaintenance
GROUP BY PART_REPAIR
ORDER BY NUMBER_OF_REPAIRS DESC;
This was the first query we ran that allowed us to identify the most replaced part in the
entire fleet.
SELECT 'SOUTHWEST' AS REGION, COUNT(*) AS NUMBER_OF_REPAIRS
FROM PartsMaintenance
WHERE UPPER(state) IN ('AZ','NM','TX','OK')
UNION
SELECT 'NORTHEAST' AS REGION, COUNT(*) AS NUMBER_OF_REPAIRS
FROM PartsMaintenance
WHERE UPPER(state) IN ('PA','NJ','NY','CT','RI','MA','VT','ME','NH')
UNION
SELECT 'SOUTHEAST' AS REGION, COUNT(*) AS NUMBER_OF_REPAIRS
FROM PartsMaintenance
WHERE UPPER(state) IN ('AR','LA','AL','GA','TN','SC','NC','VA','WV','DE','MD')
UNION
SELECT 'MIDWEST' AS REGION, COUNT(*) AS NUMBER_OF_REPAIRS
FROM PartsMaintenance
WHERE UPPER(state) IN ('ND','SD','KS','NE','MN','WI','IA','MO','MI','IN','IL','OH')
UNION
SELECT 'WEST' AS REGION, COUNT(*) AS NUMBER_OF_REPAIRS
FROM PartsMaintenance
WHERE UPPER(state) IN ('WA','ID','MT','OR','WY','CO','UT','NV','CA')
ORDER BY NUMBER_OF_REPAIRS DESC;
This was the second query that we ran that allowed us to split the entire country up into
regions and identify which region had the most part failures and it returned that the Midwest
was experiencing the most part failures.
By using the
UNION
command to combine the multiple
results that were received from each
SELECT
statement that represented their own specific
region.
SELECT repair AS PART_REPAIR,COUNT(*)
AS NUMBER_OF_REPAIRS FROM PartsMaintenance
WHERE UPPER(reason) IN ('CORROSION','RUST')
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
GROUP BY PART_REPAIR
ORDER BY NUMBER_OF_REPAIRS
DESC;
This was our third query and it allowed us to see what parts were the most replaced due
to damage caused by rust or corrosion.
The
“WHERE”
clause in the statement acts as the filter
for the data and is based on specified reasons such as
“RUST”
and/or
“CORROSION”
in the
“
Reason”
column of the table.
“COUNT”
calculates the number of parts replacements, using the
combination of these commands in the coding allows us to identify the parts that are the most
susceptible to rust or corrosion related issues.
b.
What are the benefits of using these queries to retrieve the information in a way that
allows you to provide valuable information to your stakeholders?
i.
These queries are beneficial and provide insights to the stakeholders
because they help to identify the most replaced parts, doing so allows feet
maintenance to prioritize and institute preventative measures on the parts that
need extra attention.
These queries also break the country down to regions and doing so
allows the company to analyze the regions differently and “rank” them I n terms
of a “worst to first” method that would allow some resources to be diverted
from the lesser needed areas to the “worst” or “most needed” areas.
They also
can prevent much of the damage done by rust and corrosion.
The company can also identify most parts replaced due to mechanical
failures or accidents which will allow them to take measures targeted at either
preventing these incidents or limiting them and improving the overall safety and
effectiveness of the fleet.
When the effectiveness of the fleet is improved and
more reliable it allows us to offer a more efficient service to everyone, including
the stakeholders.
4.
Explain how the functions in the analysis tool
allowed you to organize the data and retrieve
records quickly.
a.
The functions in the analysis tool helped greatly in the organization of the data and
quickly retrieving records.
This allowed our process of analysis to be quick and efficient.
“SELECT” --
Allowed me to apply specification to the data that needed to be retrieved.
(Part name, # of replacements…. etc.) this made the results clear, relevant, and easy to
read/understand.
“GROUP BY” –
Allowed the grouping of data based on part names, this made it easy to
identify the most replaced parts and overall impact on the fleet.
“COUNT” –
Allowed me to calculate the total number of replacements for each part.
Having this knowledge makes it easy to know what you want to prioritize and direct
resources.
“ORDER BY” –
Allowed me to sort the data in either ascending or descending order.
Being able to use this command made it easy when I needed to identify the parts that
had the highest replacement counts.
“UNION” –
Allowed us to combine data from multiple queries.
Using this function
helped with returning relevant and accurate records quickly.
By using these functions, it helped me to get a better understanding of parts
patterns and gave me the data to make data-driven decisions and formulate a plan to
enhance the fleet’s reliability and safety.
Related Documents
Related Questions
Every time I use this code the two lies come up but they keep on showing up separately. I need one line on top of the other or make it look like one line just like it’s shown on the picture I need the two line together and make it one line. If you can please make the lines less curved make it look line the line on the picture.
With what I’m asking from you please fix it using this code using MATLAB and send back the code.
% Sample data for Diesel and Petrol cars
carPosition = linspace(1, 60, 50); % Assumed positions of cars
% Fix the random seed for reproducibility
rng(45);
% Assumed positions of cars
CO2Diesel = 25 + 5*cos(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Diesel
CO2Petrol = 20 + 5*sin(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Petrol
% Fit polynomial curves
pDiesel = polyfit(carPosition, CO2Diesel, 3);
pPetrol = polyfit(carPosition, CO2Petrol, 3);
% Generate points for best fit lines
fitDiesel = polyval(pDiesel, carPosition);
fitPetrol =…
arrow_forward
The first photo is the question, where the 2nd shows some problem solving strategies
arrow_forward
There is a small space between the orange and purple line could you please connect the two lines together also can you please make the purple line shorter and then connect the purple line to the orange line, please take out the box that says “Diesel, petrol, Diesel best fit, petrol best fit”. Also when ever I run this code the graph shows up but there are still errors that comes up could you please fix them when you are running this on MATLAB.
Please use this code on MATLAB and fix it.
% Sample data for Diesel and Petrol cars
carPosition = linspace(1, 60, 50); % Assumed positions of cars
% Fix the random seed for reproducibility
rng(50);
% Assumed CO2 emissions for Diesel and Petrol
CO2Diesel = 25 + 5*cos(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Diesel
CO2Petrol = 20 + 5*sin(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Petrol
% Fit polynomial curves
pDiesel = polyfit(carPosition, CO2Diesel, 3);
pPetrol = polyfit(carPosition, CO2Petrol, 3);
% Generate…
arrow_forward
Draw it on the graph provided please!
arrow_forward
Can someone please help to solve all of the following problem showing all work and include a load chart. Thank you!
arrow_forward
4. Documents business requirements use-case narratives.for only one process
note: please i want Documents like this in pic
arrow_forward
You are a biomedical engineer working for a small orthopaedic firm that fabricates rectangular shaped fracture
fixation plates from titanium alloy (model = "Ti Fix-It") materials. A recent clinical report documents some problems with the plates
implanted into fractured limbs. Specifically, some plates have become permanently bent while patients are in rehab and doing partial
weight bearing activities.
Your boss asks you to review the technical report that was generated by the previous test engineer (whose job you now have!) and used to
verify the design. The brief report states the following... "Ti Fix-It plates were manufactured from Ti-6Al-4V (grade 5) and machined into
solid 150 mm long beams with a 4 mm thick and 15 mm wide cross section. Each Ti Fix-It plate was loaded in equilibrium in a 4-point bending
test (set-up configuration is provided in drawing below), with an applied load of 1000N. The maximum stress in this set-up was less than the
yield stress for the Ti-6Al-4V…
arrow_forward
arrow_forward
Oh no! Our expert couldn't answer your question.
Don't worry! We won't leave you hanging. Plus, we're giving you back one question for the inconvenience.
Here's what the expert had to say:
Hi and thanks for your question! Unfortunately we cannot answer this particular question due to its complexity. We've credited a question back to your account. Apologies for the inconvenience.
Ask Your Question Again
5 of 10 questions left
until 8/10/20
Question
Asked Jul 13, 2020
1 views
An air conditioning unit uses Freon (R-22) to adapt an office room at temperature 25 oC in the summer, if the temperature of the evaporator is 16 oC and of the condenser is 48 oC. The reciprocating compressor is single acting, number of cylinders are 2, the volumetric efficiency is 0.9, number of revolutions are 900 r.p.m. and L\D= 1.25. If the compressor consumes a power of 3 kW and its mechanical efficiency is 0.9. Find the following:
(A) Flow rate of the refrigerant per…
arrow_forward
Don't Use Chat GPT Will Upvote And Give Handwritten Solution Please
arrow_forward
Don't copy paste someone else answer if I get to know I'll report and downvote too do on your own and only handwritten with proper steps not that handwritten only
arrow_forward
You are assigned as the head of the engineering team to work on selecting the right-sized blower that will go on your new line of hybrid vehicles.The fan circulates the warm air on the inside of the windshield to stop condensation of water vapor and allow for maximum visibility during wintertime (see images). You have been provided with some info. and are asked to pick from the bottom table, the right model number(s) that will satisfy the requirement. Your car is equipped with a fan blower setting that allow you to choose between speeds 0, 1,2 and 3. Variation of the convection heat transfer coefficient is dependent upon multiple factors, including the size and the blower configuration.You can only use the following parameters:
arrow_forward
The picture that has two graphs are generated by this code. Every time I run it on MATLAB it keeps generating graphs with different curves. The picture that shows one graph is the curve that I want to keep. Please keep the color of the lines and the circles and keep the title of the graph the same. I want everything to be the same except I want the line to look exactly like the picture with one graph on it.
Use this code on MATLAB and fix it and then send the correct code back please.
% Sample data for Diesel and Petrol cars
carPosition = linspace(1, 60, 50); % Assumed positions of cars
% Use the 'seed' function instead of 'rng'
seed = 50; % Define your seed here
rand('seed',seed);
% Assumed CO2 emissions for Diesel and Petrol
CO2Diesel = 25 + 5*cos(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Diesel
CO2Petrol = 20 + 5*sin(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Petrol
% Fit polynomial curves with a reduced degree of 2
pDiesel = polyfit(carPosition,…
arrow_forward
Can you help me with this problem?
P1 is where the blue dot is
arrow_forward
Please make this on MATLAB, make the graph shown on the picture, copy the orange and blue circles and the line please make sure that they are on the exact same spots. Make the exact copy of the graph please. Nothing different, just make the same graph and put the orange and blue circles on the exact spots and make sure the lines are the same and make sure the title of the graph is their as well. They rest of the pictures that has numbers are the data that is believed to be the orange and blue dots . Take your time please. I need help with this.
arrow_forward
Question number 1
arrow_forward
Keep the same colors the same graph, basically keep everything the same just make the line with a small curve just as shown on the picture
Keep everything the same just make the line less curvy please do not change the colors of the line and the circles do not change anything besides the curve of the line.
Use this code on MATLAB and fix it.
% Sample data for Diesel and Petrol cars
carPosition = linspace(1, 60, 50); % Assumed positions of cars
% Use the 'seed' function instead of 'rng'
seed = 50; % Define your seed here
rand('seed',seed);
% Assumed CO2 emissions for Diesel and Petrol
CO2Diesel = 25 + 5*cos(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Diesel
CO2Petrol = 20 + 5*sin(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Petrol
% Fit polynomial curves with a reduced degree of 2
pDiesel = polyfit(carPosition, CO2Diesel, 2);
pPetrol = polyfit(carPosition, CO2Petrol, 2);
% Generate points for best fit lines
fitDiesel = polyval(pDiesel, carPosition);…
arrow_forward
Version #2
Describe the situation using a diagram:
Contact Push/Pull Interaction
4
Write the narrative:
During the contact push/pull interaction between the hand and the cart kinetic energy is transferred between them. The type of energy that changes in the two interacting objects is always the same as the type of energy that is transferred, so this means that the kinetic energy of the hand decreases while the kinetic energy of the cart increases. Since the cart was at rest to start with, this increase of kinetic energy means that it starts to move.
Which criterion (accuracy, completeness, or clarity and logical reasoning) is not satisfied by this explanation? Briefly explain why you think so.
arrow_forward
Don't use chatgpt will upvote
arrow_forward
Note: Round your final answer to 2 decimal places if it is not a whole number.
Note:-
Do not provide handwritten solution. Maintain accuracy and quality in your answer. Take care of plagiarism.
Answer completely.
You will get up vote for sure.
arrow_forward
Hartley Electronics, Inc., in Nashville, producesshort runs of custom airwave scanners for the defense industry.The owner, Janet Hartley, has asked you to reduce inventory byintroducing a kanban system. After several hours of analysis, youdevelop the following data for scanner connectors used in onework cell. How many kanbans do you need for this connector?Daily demand 1,000 connectorsLead time 2 daysSafety stock 12 dayKanban size 500 connectors
arrow_forward
I need help solving this problem.
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you

Elements Of Electromagnetics
Mechanical Engineering
ISBN:9780190698614
Author:Sadiku, Matthew N. O.
Publisher:Oxford University Press

Mechanics of Materials (10th Edition)
Mechanical Engineering
ISBN:9780134319650
Author:Russell C. Hibbeler
Publisher:PEARSON

Thermodynamics: An Engineering Approach
Mechanical Engineering
ISBN:9781259822674
Author:Yunus A. Cengel Dr., Michael A. Boles
Publisher:McGraw-Hill Education

Control Systems Engineering
Mechanical Engineering
ISBN:9781118170519
Author:Norman S. Nise
Publisher:WILEY

Mechanics of Materials (MindTap Course List)
Mechanical Engineering
ISBN:9781337093347
Author:Barry J. Goodno, James M. Gere
Publisher:Cengage Learning

Engineering Mechanics: Statics
Mechanical Engineering
ISBN:9781118807330
Author:James L. Meriam, L. G. Kraige, J. N. Bolton
Publisher:WILEY
Related Questions
- Every time I use this code the two lies come up but they keep on showing up separately. I need one line on top of the other or make it look like one line just like it’s shown on the picture I need the two line together and make it one line. If you can please make the lines less curved make it look line the line on the picture. With what I’m asking from you please fix it using this code using MATLAB and send back the code. % Sample data for Diesel and Petrol cars carPosition = linspace(1, 60, 50); % Assumed positions of cars % Fix the random seed for reproducibility rng(45); % Assumed positions of cars CO2Diesel = 25 + 5*cos(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Diesel CO2Petrol = 20 + 5*sin(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Petrol % Fit polynomial curves pDiesel = polyfit(carPosition, CO2Diesel, 3); pPetrol = polyfit(carPosition, CO2Petrol, 3); % Generate points for best fit lines fitDiesel = polyval(pDiesel, carPosition); fitPetrol =…arrow_forwardThe first photo is the question, where the 2nd shows some problem solving strategiesarrow_forwardThere is a small space between the orange and purple line could you please connect the two lines together also can you please make the purple line shorter and then connect the purple line to the orange line, please take out the box that says “Diesel, petrol, Diesel best fit, petrol best fit”. Also when ever I run this code the graph shows up but there are still errors that comes up could you please fix them when you are running this on MATLAB. Please use this code on MATLAB and fix it. % Sample data for Diesel and Petrol cars carPosition = linspace(1, 60, 50); % Assumed positions of cars % Fix the random seed for reproducibility rng(50); % Assumed CO2 emissions for Diesel and Petrol CO2Diesel = 25 + 5*cos(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Diesel CO2Petrol = 20 + 5*sin(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Petrol % Fit polynomial curves pDiesel = polyfit(carPosition, CO2Diesel, 3); pPetrol = polyfit(carPosition, CO2Petrol, 3); % Generate…arrow_forward
- Draw it on the graph provided please!arrow_forwardCan someone please help to solve all of the following problem showing all work and include a load chart. Thank you!arrow_forward4. Documents business requirements use-case narratives.for only one process note: please i want Documents like this in picarrow_forward
- You are a biomedical engineer working for a small orthopaedic firm that fabricates rectangular shaped fracture fixation plates from titanium alloy (model = "Ti Fix-It") materials. A recent clinical report documents some problems with the plates implanted into fractured limbs. Specifically, some plates have become permanently bent while patients are in rehab and doing partial weight bearing activities. Your boss asks you to review the technical report that was generated by the previous test engineer (whose job you now have!) and used to verify the design. The brief report states the following... "Ti Fix-It plates were manufactured from Ti-6Al-4V (grade 5) and machined into solid 150 mm long beams with a 4 mm thick and 15 mm wide cross section. Each Ti Fix-It plate was loaded in equilibrium in a 4-point bending test (set-up configuration is provided in drawing below), with an applied load of 1000N. The maximum stress in this set-up was less than the yield stress for the Ti-6Al-4V…arrow_forwardarrow_forward Oh no! Our expert couldn't answer your question. Don't worry! We won't leave you hanging. Plus, we're giving you back one question for the inconvenience. Here's what the expert had to say: Hi and thanks for your question! Unfortunately we cannot answer this particular question due to its complexity. We've credited a question back to your account. Apologies for the inconvenience. Ask Your Question Again 5 of 10 questions left until 8/10/20 Question Asked Jul 13, 2020 1 views An air conditioning unit uses Freon (R-22) to adapt an office room at temperature 25 oC in the summer, if the temperature of the evaporator is 16 oC and of the condenser is 48 oC. The reciprocating compressor is single acting, number of cylinders are 2, the volumetric efficiency is 0.9, number of revolutions are 900 r.p.m. and L\D= 1.25. If the compressor consumes a power of 3 kW and its mechanical efficiency is 0.9. Find the following: (A) Flow rate of the refrigerant per…arrow_forwardDon't Use Chat GPT Will Upvote And Give Handwritten Solution Pleasearrow_forward
- Don't copy paste someone else answer if I get to know I'll report and downvote too do on your own and only handwritten with proper steps not that handwritten onlyarrow_forwardYou are assigned as the head of the engineering team to work on selecting the right-sized blower that will go on your new line of hybrid vehicles.The fan circulates the warm air on the inside of the windshield to stop condensation of water vapor and allow for maximum visibility during wintertime (see images). You have been provided with some info. and are asked to pick from the bottom table, the right model number(s) that will satisfy the requirement. Your car is equipped with a fan blower setting that allow you to choose between speeds 0, 1,2 and 3. Variation of the convection heat transfer coefficient is dependent upon multiple factors, including the size and the blower configuration.You can only use the following parameters:arrow_forwardThe picture that has two graphs are generated by this code. Every time I run it on MATLAB it keeps generating graphs with different curves. The picture that shows one graph is the curve that I want to keep. Please keep the color of the lines and the circles and keep the title of the graph the same. I want everything to be the same except I want the line to look exactly like the picture with one graph on it. Use this code on MATLAB and fix it and then send the correct code back please. % Sample data for Diesel and Petrol cars carPosition = linspace(1, 60, 50); % Assumed positions of cars % Use the 'seed' function instead of 'rng' seed = 50; % Define your seed here rand('seed',seed); % Assumed CO2 emissions for Diesel and Petrol CO2Diesel = 25 + 5*cos(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Diesel CO2Petrol = 20 + 5*sin(carPosition/60*2*pi) + randn(1, 50)*5; % Random data for Petrol % Fit polynomial curves with a reduced degree of 2 pDiesel = polyfit(carPosition,…arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Elements Of ElectromagneticsMechanical EngineeringISBN:9780190698614Author:Sadiku, Matthew N. O.Publisher:Oxford University PressMechanics of Materials (10th Edition)Mechanical EngineeringISBN:9780134319650Author:Russell C. HibbelerPublisher:PEARSONThermodynamics: An Engineering ApproachMechanical EngineeringISBN:9781259822674Author:Yunus A. Cengel Dr., Michael A. BolesPublisher:McGraw-Hill Education
- Control Systems EngineeringMechanical EngineeringISBN:9781118170519Author:Norman S. NisePublisher:WILEYMechanics of Materials (MindTap Course List)Mechanical EngineeringISBN:9781337093347Author:Barry J. Goodno, James M. GerePublisher:Cengage LearningEngineering Mechanics: StaticsMechanical EngineeringISBN:9781118807330Author:James L. Meriam, L. G. Kraige, J. N. BoltonPublisher:WILEY

Elements Of Electromagnetics
Mechanical Engineering
ISBN:9780190698614
Author:Sadiku, Matthew N. O.
Publisher:Oxford University Press

Mechanics of Materials (10th Edition)
Mechanical Engineering
ISBN:9780134319650
Author:Russell C. Hibbeler
Publisher:PEARSON

Thermodynamics: An Engineering Approach
Mechanical Engineering
ISBN:9781259822674
Author:Yunus A. Cengel Dr., Michael A. Boles
Publisher:McGraw-Hill Education

Control Systems Engineering
Mechanical Engineering
ISBN:9781118170519
Author:Norman S. Nise
Publisher:WILEY

Mechanics of Materials (MindTap Course List)
Mechanical Engineering
ISBN:9781337093347
Author:Barry J. Goodno, James M. Gere
Publisher:Cengage Learning

Engineering Mechanics: Statics
Mechanical Engineering
ISBN:9781118807330
Author:James L. Meriam, L. G. Kraige, J. N. Bolton
Publisher:WILEY