Answer:B
Explanation:
Given
For motor A
Characteristic life(r)=4100 hr
MTTF=4650 hrs
shape factor(B )=0.8
For motor B
Characteristic life(r)=336 hr
MTTF=300 hr
Shape Factor (B)=3
Reliability for 100 hours



For B


B is better for 100 hours
(b)For 750 hours


So here B is more Reliable.
Answer:
0.1047N
Explanation:
To solve this problem we must remember the conversion factors, remembering that 1 revolution equals 2π radians and 1min equals 60s

in conclusion, to know how many rad / s an element rotates which is expressed in Rev / min we must only multiply by 0.1047
Answer: true
Explanation:
it flows faster over the top of the wing because the top is more curved than the bottom of the wing. However
Answer:
Explanation:
class Pet:
def __init__(self):
self.name = ''
self.age = 0
def print_info(self):
print('Pet Information:')
print(' Name:', self.name)
print(' Age:', self.age)
class Dog(Pet):
def __init__(self):
Pet.__init__(self)
self.breed = ''
def main():
my_pet = Pet()
my_dog = Dog()
pet_name = input()
pet_age = int(input())
dog_name = input()
dog_age = int(input())
dog_breed = input()
my_pet.name = pet_name
my_pet.age = pet_age
my_pet.print_info()
my_dog.name = dog_name
my_dog.age = dog_age
my_dog.breed = dog_breed
my_dog.print_info()
print(' Breed:', my_dog.breed)
main()
The heat transferred to and the work produced by the steam during this process is 13781.618 kJ/kg
<h3>
How to calcultae the heat?</h3>
The Net Change in Enthalpy will be:
= m ( h2 - h1 ) = 11.216 ( 1755.405 - 566.78 ) = 13331.618 kJ/kg
Work Done (Area Under PV curve) = 1/2 x (P1 + P2) x ( V1 - V2)
= 1/2 x ( 75 + 225) x (5 - 2)
W = 450 KJ
From the First Law of Thermodynamics, Q = U + W
So, Heat Transfer = Change in Internal Energy + Work Done
= 13331.618 + 450
Q = 13781.618 kJ/kg
Learn more about heat on:
brainly.com/question/13439286
#SP1