03c_FabricationMechatronicsTrainingV2
.pdf
keyboard_arrow_up
School
Georgia Institute Of Technology *
*We aren’t endorsed by this school
Course
2110
Subject
Mechanical Engineering
Date
Dec 6, 2023
Type
Pages
18
Uploaded by muloiwal
1 G
EORGIA I
NSTITUTE OF T
ECHNOLOGY
George W. Woodruff School of Mechanical Engineering ME 2110 - Creative Decisions and Design, Fall 2023 Studio #3 and #4 –Fabrication and Mechatronics Studio Description: This studio contains two parts: IDEA laboratory fabrication training and mechatronics training. Each of these and the associated deliverables are described in the following. Members of your team will be divided into groups. In the first week, Group A will work on mechatronics and Group B will work on fabrication. In the next week, groups will change places. IDEA Laboratory Safety: It is critical that you follow safe practices in the use of the IDEA laboratory and other physical fabrication facilities. The fabrication equipment in the IDEA laboratory involves many hazards. If used improperly or negligently, the studio tools and equipment can cause severe injury and bodily harm. Soldering stations also can cause burns if used improperly. The instructional team will brief you on laboratory safety practices and you will be required to sign a user agreement form regarding safe use of the laboratory space before you can use equipment. Training Schedule:
This assignment will occur from Week 3 to Week 4, as noted on the course calendar. Table 1 shows the training schedule. All elements will be turned in on Canvas and will be due at the start of studio Week 6. Table 1. Training schedule for fabrication and mechatronics during Weeks 3 & 4. Training Schedule
Group A
Group B
Week 3 Mechatronics Training and Task Sheet (group)
Fabrication Training and Gear Train Assembly
(individual)
Week 4 Fabrication Training and Gear Train Assembly
(individual)
Mechatronics Training and Task Sheet (group)
2 PART 1. MECHATRONICS TRAINING AND TASK SHEET. Studio Description:
This assignment is designed to give students the skills and experience to program the Arduino Uno microcontroller and to utilize the mechatronics kit, which integrates electrical, mechanical, and pneumatic systems. Students must program the Arduino to accomplish various tasks involving mechatronics components. The lab has two sections performed over two weeks. During the first week, Group A
will complete one part of the lab, labeled “Mechatronics Lab Tasks: Group A;” during the second week, Group B
will complete “Mechatronics Lab Tasks: Group B.” Although the programming style will not be graded, the programs should be helpful for the final project. Therefore, it is important to program using standard structure and commenting so that the program will be easy to follow for reference. Studio Tasks and Deliverables: 1.
Complete mechatronics training. The student must attend the briefing given by the studio GTA. 2.
Complete mechatronics task sheet. The student must finish the required mechatronics task sheet for their group. To complete the task, the student must demonstrate completion of the required task and provide a brief oral explanation of how the code accomplishes the required task. The student group will upload a video of each task completed with an oral explanation of how the code works and a contribution statement pdf to Canvas. Each student within a group must participate in coding one task and presenting another teammate's task in the video. This is a pass/fail requirement for this class. A group that receives an incomplete or “fail” grade must correct any feedback and present their corrections in-person to their studio TA for regrading. Mechatronics Kit: The mechatronics kit contains sensors, actuators, boards, power supplies and other components that will be used in this studio assignment and in the final project. Please note that your team will check out a mechatronics kit during studio. This kit is for your team to share and use over the studio assignment. All team members are responsible for the complete return of this kit and all its components in working condition. If your team is missing any components or have damaged components due to negligence, then you must replace these components immediately following the BOM links on the website. Students will not be given a final grade for this course until all kit materials have been returned. General Instructions:
Before attempting to perform these programming tasks, read the Arduino Mechatronics Manual on the course website.
The manual provides background on the layout of the Arduino Uno controller and explains how to implement the mechatronics components in a design. The tasks for Group A
and Group B
, and the checklists, are provided on subsequent pages. Canvas Submission Instructions: Mechatronics task completion will be verified by a video upload to Canvas, a PDF contribution statement upload, and submission of the final code. A single video demonstrating all tasks is expected. Separate videos demonstrating each task are also acceptable. The final video(s) should clearly show the Arduino working on each task, then show the code that was used to execute it with an oral description of how it works. Every student within Group A (or B) should be involved in the video for another teammate’s task. To accommodate
3 this, for example, each group could teleconference (e.g., Zoom, MS Teams, etc.) to record the video. The video should have the following sequence: §
Student 1 with the mechatronics kit would use their laptop camera to record the Arduino kit working on Task 1. §
Student 2 then shares their screen and talks through the code for Task 1 and how it works. §
Student 2 then turns off screen sharing. §
Student 1 then demonstrates Task 2 on the Arduino kit on camera. §
Student 2 (or Student 3) then shares their screen and talks through code for Task 2. §
Then they turn off screen sharing. This is repeated until all tasks are done. On Canvas, upload the video(s) to the submission site and your code in a .pdf file.
4 Mechatronics Lab Tasks: Group A (Week 3)
1.
Test that your mechatronics components are all in working order. Using the Github directory (in the Arduino Mechatronics Manual) where you downloaded the myDuino library, download and run BOTH
Actuator_Test.ino
and MyDuino_Test.ino
. Check and understand the code to know which components are being used and verify that they are operating correctly. Reference the mechatronics manual when connecting the pneumatic components. 2.
Connect one momentary switch (long-arm or roller) and one solenoid (large or small) to the Arduino board. Use the switch to control the state of the solenoid. When the switch is pressed and released, the state of the solenoid should change; i.e., if the solenoid is inactive, pressing and releasing the switch once will cause it to activate. The solenoid should then remain active until the switch is pressed and released again. Hint: remember the lesson about switch debouncing! 3.
Connect the rotary encoder, a DC motor and two momentary switches (long-arm or roller) to the Arduino development board. Use the readings from the encoder to control the duty cycle of the PWM signal to the DC motor. Each full rotation of the encoder should correspond to a 10% change in duty cycle (0-100). In other words, if the program is started and then the encoder is turned one full rotation, the motor should be running at 10% duty cycle; after 10 rotations, the motor should be running at full speed. While one switch is held down, the motor should spin clockwise. While the other is held down, the motor should spin counterclockwise. When both or neither switches are held, the motor should not turn at all. Also, use the LEDs on the development board to indicate the motor's direction of travel. One LED should illuminate when the motor is traveling CW and the other when the motor is traveling CCW. 4.
Connect the IR sensor, banana plugs, and a motor to the Arduino development board. Rotate the motor in one direction for 10 seconds when the IR sensor detects an object within 6 – 10 cm from its lens. You will need to calibrate the IR sensor to determine the relationship between its voltage outputs and distance. The banana plugs should function as a “kill” switch, stopping the motion of the motor regardless if 10 seconds have elapsed or if there is an object within the 6-10 cm range of the IR sensor. 5.
Swap the IR sensor for the ultrasonic sensor. No calibration should be necessary. Place an object 10cm away from the face of the speakers (the two cylinders protruding from the sensor case). How accurate is the reading? How does this compare to the IR sensor, and why might there be a difference?
5 Mechatronics Lab Tasks: Group B (Week 4)
1.
Test that your mechatronics components are all in working order. Using the Github directory (in the Arduino Mechatronics Manual) where you downloaded the myDuino library, download and run BOTH
Actuator_Test.ino
and MyDuino_Test.ino
. Check and understand the code to know which components are being used and verify that they are operating correctly. Reference the mechatronics manual when connecting the pneumatic components. 2.
Connect the ultrasonic sensor and one momentary switch (long-arm or roller) to the driver board. Instead of using a digital input port, connect the switch to the encoder port as demonstrated in Figure 17 of the Mechatronics Manual. Use the switch to control the state of the LED. When the switch is pressed and released, the state of the LED should change; i.e., if the LED is off, pressing and releasing the switch once will cause it to turn on. The LED should not turn off until the switch is pressed and released again. Use the ultrasonic sensor as a kill switch that can turn off the LED. If an object is within 10cm, the LED should remain off, independent of the switch state. Hint: remember the lesson about switch debouncing!
3.
Connect the rotary encoder, a DC motor and two momentary switches (long-arm or roller) to the Arduino development board. Use the readings from the encoder to control the duty cycle of the PWM signal to the DC motor. Each full rotation of the encoder should correspond to a 10% change in duty cycle (0-100). In other words, if the program is started and then the encoder is turned one full rotation, the motor should be running at 10% duty cycle; after 10 rotations, the motor should be running at full speed. While one switch is held down, the motor should spin clockwise. While the other is held down, the motor should spin counterclockwise. When both or neither switches are held, the motor should not turn at all. Additionally, use the LEDs on the development board to indicate the direction of travel of the motor. One LED should illuminate when the motor is traveling CW and the other when the motor is traveling CCW. 4.Connect a potentiometer and banana plugs to the Arduino development board, then connect both solenoids and both pneumatic valves to the digital output ports of the Arduino board. Using the knob on the potentiometer, have it incrementally activate the digital output ports as you turn the knob, starting with DI1 and continuing until all 4 components are activated. The banana plugs should function as a temporary kill switch that deactivates the digital outputs for the next 10 seconds. After 10 seconds have elapsed, the components should return to their previous state.
6 PART 2. FABRICATION TRAINING AND TASK SHEET Studio Description:
This assignment is designed to teach students how to use the laser cutter, 3D printing, power tools and the bandsaw to create parts and assemblies. The final product will be a gear train assembly. The lab consists of three training modules, where small groups of students will rotate between laser cutting, 3D printing, power tools and bandsaw. During the first week, Group B
will be trained. During the second week, Group A
will be trained. Studio Tasks and Deliverables: 1.
Complete training. The student must attend the IDEA laboratory safety overview and training on the laser cutter, 3D printer, power tools, and bandsaw given by the studio GTA. The GTA will record the student’s attendance and completion of training in Canvas. This is a pass/fail requirement for this class. This training MUST be completed before the student can begin using IDEA lab equipment. During training, you will fabricate parts of the assembly shown at the end of this document individually. A Bill of Materials (BOM) is included in the drawing on Page 9. Referenced CAD files are loaded to Canvas, linked within the project descriptions page. These provided .sldprt CAD models from the assembly will be used to create .dxf, .svg, and .pjx files. 2.
Complete fabrication and assembly of the required components. Individually, students will produce one assembled Planetary Gear Train according to the drawings in this document. A recommended process plan is provided that can be followed as a step-by-step process. Each student should upload a video of their completed assembly to Canvas showing its functionality (gears turning). 3.
Complete Fabrication Tasks and File Creation. Each student must individually complete the tasks below, including the creation of .dxf, .svg, .pjx, and .stl files as well as a series of images (e.g. .png, .jpg). The files created will be uploaded to the Canvas submission. a.
Laser cutting training assignment:
Your assignment is to generate a file for laser cutting in Inkscape. Download the .zip file that contains CAD assembly files from the main course Canvas page. Select the “Ring Gear”, “Sun Gear”, “Planet Gear”, “Front”, and “Back” .sldprt files and generate .dxf files from the relevant component faces. Generate a valid Inkscape .svg file for laser cutting in Trotec Job Control, it should be modified such that an appropriate color palette is used. Modify the cut settings such that Power = 100, Speed = 0.3, PPI/Hz: 1000, Passes = 1 and perform a vector ordering operation with ‘quick ordering’. Record the time estimate for cutting. You will need to save a .pjx Job Control file with appropriate cut settings. Take a screenshot of the final build plate layout (e.g., .png, .bmp, .jpg, .jpeg). Upload the .dxf, .svg and .pjx files and the screenshot file to Canvas.
b.
3D printing training assignment: Your assignment in this studio is to download the “Planet Carrier” .sldprt file, generate a .stl file, and create a build plate layout in Cura that includes the part properly oriented on the build plate (no support structures, no adhesion, 5% infill (grid type), material PLA-Generic, 0.4 mm nozzle, 0.15 mm layer height) appropriately spaced such that it does not overlap with the edge of the build plate. Remember to change the 3D printer model (Ultimaker 2+, 3, or 3S) based on
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
Related Questions
Case Study – The New Engineer
Jeff was just hired by GSI, Inc. to be their Environmental and Safety Coordinator. This is Jeff's first position after completing his engineering degree. He had taken a course in safety engineering as part of his studies and felt confident that he could handle the job.
Management at GSI, Inc. has assured him that they are committed to maintaining a safe workplace. They have never had an individual dedicated to this task full-time. They will implement his recommendations if he can justify them.
As Jeff begins to get familiar with the operations, he spends considerable time on the production floor. He notices workers clean their tools before break with a liquid from an unmarked 55-gallon drum. They also use this liquid to clean residue from their skin. They use paper towels to dry their tools and hands, throw these towels in the trash, and head to the break room for a snack and/or smoke.
In talking with the workers, Jeff learns of some of…
arrow_forward
Case Study – The New Engineer
Jeff was just hired by GSI, Inc. to be their Environmental and Safety Coordinator. This is Jeff's first position after completing his engineering degree. He had taken a course in safety engineering as part of his studies and felt confident that he could handle the job.
Management at GSI, Inc. has assured him that they are committed to maintaining a safe workplace. They have never had an individual dedicated to this task full-time. They will implement his recommendations if he can justify them.
As Jeff begins to get familiar with the operations, he spends considerable time on the production floor. He notices workers clean their tools before break with a liquid from an unmarked 55-gallon drum. They also use this liquid to clean residue from their skin. They use paper towels to dry their tools and hands, throw these towels in the trash, and head to the break room for a snack and/or smoke.
In talking with the workers, Jeff learns of some of…
arrow_forward
Department of Mechanical Engineering
PRINCIPLES OF COMPUTER AIDED ENGINEERING – MENG303
Please solve the problem by keupordDepartment of Mechanical Engineering
PRINCIPLES OF COMPUTER AIDED ENGINEERING – MENG303
Please solve the problem by keupord
arrow_forward
Problem 1: You are working in a consulting company that does a lot of hand calculations for designs in
Aerospace Industry for mechanical, thermal, and fluidic systems. You took the Virtual engineering
course, and you want to convince your boss and the team you work to move to modelling and simulation
in computers using a certain software (Ansys, Abaqus, etc). Discuss the benefits and pitfalls of computer
based models used within an industrial environment to solve problems in engineering.
arrow_forward
Task 1
You are employed as a mechanical engineer within an unnamed research center, specializing in the
development of innovative air conditioning systems. Your division is tasked with providing computer-based
modeling and design solutions using computational fluid dynamics through ANSYS software. Your primary
responsibilities involve the analysis of horizontal channel dynamics to meet specific criteria. Under the
guidance of your immediate supervisor, you have been assigned unique responsibilities within an ongoing
project. As a member of the research team, your role includes constructing an appropriate model and
executing a sequence of simulation iterations to explore and enhance channel performance. Figure 1
provides a visualization of the horizontal channel under consideration. Consider 2D, incompressible, steady
flow in a horizontal channel at a Reynolds number of 150. The schematic below illustrates the channel flow,
not drawn to scale. For simplicity, neglect gravity. The…
arrow_forward
Assignment 1: TIME VALUE OF MONEY
Objective: To further understand the concept of the time value of money.
INSTRUCTIONS:
In each problem,
a. Translate data given in problems into their respective graphical representations - i.e. draw
the correct cash flow diagram.
b. Write down all pertinent given information or data on your paper.
c. Calculate answers correctly.
3. A certain college graduate, Sallie Evans, has $24,000 in student-loan debt at the end of
her college career. The interest rate on this debt is 0.75% per month. If monthly payments
on this loan are $432.61, how many months will it take for Sallie to repay the entire loan?
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
SUBJECT COURSE: ERGONOMICS
REQUIRED: CONCLUSION AND RECOMMENDATION
FOR THE FOLLOWING SCENARIO: (should be 2
paragraphs with 7 sentences each)
We carried out a lab experiment on the stroop test.
According to the results of our analysis using Minitab
ANOVA, there was no error made when we were
carrying out the task.
here are the objectives of the task:
Students should be able to:
1. Understand how human brains process information.
2. Demonstrate compatibility and interference issues.
3. Determine how noise or interference affects
perception.
arrow_forward
Please solve, engineering econ
arrow_forward
ADAMSON UNIVERSITY
College of Engineering
Civil Engineering Department
Answer Sheet
Name:
Date:
Course:
Time:
4m
4m
100 t
200 kat
arrow_forward
Engineering Management :
Please Read your Reference: www.bigrentz.com for your own. Topic is " Top 10 Construction
Industry Trends To Watch For In 2022" Answer The following this.
Make a reaction paper of the statement. In precisely five paragraphs,
minimum of five sentences per paragraph, discuss your stand regarding
the statement with at least 5 reliable references supporting your reaction.
CONSTRUCTION
Top 10 Construction
Industry Trends To
Watch For In 2022
By: BigRentz, Inc. on December 13,
2021
in
2022
arrow_forward
You are a contractor and receive the following email please respond to your client as effectivley and efficiently as possible
Dear Project Manager-
I am starting to worry about the heating and cooling system for the office area. The way we do business is rapidly changing and more and more computer equipment is needed. What can we do to ensure that the cooling system will be able to handle more equipment that gives off heat in the space?
arrow_forward
Help!!! Answer all parts correctly!! Please
arrow_forward
Case Study: Paula’s Pain
Paula has worked for Brindle Corporation for 3 years. During this time, she has worked as a machine operator/cell leader in various work cells. Recently, the plant went to mandatory 12-hour shifts and plans to remain on this schedule for several months.
Paula’s present work cell is manufacturing 3-inch diameter exhaust tubes that are made from stainless steel. These tubes get a hole punched in them, a flange welded on, and burrs ground off. The pipe then gets placed into a gage to check that it was made correctly. (The tubes weigh about six pounds.)
Paula has been performing the welding operation. She leans into the machine and loads the part into a fixture then positions the flange. Both pieces are clamped (using hand clamps) into position and the machine is cycled by depressing two palm buttons.
The gaging operation requires placing the finished part into the gage and clamping it (using hand clamps) into place. A pin is depressed to verify the position…
arrow_forward
The first photo is the question, where the 2nd shows some problem solving strategies
arrow_forward
1- What is management engineering? Is it an engineering branch, is it a profession, or what? 2- Define your duties as a management engineer? Whyshould Corporation need a management engineer? What is it you offer for the Corporation? 3- Mehmet is a manufacturing engineer at a bicycle company. Part of his job is to inspect broken bikes and draw up design plans for their repairs. One day, Mehmet gets instructions from his supervisor to fix a bike with brake cables off. When Mehmet inspects the bike, he notíces that the cables are broken because they are made of low-quality material, He suspects that this bike is specialy designed and that the customer does not know which materials will be most suitable for brake cables. That's why Mehmet decides to use a more durable material for cables when preparing design plans for the repair of the bike. When Mehmet goes to fix the bike, he learns that the customer specifically wants the bike to be repaired, but that no aesthetic changes should be…
arrow_forward
Help!!! Please answer all Correctly!!! Please
arrow_forward
This is an engineering problem and not a writing assignment. Please Do Not Reject. I had other engineering tutors on bartleby help me with problems similar to this one.
This problem must be presented in a logical order showing the necessary steps used to arrive at an answer. Each homework problem should have the following items unless otherwise stated in the problem:
a. Known: State briefly what is known about the problem.
b. Schematic: Draw a schematic of the physical system or control volume.
c. Assumptions: List all necessary assumptions used to complete the problem.
d. Properties: Identify the source of property values not given to you in the problem. Most sources will be from a table in the textbook (i.e. Table A-4).
e. Find: State what must be found.
f. Analysis: Start your analysis with any necessary equations. Develop your analysis as completely as possible before inserting values and performing the calculations. Draw a box around your answers and include units and follow an…
arrow_forward
Question: Continue the previous work, pls create me an Grann Chart for Production of High-Quality Organic Rice. You may assume the activities and days.
arrow_forward
Group Problem: You are planning to build a log cabin in Northern Minnesota on a remote hill with a beautiful
view of the setting sun. You will drag the logs up a long sometimes rocky hill to the building site by means of a
rope attached to a winch. You will need a rope for this job so you aim to know how much weight the rope would
safely support. You are operating on a tight budget so matching the rope strength would be a cost saver. You
know that the logs are heavy, and estimate the heaviest as 1,000 lbs. From maps you verify the hill is steeped
at an angle of = 70° with respect to the vertical, and you estimate a coefficient of kinetic friction between a
log and the earthen hill as 0.5. When pulling a log you will ensure that the uphill acceleration is never more
than 3.0 ft/s². The maximum recommended load is th of the nominal strength for the ropes considered as
stated on the product labels, you have three ropes in mind: 12 kN, 18 kN, & 24 kN. Which one of these three
rope…
arrow_forward
Assignment 1: TIME VALUE OF MONEY
Objective: To further understand the concept of the time value of money.
INSTRUCTIONS:
In cach problem,
a. Translate data given in problems into their respective graphical representations - i.e. draw
the correct cash flow diagram.
b. Write down all pertinent given information or data on your paper.
c. Calculate answers correctly.
1. Your spendthrift cousin wants to buy a fancy watch for $425. Instead, you suggest that
she buy an inexpensive watch for $25 and save the difference of $400. Your cousin
agrees with your idea and invests $400 for 40 years in an account earning 9% interest per
year. How much will she accumulate in this account after 40 years have passed?
arrow_forward
Task I:In order to generate electricity on a grand scale and provide it to all homes and businesses on a grid, the governments started developing power stations. Steam power plants work by removing thermal energy from a fuel source to transform water into steam. The steam that is created is used to turn a turbine. There are a variety of fuel sources that rely on steam to turn turbines to produce electricity. As a material engineer, your role is to select the best materials for the various parts ( Boiler, Turbine, and generator ) in the steam power station as in Figure 1. Your manager assigned you a project to do the following tasks
A . Based on the electrical material properties, what will you choose to manufacture the rotor windings coils in the generator (Titanium, Copper, or PVC)? Give reasons for your choice.
B. To insulate the outer cover of the generator, what will you use (Aluminium, Steel or PE)? Give reasons for your choice.
C. If the blades of the turbine must have the…
arrow_forward
Mech. Engg. Dept.
4th year 2022-2023
Solar Energy
Spring course MEC364
Dr. Mahmoud U. Jasim
Review/Recap Sheet
Q1- Answer with true or false and rewrite the false statements completely in
correct form, otherwise no mark will be put on the false statements.
1
2
To represent a location on earth surface you need to define its altitude and longitude
angles.
3
Solar zenith and solar incidence angles have the same value for horizontal surface.
At sunset time the value of solar altitude angle is maximum.
4
The angle which represents the inclination of a given surface is the zenith angle
5
6
7
8
When the absolute value of sun-wall azimuth angle exceeds 90' this means that the sun
rays are reaching the receiving plane.
The solar irradiance and the solar irradiation have the same physical meaning.
In the case of clear sky weather, the beam solar irradiation on a horizontal surface is less
than the diffused irradiation.
The total solar radiation received by a tilted surface is the same as that…
arrow_forward
Task 1
You are employed as a mechanical engineer within an unnamed research center, specializing in the development.
of innovative air conditioning systems. Your division is tasked with providing computer-based modeling and
design solutions using computational fluid dynamics through ANSYS software. Your primary responsibilities.
involve the analysis of horizontal channel dynamics to meet specific criteria. Under the guidance of your
immediate supervisor, you have been assigned unique responsibilities within an ongoing project. As a member of
the research team, your role includes constructing an appropriate model and executing a sequence of simulation.
iterations to explore and enhance channel performance. Figure 1 provides a visualization of the horizontal channel
under consideration. Consider 2D, incompressible, steady flowin a horizontal channel at a Reynolds number of
150. The schematic below illustrates the channel flow, not drawn to scale. For simplicity, neglect gravity. The…
arrow_forward
Astronomy Question:
Read the questions slowly and answer with precise and long details about each of the questions. Answer correctly and follow my guidelines for a long and wonderful review after results. Your target/main observable galaxy is the whirlpool galaxy. Target: Whirlpool Galaxy Object Type: Galaxy Distance: 37 million light-years Constellation: Canes Venatici. DO NOT COPY AND PASTE OTHER WORK OR THINGS FROM THE INTERNET, use your own words.Provide refernces if used
In 500 words, please explain the relevance of this object to the physics course material in university andits importance to astronomy. (Some question you may seek to answer are: What beyond the objectitself is learned by studying this class of objects? What sorts of telescopes and observations would beneeded for more detailed, broader reaching studies of this source and objects of its nature?)
arrow_forward
Create a reading outline for the given text "STRESS and STRAIN".
arrow_forward
Task 1
You are a student at the HTU University, the instructor of the fundamental of thermodynamic course
asked you to explain the fundamentals of thermodynamic systems to Grade 10 school students to
help them visualize the importance of thermodynamics in their life starting from their car engine
and moving to the different appliance that they use in their home, discuss the following with school
students:
Q1. What does thermodynamics mean and represent? Give examples from your daily life.
Q2. What is a thermodynamic property? What is the difference between intensive and extensive
properties. Why the density is an intensive property; it is dependent on mass and volume which are
extensive properties, right?.
Q3. What is the difference between energy and heat transfer? Give examples on both.
Q4. What does the first law of thermodynamics state? Give two examples on the first law of
thermodynamics from your daily life.
Q5. Write down the equation of energy balance for closed, open, and…
arrow_forward
Table 1: Mechanical behavior of human cadaver tibial bones
during pure torsional loads applied with the proximal tibia
fixed and the torque applied to the distal tibia until there is
bone fracture.
Medial condyle
Tibial tuberosity-
Medial malleolus
-Lateral condyle
Head of fibula
Ti-6Al-4V grade 5
Stainless Steel 316L
Region of bone
resection
-Lateral malleolus
L = 365 mm
Annealed
Annealed
Torque at ultimate failure (bone fracture)
Displacement (twist angle) at ultimate failure
Torsional Stiffness
Table 2: Mechanical properties of candidate materials for the rod.
Material
Process
Yield Strength
(MPa)
880
220-270
Do = 23 mm
Elastic
Modulus (GPa)
115
190
d₁ = 14 mm
Figure 1: Representative tibia bone showing the resection region (blue arrows) and median length (L). A circular cross section of distal tibia
taken at the level of resection) showing the median inner (di) and outer (Do) diameters of the cortical bone. A tibia bone after resection with the
proposed metal solid rod (black line)…
arrow_forward
I need the answer as soon as possible
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
- Case Study – The New Engineer Jeff was just hired by GSI, Inc. to be their Environmental and Safety Coordinator. This is Jeff's first position after completing his engineering degree. He had taken a course in safety engineering as part of his studies and felt confident that he could handle the job. Management at GSI, Inc. has assured him that they are committed to maintaining a safe workplace. They have never had an individual dedicated to this task full-time. They will implement his recommendations if he can justify them. As Jeff begins to get familiar with the operations, he spends considerable time on the production floor. He notices workers clean their tools before break with a liquid from an unmarked 55-gallon drum. They also use this liquid to clean residue from their skin. They use paper towels to dry their tools and hands, throw these towels in the trash, and head to the break room for a snack and/or smoke. In talking with the workers, Jeff learns of some of…arrow_forwardCase Study – The New Engineer Jeff was just hired by GSI, Inc. to be their Environmental and Safety Coordinator. This is Jeff's first position after completing his engineering degree. He had taken a course in safety engineering as part of his studies and felt confident that he could handle the job. Management at GSI, Inc. has assured him that they are committed to maintaining a safe workplace. They have never had an individual dedicated to this task full-time. They will implement his recommendations if he can justify them. As Jeff begins to get familiar with the operations, he spends considerable time on the production floor. He notices workers clean their tools before break with a liquid from an unmarked 55-gallon drum. They also use this liquid to clean residue from their skin. They use paper towels to dry their tools and hands, throw these towels in the trash, and head to the break room for a snack and/or smoke. In talking with the workers, Jeff learns of some of…arrow_forwardDepartment of Mechanical Engineering PRINCIPLES OF COMPUTER AIDED ENGINEERING – MENG303 Please solve the problem by keupordDepartment of Mechanical Engineering PRINCIPLES OF COMPUTER AIDED ENGINEERING – MENG303 Please solve the problem by keupordarrow_forward
- Problem 1: You are working in a consulting company that does a lot of hand calculations for designs in Aerospace Industry for mechanical, thermal, and fluidic systems. You took the Virtual engineering course, and you want to convince your boss and the team you work to move to modelling and simulation in computers using a certain software (Ansys, Abaqus, etc). Discuss the benefits and pitfalls of computer based models used within an industrial environment to solve problems in engineering.arrow_forwardTask 1 You are employed as a mechanical engineer within an unnamed research center, specializing in the development of innovative air conditioning systems. Your division is tasked with providing computer-based modeling and design solutions using computational fluid dynamics through ANSYS software. Your primary responsibilities involve the analysis of horizontal channel dynamics to meet specific criteria. Under the guidance of your immediate supervisor, you have been assigned unique responsibilities within an ongoing project. As a member of the research team, your role includes constructing an appropriate model and executing a sequence of simulation iterations to explore and enhance channel performance. Figure 1 provides a visualization of the horizontal channel under consideration. Consider 2D, incompressible, steady flow in a horizontal channel at a Reynolds number of 150. The schematic below illustrates the channel flow, not drawn to scale. For simplicity, neglect gravity. The…arrow_forwardAssignment 1: TIME VALUE OF MONEY Objective: To further understand the concept of the time value of money. INSTRUCTIONS: In each problem, a. Translate data given in problems into their respective graphical representations - i.e. draw the correct cash flow diagram. b. Write down all pertinent given information or data on your paper. c. Calculate answers correctly. 3. A certain college graduate, Sallie Evans, has $24,000 in student-loan debt at the end of her college career. The interest rate on this debt is 0.75% per month. If monthly payments on this loan are $432.61, how many months will it take for Sallie to repay the entire loan?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_forwardSUBJECT COURSE: ERGONOMICS REQUIRED: CONCLUSION AND RECOMMENDATION FOR THE FOLLOWING SCENARIO: (should be 2 paragraphs with 7 sentences each) We carried out a lab experiment on the stroop test. According to the results of our analysis using Minitab ANOVA, there was no error made when we were carrying out the task. here are the objectives of the task: Students should be able to: 1. Understand how human brains process information. 2. Demonstrate compatibility and interference issues. 3. Determine how noise or interference affects perception.arrow_forwardPlease solve, engineering econarrow_forward
- ADAMSON UNIVERSITY College of Engineering Civil Engineering Department Answer Sheet Name: Date: Course: Time: 4m 4m 100 t 200 katarrow_forwardEngineering Management : Please Read your Reference: www.bigrentz.com for your own. Topic is " Top 10 Construction Industry Trends To Watch For In 2022" Answer The following this. Make a reaction paper of the statement. In precisely five paragraphs, minimum of five sentences per paragraph, discuss your stand regarding the statement with at least 5 reliable references supporting your reaction. CONSTRUCTION Top 10 Construction Industry Trends To Watch For In 2022 By: BigRentz, Inc. on December 13, 2021 in 2022arrow_forwardYou are a contractor and receive the following email please respond to your client as effectivley and efficiently as possible Dear Project Manager- I am starting to worry about the heating and cooling system for the office area. The way we do business is rapidly changing and more and more computer equipment is needed. What can we do to ensure that the cooling system will be able to handle more equipment that gives off heat in the space?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