1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
mina [271]
3 years ago
9

Convection is a function of temperature to the fourth power. a)-True b)-False

Engineering
1 answer:
strojnjashka [21]3 years ago
7 0

Answer:

The given statement for temperature and convection is False.

Explanation:

Convection is not a function of temperature to the fourth power but it depends linearly on temperature. the below equation shows the linear relation of heat transfer due to convection and temperature:

Q = H_{c}A(T_{hot} - T_{cold} )

Whereas, radiation is a function of temperature to the fourth power.

The Stefan-Boltzmann law gives the relationship between an object's temperature and the amount of radiation it emits. The law is given by:

Q=\sigma T^{4}

You might be interested in
Just to let you know Christmas is in 10 days&lt;3<br><br> lol
Harrizon [31]

Answer:

yay yay

Explanation:

im so excited i cant wait

7 0
3 years ago
Read 2 more answers
Which type of inappropriate practice most likely occurred if a researcher takes credit for someone else’s idea and does not ackn
Rashid [163]

Answer: the answer is plagiarism.

Explanation: Plagiarism is the act of taking credit from someone else's works or ideas, without acknowledging the author. <u>Conflict of interest</u> occurs when an employee has <u>interests that are at odds to each other</u>, which isn't shown at the excerpt given in the exercise. <u>Fabrication</u> is the <u>creation of intellectual property</u>, also not shown in the exercise, and <u>falsification</u> is the <u>creation of a scientific hypothesis</u> that <u>cannot be verified</u> by lack of practical evidence, which is not the case described as well.

7 0
3 years ago
A bathtub faucet has a maximum flow rate of 3 gal/min. The tub is rectangular (3 ft long x 2 ft wide x 1.5 ft deep). Although th
Anvisha [2.4K]

Answer:

Time taken = 136.32 minutes

Explanation:

The solution and complete explanation for the above question and mentioned conditions is given below in the attached document.i hope my explanation will help you in understanding this particular question.

3 0
3 years ago
A one-dimensional plane wall of thickness 2L=80 mm experiences uniform thermal generation of q= 1000 W/m^3 and is convectively c
Eduardwww [97]

Answer:

h=1.99998\ W/m^2.C

k=33.333\ W/m.C

Explanation:

Considering the one dimensional and steady state:

From Heat Conduction equation considering the above assumption:

\frac{\partial^2T}{\partial x^2}+\frac{\dot e_{gen}}{k}=0       Eq (1)

Where:

k is thermal Conductivity

\dot e_{gen} is uniform thermal generation

T(x) = a(L^2-x^2)+b

\frac{\partial\ T(x)}{\partial x}=\frac{\partial\ a(L^2-x^2)+b}{\partial x}=-2ax\\\frac{\partial^2\ T(x)}{\partial x^2}=\frac{\partial^2\ -2ax}{\partial x^2}=-2a

Putt in Eq (1):

-2a+\frac{\dot e_{gen}}{k}=0\\ k=\frac{\dot e_{gen}}{2a}\\ k=\frac{1000}{2*15}\\ k=33.333\ W/m.C

Energy balance is given by:

Q_{convection}=Q_{conduction}

h(T_L-T_{inf})=-k(\frac{dT}{dx}) _L     Eq  (2)

T(x) = a(L^2-x^2)+b

Putting x=L

T(L) = a(L^2-L^2)+b\\T(L)=b\\T(L)=40^oC

