Answer:
135 hour
Explanation:
It is given that a carburizing heat treatment of 15 hour will raise the carbon concentration by 0.35 wt% at a point of 2 mm from the surface.
We have to find the time necessary to achieve the same concentration at a 6 mm position.
we know that where x is distance and t is time .As the temperature is constant so D will be also constant
So
then we have given and we have to find putting all these value in equation
so
Answer:
14.506°C
Explanation:
Given data :
flow rate of water been cooled = 0.011 m^3/s
inlet temp = 30°C + 273 = 303 k
cooling medium temperature = 6°C + 273 = 279 k
flow rate of cooling medium = 0.02 m^3/s
Determine the outlet temperature
we can determine the outlet temperature by applying the relation below
Heat gained by cooling medium = Heat lost by water
= ( Mcp ( To - 6 ) = Mcp ( 30 - To )
since the properties of water and the cooling medium ( water ) is the same
= 0.02 ( To - 6 ) = 0.011 ( 30 - To )
= 1.82 ( To - 6 ) = 30 - To
hence To ( outlet temperature ) = 14.506°C
Answer:
The cost and size of materials needed to produce energy
Explanation:
Artificial photosynthesis is a chemical process that uses solar cells instead of chlorophyll to absorb sunlight and convert it into electricity. This process uses artificial leaves that require man-made catalyst to spilt water present in the air into hydrogen and oxygen. It is clear that the reaction requires heat from the sun for energy production thus the technology is expensive to be applied in most areas of the world. Additionally, results obtained from previous undertaken projects of this type has been ineffective and unsustainable because it involves a lot of trial and error.
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).