Answer:
False
Explanation: An unstable flow is a flow process where the properties of the flow is unstable, in this case the flow input and flow output are not equal.
Unstable flow is also known as transient flow process because the main properties of interest which includes the time of flow and the volume of the flow through the pipe is not the same so this type of low gives more concern to the person carrying out the study.
Answer:
h=1.122652m
Explanation:
Assuming density of air = 1.2kg/m³
the differential pressure is given by:

Answer:
10.984mm
Explanation:
by elastic modulus
stress=modulus of elasticity*strain
stress=loading/area area" cross-section"
11mm=0.011m
area=π(d/2)^2=π(0.011/2)^2=9.503*10^-5 square meter
stress=55000/(9.503*10^-5)=578.745 MPa
convert MPa and GPa to pascal.
strain=stress/modulus=(578.745*10^6)/(125*10^9)=0.00463............axial strain
v=Poisson ratio
lateral strain=(-v)*axial strain= -0.31*0.00463
lateral strain= -1.4353*10^-3=change in diameter/ original diameter
change in diameter=(-1.4353*10^-3)*0.011= -1.57883*10^-5 m
negative indicates decrease in diameter.
decrease in dia.=0.01578mm
new diameter=11-0.01578= 10.984mm
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()
Answer:
The impedance of the circuit depends on the angular frequency of the voltage source.
Explanation:
- In a electric circuit, the magnitude of the impedance, is given by the following expression:

where R = Resistance
Xl = Inductive reactance = ω*L
Xc = Capacitive Reactance = 1/ωC
and ω = angular frequency of the voltage source.
- So, it can be seen that the impedance depends on the value of the constants R,L and C, and on the angular frequency ω.