Answer:
Maximum allowable chip power is 0.35 W
Explanation:
This question is incomplete. The complete question is
A square isothermal chip is of width w = 5 mm on a side and is mounted in a substrate such that its side and back surfaces are well insulated; the front surface is exposed to the flow of a coolant at t[infinity] = 15°c. from reliability considerations, the chip temperature must not exceed t = 85°c. f the coolant is air and the corresponding convection 200 w/m2 k, what is the maximum allowable chip power?
<u>ANSWER:</u>
The heat transfer through convection, we have the equation:
q = hA(T - T∞)
where,
q = power transfer through convection = ?
h = convection coefficient = 200 W/m²K
A = Area of convection surface = (0.005 m)² = 0.000025 m²
T = Chip surface temperature = 85° C
T∞ = Fluid temperature = 15° C
Therefore,
q = (200 W/m².K)(0.000025 m²)(85° C - 15° C)
<u>q = 0.35 W</u>
Since, difference in temperature is same on both Celsius and kelvin scale. Therefore, Celsius is written as kelvin for difference and they shall be cancelled.
Answer:
Matlab code with step by step explanation and output results are given below
Explanation:
We have to construct a Matlab function that creates a row vector "countValues" with elements 1 to endValue. That means it starts from 1 and ends at the value provided by the user (endValue).
function countValues = CreateArray(endValue)
% Here we construct a row vector countValues from 1:endValue
countValues = 1:endValue;
% then we transpose this row vector into column vector
countValues = countValues';
end
Output:
Calling this function with the endValue=11 returns following output
CreateArray(11)
ans =
1
2
3
4
5
6
7
8
9
10
11
Hence the function works correctly. It creates a row vector then transposes it and makes it a column vector.
Answer:
lol contrates brother......
Answer:
Production Function : TFSq = f { ingredient 1 ...... ing. i }
Increasing/ Constant/ Increasing Returns to Scale :
Output change > / = / < Input change respectively
Explanation:
Production Function is the relationship between production inputs & outputs, given technology. It denotes the maximum output that can be generated with given inputs.
Tutti Frutti Smoothie [TFS] quantity = Function of {Ingredient1.....ingredient i}
Returns to Scale represents change in output when all inputs change in same proportion.
- Constant Returns to Scale [CRS] : Output Change = All inputs change
- Increasing Returns to Scale [IRS] : Output Change > All inputs change
- Negative Returns to Scale [NRS] : Output Change < All inputs change
When all inputs (ingredients) change by same proportion i.e get twice 2X :- If output of Tutti Frutti Smoothie increases by > 2X i.e 3X - IRS. If it increases equal ie 2X - CRS. If it increases lesser i.e 1.5X - CRS.