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
Anon25 [30]
3 years ago
7

Laminar flow normally persists on a smooth flat plate until a critical Reynolds number value is reached. However, the flow can b

e tripped to a turbulent state by adding roughness to the leading edge of the plate. For a particular situation, experimental results show that the local heat transfer coefficients for laminar and turbulent conditions are
h_lam(x)= 1.74 W/m^1.5. Kx^-0.5
h_turb(x)= 3.98 W/m^1.8 Kx^-0.2

Calculate the average heat transfer coefficients for laminar and turbulent conditions for plates of length L = 0.1 m and 1 m.
Engineering
1 answer:
grandymaker [24]3 years ago
3 0

Answer:

At L = 0.1 m

h⁻_lam = 11.004K   W/m^1.5

h⁻_turb = 7.8848K   W/m^1.8

At L = 1 m

h⁻_lam = 3.48K   W/m^1.5

h⁻_turb = 4.975K   W/m^1.8

Explanation:

Given that;

h_lam(x)= 1.74 W/m^1.5. Kx^-0.5

h_turb(x)= 3.98 W/m^1.8 Kx^-0.2

conditions for plates of length L = 0.1 m and 1 m

Now

Average heat transfer coefficient is expressed as;

h⁻ = 1/L ₀∫^L hxdx

so for Laminar flow

h_lam(x)= 1.74 . Kx^-0.5  W/m^1.5

from the expression

h⁻_lam = 1/L ₀∫^L 1.74 . Kx^-0.5   dx

= 1.74k / L { [x^(-0.5+1)] / [-0.5 + 1 ]}₀^L

= 1.74k/L = [ (x^0.5)/0.5)]⁰^L

= 1.74K × L^0.5 / L × 0.5

h⁻_lam= 3.48KL^-0.5

For turbulent flow

h_turb(x)= 3.98. Kx^-0.2 W/m^1.8

form the expression

1/L ₀∫^L 3.98 . Kx^-0.2   dx

= 3.98k / L { [x^(-0.2+1)] / [-0.2 + 1 ]}₀^L

= (3.98K/L) × (L^0.8 / 0.8)

h⁻_turb = 4.975KL^-0.2

Now at L = 0.1 m

h⁻_lam = 3.48KL^-0.5  =  3.48K(0.1)^-0.5  W/m^1.5

h⁻_lam = 11.004K   W/m^1.5

h⁻_turb = 4.975KL^-0.2 = 4.975K(0.1)^-0.2

h⁻_turb = 7.8848K   W/m^1.8

At L = 1 m

h⁻_lam = 3.48KL^-0.5  =  3.48K(1)^-0.5  W/m^1.5

h⁻_lam = 3.48K   W/m^1.5

h⁻_turb = 4.975KL^-0.2 = 4.975K(1)^-0.2

h⁻_turb = 4.975K   W/m^1.8

Therefore

At L = 0.1 m

h⁻_lam = 11.004K   W/m^1.5

h⁻_turb = 7.8848K   W/m^1.8

At L = 1 m

h⁻_lam = 3.48K   W/m^1.5

h⁻_turb = 4.975K   W/m^1.8

You might be interested in
Consider the function f(n) = n
alexira [117]

get off this

Explanation:

4 0
3 years ago
An aluminum bar 125 mm long with a square cross section 16 mm on an edge is pulled in tension with a load of 66,700 N and experi
AfilCa [17]

Answer: the modulus of elasticity of the aluminum is 75740.37 MPa

Explanation:

Given that;

Length of Aluminum bar L = 125 mm

square cross section s = 16 mm

so area of cross section of the aluminum bar is;

A = s² = 16² = 256 mm²

Tensile load acting the bar p = 66,700 N

elongation produced Δ = 0.43

so

Δ = PL / AE

we substitute

0.43 = (66,700 × 125) / (256 × E)

0.43(256 × E) = (66,700 × 125)

110.08E = 8337500

E = 8337500 / 110.08

E = 75740.37 MPa

Therefore, the modulus of elasticity of the aluminum is 75740.37 MPa

4 0
3 years ago
What would the answer be to this question?
Step2247 [10]
The answer would be 5 years
8 0
3 years ago
Read 2 more answers
In this homework problem we’ll begin completing an implementation of SimpleList that uses a linked list of Item objects internal
balu736 [363]

The solution contains multiple java files. The initial linked list is 10 20 30 40 . The modified list is 20 30 40

<u>Explanation</u>

//Define the interface SimpleList;

public interface SimpleList

{

   public Object get (int index);

   public void set (int index, Object element);

   public void add (int index, Object element);

   public Object remove(int index);

   public int size();

}

SimpleLinkedList.java:

//Define the class SimpleLinkedList that implements the SimpleList.

public class SimpleLinkedList implements SimpleList

{

   //Define the Item class.

   class Item

   {

       Object value;

       Item next;          

       Item (Object setValue, Item setNext)

       {

           value = setValue;

           next = setNext;

       }

   }      

   protected Item start;

   protected int currentSize;      

   //Define the default constructor.

   public SimpleLinkedList()

   {

       currentSize = 0;

       start = null;

   }      

   //Define the parameterized constructor.

   SimpleLinkedList(Object[] values)

