Answer:
The time required is 10.078 hours or 605 min
Explanation:
The formula to apply here is ;
K=(d²-d²₀ )/t
where t is time in hours
d is grain diameter to be achieved after heating in mm
d₀ is the grain diameter before heating in mm
Given
d=5.5 × 10^-2 mm
d₀=2.4 × 10^-2 mm
t₁= 500 min = 500/60 =25/3 hrs
t₂=?
n=2.2
First find K
K=(d²-d²₀ )/t₁
K={ (5.1 × 10^-2 mm)²-(2.4 × 10−2 mm)² }/ 25/3
K=(0.051²-0.024²) ÷25/2
K=0.000243 mm²/h
Re-arrange equation for K ,to get the equation for d as;
d=√(d₀²+ Kt) where now t=t₂
Answer:
1700kJ/h.K
944.4kJ/h.R
944.4kJ/h.°F
Explanation:
Conversions for different temperature units are below:
1K = 1°C + 273K
1R = T(K) * 1.8
= (1°C + 273) * 1.8
1°F = (1°C * 1.8) + 32
Q/delta T = 1700kJ/h.°C
T (K) = 1700kJ/h.°C
= 1700kJ/K
T (R) = 1700kJ/h.°C
= 1700kJ/h.°C * 1°C/1.8R
= 944.4kJ/h.R
T (°F) = 1700kJ/h.°C
= 1700kJ/h.°C * 1°C/1.8°F
= 944.4kJ/h.°F
Note that arithmetic operations like subtraction and addition of values do not change or affect the value of a change in temperature (delta T) hence, the arithmetic operations are not reflected in the conversion. Illustration: 5°C - 3°C
= 2°C
(273+5) - (273+3)
= 2 K
Answer:
try to pop it back in good luck im scared for you
Answer:
Check the explanation
Explanation:
class LanguageHelper:
language=set()
#Constructor
def __init__(self, words):
for w in words:
self.language.add(w)
def __contains__(self,query):
return query in self.language
def getSuggestionns(self,query):
matches = []
for string in self.language:
if string.lower().startswith(query) or query.lower().startswith(string) or query.lower() in string.lower():
matches.append(string)
return matches
lh = LanguageHelper(["how","Hi","What","Hisa"])
print('how' in lh)
print(lh.getSuggestionns('hi'))
===========================================
OUTPUT:-
==================
True
['Hisa', 'Hi']
====