Answer:
i think its d frequency
Explanation:
hz on a multimeter means frequency setting
Answer:
The Estimated uncertainty in a nominal displacement of 2 cm at the design stage is plus or minus 0.0124cm
Explanation:
uncertainty in a nominal displacement
= (u^2 + v^2)^(1/2)
assume from specifications that k = 5v/5cm
= 1v/cm
u^2 = (0.0025*2)^(2) + (0.005*10*2)^2 + (0.0025*2)^2
= 0.01225v
v = 2v * 0.001
= 0.002v
uncertainty in a nominal displacement
= (u^2 + v^2)^(1/2)
= ((0.01225)^2 + (0.002)^2)^(1/2)
= 0.0124 cm
Therefore, The Estimated uncertainty in a nominal displacement of 2 cm at the design stage is plus or minus 0.0124cm
Answer:
Heater power = 425 watts
Explanation:
Detailed explanation and calculation is shown in the image below
Answer:
Class of fit:
Interference (Medium Drive Force Fits constitute a special type of Interference Fits and these are the tightest fits where accuracy is important).
Here minimum shaft diameter will be greater than the maximum hole diameter.
Medium Drive Force Fits are FN 2 Fits.
As per standard ANSI B4.1 :
Desired Tolerance: FN 2
Tolerance TZone: H7S6
Max Shaft Diameter: 3.0029
Min Shaft Diameter: 3.0022
Max Hole Diameter:3.0012
Min Hole Diameter: 3.0000
Max Interference: 0.0029
Min Interference: 0.0010
Stress in the shaft and sleeve can be considered as the compressive stress which can be determined using load/interference area.
Design is acceptable If compressive stress induced due to selected dimensions and load is less than compressive strength of the material.
Explanation:
Answer:
- def median(l):
- if(len(l) == 0):
- return 0
- else:
- l.sort()
- if(len(l)%2 == 0):
- index = int(len(l)/2)
- mid = (l[index-1] + l[index]) / 2
- else:
- mid = l[len(l)//2]
- return mid
-
- def mode(l):
- if(len(l)==0):
- return 0
-
- mode = max(set(l), key=l.count)
- return mode
-
- def mean(l):
- if(len(l)==0):
- return 0
- sum = 0
- for x in l:
- sum += x
- mean = sum / len(l)
- return mean
-
- lst = [5, 7, 10, 11, 12, 12, 13, 15, 25, 30, 45, 61]
- print(mean(lst))
- print(median(lst))
- print(mode(lst))
Explanation:
Firstly, we create a median function (Line 1). This function will check if the the length of list is zero and also if it is an even number. If the length is zero (empty list), it return zero (Line 2-3). If it is an even number, it will calculate the median by summing up two middle index values and divide them by two (Line 6-8). Or if the length is an odd, it will simply take the middle index value and return it as output (Line 9-10).
In mode function, after checking the length of list, we use the max function to estimate the maximum count of the item in list (Line 17) and use it as mode.
In mean function, after checking the length of list, we create a sum variable and then use a loop to add the item of list to sum (Line 23-25). After the loop, divide sum by the length of list to get the mean (Line 26).
In the main program, we test the three functions using a sample list and we shall get
20.5
12.5
12