Answer:
a) 49.95 watts
b) The self locking condition is satisfied
Explanation:
Given data
weight of the square-thread power screw ( w ) = 100 kg = 1000 N
diameter (d) = 20 mm ,
pitch (p) = 2 mm
friction coefficient of steel parts ( f ) = 0.1
Gravity constant ( g ) = 10 N/kg
Rotation of electric power screwdrivers = 300 rpm
A ) Determine the power needed to raise to the basket board
first we have to calculate T
T = Wtan (∝ + Ф ) *
------------- equation 1
Dm = d - 0.5 ( 2) = 19mm
Tan ∝ =
where L = 2*2 = 4
hence ∝ = 3.83⁰
given f = 0.1 , Tan Ф = 0.1. hence Ф = 5.71⁰
insert all the values into equation 1
T = 1.59 Nm
Determine the power needed using this equation
= 
= 49.95 watts
B) checking if the self-locking condition of the power screw is satisfied
Ф > ∝ hence it is self locking condition is satisfied
The main objective of phasing out an INDUCTION MOTOR is to identify the ends of the stator coils.
<h3>What is an induction motor?</h3>
An induction motor is a device based on alternate electricity (AC) which is composed of three different stator coils.
An induction motor is a device also known as an asynchronous motor due to its irregular velocity.
In conclusion, the objective of phasing out an INDUCTION MOTOR is to identify the ends of the stator coils.
Learn more on induction motors here:
brainly.com/question/15721280
#SPJ1
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()