ASSIGNMENT 1
TOPIC: INTRODUCTION OF FLUID MECHANICS
|
GROUP MEMBERS |
||
|
Name |
Matrix Number |
|
QUESTION 1: 10 MARKS
In your own words, explain what have you learnt from fluid mechanics course.
|
NAME |
INDIVIDUAL REFLECTION |
QUESTION 2: 40 MARKS
Refined crude oil has been used to lubricate moving parts in a wide variety of machines and engines. These petroleum-based lubricants are extracted from natural crude oil, and must be refined, desalted, dewaxed, and distilled from crude feedstock. However, recently, engineers are moving towards non-petroleum based lubricants or known as synthetic lubricants. Obtain information about non-petroleum based lubricants and summarize your findings in a brief report by following the format given below. The report should contain minimum 1500 words (excluding figure and table title and content, references)
|
Section 1: Introduction |
|
Section 2: Categories and types of available petroleum based lubricants |
|
Section 3: Categories and types of available non petroleum based lubricants |
|
Section 4: Difference between petroleum based and non-petroleum based lubricants |
|
Section 5: Issues and challenges with petroleum based lubricants |
|
Section 6: References (website url, date assessed AND/OR name of journal/ book, author) Minimum 3 references |
QUESTION 3: 50 MARKS
It is predicted that nanotechnology and the use of nano sized objects will improvise many processes and products. Among new new nanotechnology areas is that of nano scale fluid mechanics or known as nanofluid. Fluid behavior at the nano scale can be entirely different than that for the usual everyday flows. Obtain various information of nano fluid mechanics and summarize your findings in a brief report by following the format given below. The report should contain minimum 1700 words (excluding figure and table title and content, references)
|
Section 1: Introduction – what is nano scale fluid mechanics |
|
Section 2: History / the starting point of nano scale fluid mechanics |
|
Section 3: Various types of nano scale fluid mechanics |
|
Section 4: Use/ potential applications of nano scale fluid mechanics |
|
Section 5: Issues and challenges with nano scale fluid mechanics |
|
Section 6: References (website url, date assessed OR name of journal/ book, author) Minimum 3 references |
In: Mechanical Engineering
A particle that carries a net charge of -95.8 uC is held in a constant electric field that is uniform over the entire region. The electric field vector is oriented 55.2 degrees clockwise from the vertical axis, as shown in the figure. If the magnitude of the electric field is 8.32 N/C, how much work is done by the electric field as the particle is made to move a distance of d= 0.556m straight up?

What is the potential difference ΔV between the particles final and initial positions?
In: Physics
4 charges are fixed to the corners of a square of side .53 cm. Charge 1 of -1 uC is fixed to the top left corner. Charge 2 of -2uC is fixed to the top right corner, charge 3 of 3uC is fixed to the bottom left corner , and charge 4 of -4uC is fixed to the bottom right corner. a) find the magnitude and direction of the electric field at the center of the square b) find the potential at the center c) find the electric potential energy of the system.
In: Physics
Based on the following companies in the U.S stock market .
(i) STI
(II) SBUX
(III) EBAY
(IV) BMO
(V) CM
(VI) FR
(VII) VMI
(VIII) SKX
(IX) HPQ
(X) VIOT
what are the following for each holding in the portfolio ?
(a) Each company profile
(b) Ticker
(c) Name
(d) key ratios
In: Finance
Based on the following companies in the U.S stock market .
(i) AMD
(II) CSCO
(III) TGT
(IV) FCX
(V) IBM
(VI) MSFT
(VII) NKE
(VIII) ORCL
(IX) PEP
(X) PG
what are the following for each holding in the portfolio ?
(a) Each company profile
(b) Ticker
(c) Name
(d) key ratios
In: Finance
Based on the following companies in the U.S stock market .
(i) AMD
(II) CSCO
(III) TGT
(IV) FCX
(V) IBM
(VI) MSFT
(VII) NKE
(VIII) ORCL
(IX) PEP
(X) PG
what are the following for each holding in the portfolio ?
(a) Each company profile
(b) Ticker
(c) Name
(d) key ratios
In: Finance
In: Anatomy and Physiology
What is one significant way the Renaissance represents "rediscovery" of classical antiquity? Please identify your example as well as the author/artist/architect responsible for it, and explain exactly how it was inspired by antiquity. For example, was your author imitating a certain literary style from the ancient world, or discussing a subject germane to it?
In: Psychology
if you were the state epidemiologist and it was suspected that smoke from the local toy factory was connected to adverse health outcomes among the town’s residents, what type of cohort study would you conduct to further investigate this concern? Why? What limitations exist in your choice of study? Remember to cite sources where necessary.
In: Nursing
In python 3 please:
This program extends the earlier "Online shopping cart" program. (Start working from your Program 7).
(1) Build the ShoppingCart class with the following data attributes and related methods. Note: Some can be method stubs (empty methods) initially, to be completed in later steps.(3 pt)
● Parameterized constructor which takes the customer name and date as parameters
● Attributes
○ customer_name (string)
○ current_date (string)
○ cart_items (list)
● Methods
○ add_item()
■ Adds an item to the cart_items list. Has parameter ItemToPurchase. Does not return anything.
○ get_cost_of_cart()
■ Determines and returns the total cost of items in the cart. Has no parameters.
○ print_total()
Outputs total of objects in the cart.
If the cart is empty, output this message:
SHOPPING CART IS EMPTY
○ print_descriptions()
■ Outputs each item's description.
Ex. of print_total() output:
John Doe's Shopping Cart - February 1, 2016 Number of Items: 8
Nike Romaleos 2 @ $189 = $378 Chocolate Chips 5 @ $3 = $15 Powerbeats 2 Headphones 1 @ $128 = $128
Total: $521
Ex. of print_descriptions() output:
John Doe's Shopping Cart - February 1, 2016
Item Descriptions
Nike Romaleos: Volt color, Weightlifting shoes Chocolate Chips:
Semi-sweet
Powerbeats 2 Headphones: Bluetooth headphones
1
|
(2) In the main section of your code, prompt the user for a customer's name and today's date. Output the name and date. Create an object of type ShoppingCart. (1 pt) Ex. Enter the customer's name: John Doe Enter today's date: February 1, 2016 Customer name: John Doe Today's date: February 1, 2016 (3) Implement the print_menu() function. print_menu() has a ShoppingCart parameter and outputs a menu of options to manipulate the shopping cart. Each option is represented by a single character. Build and output the menu within the function. |
|
If an invalid character is entered, continue to prompt for a
valid choice. Hint: Implement Quit before implementing other
options. Call print_menu() in the main() function. Continue to
execute the menu until the user enters q to Quit. (2 pts) (4) Implement Output shopping cart menu option. (1 pts) Ex: OUTPUT SHOPPING CART John Doe's Shopping Cart - February 1, 2016 Number of Items: 8 Nike Romaleos 2 @ $189 = $378 Chocolate Chips 5 @ $3 = $15 Powerbeats 2 Headphones 1 @ $128 = $128 Total: $521 (5) Implement Output item's description menu option. (1 pts) Ex. |
OUTPUT ITEMS' DESCRIPTIONS John Doe's Shopping Cart - February 1, 2016 Item Descriptions |
2
(6) Implement Add item to cart menu option. (2 pts)
Ex:
ADD ITEM TO CART Enter the item name: Nike Romaleos Enter the item description: Volt color, Weightlifting shoes Enter the item price: 189 Enter the item quantity: 2
In: Computer Science