Answer:
The plot of the function production rate m(t) (in kg/min) against time t (in min) is attached to this answer.
The production rate function M(t) is:
(1)
The Laplace transform of this function is:
(2)
Explanation:
The function of the production rate can be considered as constant functions by parts in the domain of time. To make it a continuous function, we can use the function Heaviside (as seen in equation (1)). To join all the constant functions, we consider at which time the step for each one of them appears and sum each function multiply by the function Heaviside.
For the Laplace transform we use the following rules:
(3)
(4)
Answer:
The lift coefficient is 0.3192 while that of the moment about the leading edge is-0.1306.
Explanation:
The Upper Surface Cp is given as

The Lower Surface Cp is given as

The difference of the Cp over the airfoil is given as

Now the Lift Coefficient is given as

Now the coefficient of moment about the leading edge is given as

So the lift coefficient is 0.3192 while that of the moment about the leading edge is-0.1306.
Answer:
Theory of Mind : A robotic head has a face that recognizes and simulates emotions.
Self aware : A robot tries to protect itself from harm
Purely Reactive : A door automatically opens when a person steps in front of it.
Limited Memory : A personal assistant software tracks a persons travel routes and suggests shorter routes.
Explanation:
Artificial intelligence is simply a technology which enables automation. It enables system perform task without being explicitly controlled. Purely reactive systems do not store Data in memory, it simply observes what going on at the moment which is what it was programmed to do and takes a step. One the machine detects someone approaching up to a certain distance, it opens.
Limited Memory systems store information about the past and this enhances its Decison making, prediction engines, self driving cars use this kind of artificial intelligence.
Theory of Mind : Here, systems are trained to detect, understand and replicate what is understood. Once the robot identifies an emotion, it replicates it.
Self - Aware : An advanced level of AI, where systems will not only be able to replicate what they see, but also make conscious decisions as to which action to take in different circumstances.
Answer:
The solution code is written in Java.
- public class Movie {
- private double [][] seats = new double[5][5];
- private double totalSales;
-
- public Movie(){
-
- for(int i= 0; i < this.seats.length; i++){
- for(int j = 0; j < this.seats[i].length; j++){
- this.seats[i][j] = 12;
- }
- }
-
- this.totalSales = 0;
- }
-
- public boolean bookSeat(int i, int j)
- {
- if(this.seats[i][j] != 0){
- this.totalSales += this.seats[i][j];
- this.seats[i][j] = 0;
- return true;
- }else{
- return false;
- }
-
- }
- }
Explanation:
The method, bookSeat(), as required by the question is presented from Line 16 - 26 as part of the public method in a class <em>Movie</em>. This method take row,<em> i</em>, and column,<em> j</em>, as input.
By presuming the seats is an two-dimensional array with all its elements are initialized 12 (Line 7 - 10). This means we presume the movie ticket price for all the seats are $12, for simplicity.
When the<em> bookSeat() </em>method is invoked, it will check if the current price of seats at row-i and column-i is 0. If not, the current price, will be added to the <em>totalSales </em>(Line 19)<em> </em>and then set the price to 0 (Line 20) and return <em>true</em> since the ticket is successfully sold (Line 21). If it has already been sold, return <em>false</em> (Line 23).
Answer:
When water is surrounding T_s = 34.17 degree C
When air surrounding T_S = 1434.7 degree C
from above calculation we can conclude that air is less effective than water as heat transfer agent
Explanation:
Given data:
length = 300 mm
Outer diameter = 30 mm
Dissipated energy = 2 kw = 2000 w
Heat transfer coefficient IN WATER = 5000 W/m^2 K
Heat transfer coefficient in air = 50 W/m^2 K
we know that 
From newton law of coding we have

is surface temp.
T - temperature at surrounding
![P = hA(T_s - T_{\infity})[tex]\frac{P}{\pi hDL} = (T_s - T_{\infity})](https://tex.z-dn.net/?f=P%20%3D%20hA%28T_s%20-%20%20T_%7B%5Cinfity%7D%29%3C%2Fp%3E%3Cp%3E%5Btex%5D%5Cfrac%7BP%7D%7B%5Cpi%20hDL%7D%20%3D%20%20%28T_s%20-%20%20T_%7B%5Cinfity%7D%29)
solving for[/tex] T_s [/tex] w have



When air is surrounding we have



from above calculation we can conclude that air is less effective than water as heat transfer agent