i believe it is soft drink production
The question is incomplete! Complete question along with answer and step by step explanation is provided below.
Question:
Calculate the equivalent capacitance of the three series capacitors in Figure 12-1
a) 0.01 μF
b) 0.58 μF
c) 0.060 μF
d) 0.8 μF
Answer:
The equivalent capacitance of the three series capacitors in Figure 12-1 is 0.060 μF
Therefore, the correct option is (c)
Explanation:
Please refer to the attached Figure 12-1 where three capacitors are connected in series.
We are asked to find out the equivalent capacitance of this circuit.
Recall that the equivalent capacitance in series is given by

Where C₁, C₂, and C₃ are the individual capacitance connected in series.
C₁ = 0.1 μF
C₂ = 0.22 μF
C₃ = 0.47 μF
So the equivalent capacitance is




Rounding off yields

The equivalent capacitance of the three series capacitors in Figure 12-1 is 0.060 μF
Therefore, the correct option is (c)
Answer:
All 3 principal stress
1. 56.301mpa
2. 28.07mpa
3. 0mpa
Maximum shear stress = 14.116mpa
Explanation:
di = 75 = 0.075
wall thickness = 0.1 = 0.0001
internal pressure pi = 150 kpa = 150 x 10³
torque t = 100 Nm
finding all values
∂1 = 150x10³x0.075/2x0,0001
= 0.5625 = 56.25mpa
∂2 = 150x10³x75/4x0.1
= 28.12mpa
T = 16x100/(πx75x10³)²
∂1,2 = 1/2[(56.25+28.12) ± √(56.25-28.12)² + 4(1.207)²]
= 1/2[84.37±√791.2969+5.827396]
= 1/2[84.37±28.33]
∂1 = 1/2[84.37+28.33]
= 56.301mpa
∂2 = 1/2[84.37-28.33]
= 28.07mpa
This is a 2 d diagram donut is analyzed in 2 direction.
So ∂3 = 0mpa
∂max = 56.301-28.07/2
= 14.116mpa
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()