   {

       currentSize = 0;          

       //Start the loop and call the add method.

       for(int i = 0; i<values.length;i++)

       {

           add(i, values[i]);

       }

   }      

   //Define the method to return the object

   // at the given index.

   atOverride

   public Object get (int index)

   {

       //Call the getItem() method and return it's value.

       return getItem(index).value;

   }      

   //Define the set() method.

   atOverride

   public void set (int index, Object element)

   {

       if (index < 0 || index >= currentSize)

       {

           return;

       }

       int currentIndex = 0;          

       for (Item current = start; current != null; current = current.next)

       {

           if (currentIndex == index)

           {

               current.value = element;

               break;

           }

           currentIndex++;

       }

   }    

   //Define the getItem() method.

   protected Item getItem(int index)

   {

       if (index < 0 || index >= currentSize)

       {

           return null;

       }      

       int currentIndex = 0;        

       for (Item current = start; current != null; current = current.next)

       {

           if (currentIndex == index)

           {

               return current;

           }

           currentIndex++;

       }

       return null;

   }      

   //Define the add() method.

   atOverride

   public void add (int index, Object toAdd)

   {

       if (index == 0)

       {

           start = new Item (toAdd, start);

           currentSize++;

           return;

       }        

       Item previousItem = getItem(index - 1);        

       if(previousItem == null)

       {

           return;

       }          

       Item newItem = new Item(toAdd, previousItem.next);

       previousItem.next = newItem;

       currentSize++;

   }      

   //Define the method to return the size of the linked list.

   atOverride

   public int size ()

   {

       return currentSize;

   }      

   //Define the method to remove an index from the linked list.

   atOverride

   public Object remove (int index) {

       // TODO Auto-generated method stub

       return null;

   }      

}

YourSimpleLinkedList.java:

//Define the YourSimpleLinkedList class.

public class YourSimpleLinkedList extends SimpleLinkedList

{

   //Define the default constructor.s

   public YourSimpleLinkedList()

   {

       super();

   }      

   //Define the parameterized constructor.

   YourSimpleLinkedList(Object[] values)

   {

       super(values);

   }

   //Define the method to remove an index.

   at Override

   public Object remove(int index)

   {

       //Return null if the index is out of range.

       if (index < 0 || index >= currentSize)

       {

           return null;

       }        

       //Set the start Item if the first value

       // is to be removed.

       if (index == 0)

       {

           //Store the value of the node to be removed.

           Object temp = start.value;

           

           //Set the start Item.

           start = start.next;

           

           //Update the size of the linked list and return

           // the deleted value.

           currentSize--;

           return temp;

       }        

       //Initialize the required variables.

       int currentIndex = 0;

       Item current = start;

       Item prev = start;        

       //Start the loop to traverse the list.

       while (current != null)

       {

           //Check the index value.

           if (currentIndex == index)

           {

               //Store the value to be deleted.

               Object temp = current.value;                

               //Set the next pointer.

               prev.next = current.next;                  

               //Update the size of the linked list and return

               // the deleted value.

               currentSize--;

               return temp;

           }            

           //Update the values.

           currentIndex++;

           prev = current;

           current = current.next;

       }

       return null;

   }

}

Main.java:

public class Main

{

   public static void main(String[] args)

   {

       //Create a list of objects.

       Object [] values = {10, 20, 30, 40};          

       //Create an object of the YourSimpleLinkedList class.

       YourSimpleLinkedList myList = new YourSimpleLinkedList(values);        

       //Display the initial list.

       System.out.print("The initial linked list is ");

       for (int i=0;i<myList.size();i++)

       {

           System.out.print(myList.get(i) + " ");

       }        

       //Remove an index from the list.

       myList.remove(0);        

       //Display the modified list.

       System.out.println();

       System.out.print("The modified list is ");

       for (int i=0;i<myList.size();i++)

       {

           System.out.print(myList.get(i) + " ");

       }

   }  

}

5 0
4 years ago
How is me depressed or am me not? (but with a yoda voice)
Murrr4er [49]

Answer:

but the way is the way but the WAY is not the way

Explanation:

(yoda voice)

5 0
3 years ago
Read 2 more answers
Other questions:
  • 4. A person is standing 4 miles east from his house. He travels 2 miles east. a. Calculate the initial displacement. b. Calculat
    13·1 answer
  • An AM radio transmitter radiates 550 kW at a frequency of 740 kHz. How many photons per second does the emitter emit?
    11·1 answer
  • Water enters a tank of diameter Dt steadily at a mass flow rate of m&amp; . An orifice at the bottom with a diameter of Do allow
    11·1 answer
  • . H<br> Kijwhayhwbbwyhwbwbwgwwgbwbwhwh
    6·2 answers
  • What is the best free graphic design program for windows?
    7·2 answers
  • Suppose we are given three boxes, Box A contains 20 light bulbs, of which 10 are defective, Box B contains 15 light bulbs, of wh
    12·1 answer
  • There are some sections of the SDS that are not mandatory.
    11·1 answer
  • How many volts of alternating current passes through the electrolytic capacitor
    5·1 answer
  • How is the purple stem trait variation similar to the tougue-rolling trait variation
    11·1 answer
  • What caused the rate of erosion to change around 1905 and 1906?
    8·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!