Answer:
h1 = 290.16kj/kg
P = 1.2311
Prandil expression at 8
P=p1/p7×pr
=8(1.2311)
=9.85
Enthalpy state at 8 corresponding to 9.85
h1 = 526.13kj/kg
Now prandtl state at 9 that correspond to 1400k.
h9 = 1515.42kj/kg
Pr = 450.5
Prandtl expression at state 10
P= p10/p9×pr
=1/8(450.5)
=56.31
Enthalpy at state 10 corresponding to prandtl 56.31
h10 = 860.39kj/kg
At 520k
h11 = 523.63kj/kg
Answer:
Explanation:
The detailed analysis and step by step calculation is as shown in the attachment.
Answer:
Answer is attached.
Explanation:
A NMOS is a n-channel MOSFET or Metal Oxide
Semiconductor Field Effect Transistor. This type
of transistor might be an enhancement or
depletion type nMOS transistor designed using
layers of Metal-oxide, Silicon-oxide and Silicon
fabricated on a substrate.
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()