Answer:
f = 628.32 lb
t = 2513.28 lb-inc
Explanation:
given data:
θ = 45°
outside radius = 6 inch
inside radius = 4 inch
coefficient of friction = 0.4
max pressure = 100 psi
a) determine force required for applying one pad
f =
f =
f = 628.32 lb
b) torque capacity (t)
t =
t = 0.4 *628.32*5
torque = 1256.64 lb-inc
for both pad = 2 * 1256.64 =2513.28 lb-inc
Answer:
CAD and a database
Explanation:
The correct answer is CAD and a database. When American Motors Corportation introduced the Jeep Cherokee, it implemented CAD to increase engineering productivity and combined that with a new communications system.
Answer:
The Mechanical Properties include Elasticity, Plasticity, Ductility, Malleability, Hardness, Toughness, Brittleness, Tenacity, Fatigue, Fatigue resistance, Impact Resistance property, Machineability, Strength, Strain Energy, Resilience, Proof Resilience, Modulus of Resilience, Creep, Rupture, and Modulus of Toughness.
Answer:
The following query is used to display TripName. Reservationld, FirstName. LastName and TotalCost of trip by adding the trip price plus other fees and multiplying the result by the number of persons which have number of persons >4.
Query:
SELECT ReservationlD, Trip.TripName. Customer.LastName. Customer.FirstName. (TripPrice+OtherFees) 'NumPersons as TotalCost FROM Reservation, Trip, Customer WHERE NumPersons>4 AND Reservation.TriplD=Trip.TriplD AND
Customer. CustomerNum=Reservation.CustomerNum:
Explanation:
- Select clause is used to retrieve data from specified database table or relation and returns the data in the form of table.
- ReservationID. Trip.TripName. Customer.LastName. Customer.FirstName are the column name of table.
- (TripPrice+OtherFees) 'NumPersons will calculate the total cost of the Trip and stored it into TotalCost column.
- As clause is used to give new name TotalCost to resultant column.
- FROM clause specifies one or more table from where records to be retrieved. o Reservation. Trip and Customer are the table name.
- WHERE clause is used in SQL query to retrieve only those records that satisfy the specified condition