\frac{dT}{dx}=\frac{d(a(L^2-x^2)+b}{dx}=-2ax\\Put\ x\ =\ L\\\frac{dT}{dx}=-2aL\\(\frac{dT}{dx})_L=-2*15*0.04=-1.2

From Eq (2)

h=\frac{-k*-1.2}{(40-20)} \\h=\frac{-33.333*-1.2}{(40-20)}\\h=1.99998\ W/m^2.C

7 0
3 years ago
For this problem, you may not look at any other code or pseudo-code (even if it is on the internet), other than what is on our w
sergiy2304 [10]

Answer:

(a)

(i) pseudo code :-

current = i

// assuming parent of root is -1

while A[parent] < A[current] && parent != -1 do,

if A[parent] < A[current] // if current element is bigger than parent then shift it up

swap(A[current],A[parent])

current = parent

(ii) In heap we create a complete binary tree which has height of log(n). In shift up we will take maximum steps equal to the height of tree so number of comparison will be in term of O(log(n))

(b)

(i) There are two cases while comparing with grandparent. If grandparent is less than current node then surely parent node also will be less than current node so swap current node with parent and then swap parent node with grandparent.

If above condition is not true then we will check for parent node and if it is less than current node then swap these.

pseudo code :-

current = i

// assuming parent of root is -1

parent is parent node of current node

while A[parent] < A[current] && parent != -1 do,

if A[grandparent] < A[current] // if current element is bigger than parent then shift it up

swap(A[current],A[parent])

swap(A[grandparent],A[parent])

current = grandparent

else if A[parent] < A[current]

swap(A[parent],A[current])

current = parent

(ii) Here we are skipping the one level so max we can make our comparison half from last approach, that would be (height/2)

so order would be log(n)/2

(iii) C++ code :-

#include<bits/stdc++.h>

using namespace std;

// function to return index of parent node

int parent(int i)

{

if(i == 0)

return -1;

return (i-1)/2;

}

// function to return index of grandparent node

int grandparent(int i)

{

int p = parent(i);

if(p == -1)

return -1;

else

return parent(p);

}

void shift_up(int A[], int n, int ind)

{

int curr = ind-1; // because array is 0-indexed

while(parent(curr) != -1 && A[parent(curr)] < A[curr])

{

int g = grandparent(curr);

int p = parent(curr);

if(g != -1 && A[g] < A[curr])

{

swap(A[curr],A[p]);

swap(A[p],A[g]);

curr = g;

}

else if(A[p] < A[curr])

{

swap(A[p],A[curr]);

curr = p;

}

}

}

int main()

{

int n;

cout<<"enter the number of elements :-\n";

cin>>n;

int A[n];

cout<<"enter the elements of array :-\n";

for(int i=0;i<n;i++)

cin>>A[i];

int ind;

cout<<"enter the index value :- \n";

cin>>ind;

shift_up(A,n,ind);

cout<<"array after shift up :-\n";

for(int i=0;i<n;i++)

cout<<A[i]<<" ";

cout<<endl;

}

Explanation:

8 0
3 years ago
Other questions:
  • simply supported beam is subjected to a linearly varying distributed load ( ) 0 q x x L 5 q with maximum intensity 0 q at B. The
    6·1 answer
  • In a food processing facility, a spherical container of inner radius r1 = 40 cm, outer radius r2 = 41 cm, and thermal conductivi
    12·1 answer
  • When water precipitates from the sky, runs off downhill along the ground, or infiltrates down into the soil, its gravitational p
    5·1 answer
  • The two shafts of a Hooke’s coupling have their axes inclined at 20°.The shaft A revolves at a uniform speed of 1000 rpm. The sh
    5·1 answer
  • A 200-mm-long strip of metal is stretched in two steps, first to 300 mm and then to 400 mm. Show that the total true strain is t
    15·1 answer
  • What are the main causes of injuries when using forklifts?
    5·1 answer
  • PLEASE HELP WITH THIS ASAP! Thanks
    6·1 answer
  • What is included in the environmental impact assessment process, such as the use of geographic information systems?
    15·1 answer
  • A composite plane wall consists of a 5-in.-thick layer of insulation (ks = 0.029 Btu/h*ft*°R) and a 0.75-in.-thick layer of sidi
    11·1 answer
  • At the beginning of last year, tarind corporation budgeted $1,000,000 of fixed manufacturing overhead and chose a denominator le
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!