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
Luda [366]
3 years ago
10

For high temperature deformation, the bigger the gran sine, the higher the creep rate. a)-True b)- False

Engineering
2 answers:
Gnom [1K]3 years ago
8 0

Answer:

The given statement is False.

Explanation:

This is because at high temperature the creep rate depends on grain boundary area, increasing with an increase in grain boundary area thus decreasing the grain size. Thus at higher temperatures, grain size has opposite effect , the bigger the grain size the slower the slower is the creep rate, the larger the grain boundary area.

sergiy2304 [10]3 years ago
4 0

Answer:

a

Explanation:

a

You might be interested in
An industrial load with an operating voltage of 480/0° V is connected to the power system. The load absorbs 120 kW with a laggin
Leni [432]

Answer:

Q=41.33 KVAR\ \\at\\\ 480 Vrms

Explanation:

From the question we are told that:

Voltage V=480/0 \textdegree V

Power P=120kW

Initial Power factor p.f_1=0.77 lagging

Final Power factor p.f_2=0.9 lagging

Generally the equation for Reactive Power is mathematically given by

Q=P(tan \theta_2-tan \theta_1)

Since

p.f_1=0.77

cos \theta_1 =0.77

\theta_1=cos^{-1}0.77

\theta_1=39.65 \textdegree

And

p.f_2=0.9

cos \theta_2 =0.9

\theta_2=cos^{-1}0.9

\theta_2=25.84 \textdegree

Therefore

Q=P(tan 25.84 \textdegree-tan 39.65 \textdegree)

Q=120*10^3(tan 25.84 \textdegree-tan 39.65 \textdegree)

Q=-41.33VAR

Therefore

The size of the capacitor in vars that is necessary to raise the power factor to 0.9 lagging is

Q=41.33 KVAR\ \\at\\\ 480 Vrms

6 0
3 years ago
A 900 kg car is accelerated from a speed of 10 m/s to 30 m/s. An estimated heat loss of 20 BTU's occurs during the acceleration.
Strike441 [17]

Answer:

Work = 651,1011 kJ

Explanation:

Let´s take the car as a system in order to apply the first law of thermodynamics as follows:

E_{in}- E_{out}=E_{system,final}- E_{system,initial}

Where

E_{in}- E_{out}=(Q_{in}-Q_{out})_{heat}+(W_{in}-W_{out})_{work}+(Em_{in}-Em_{out})_{mass}

And considering that there is no mass transfer and that the only energy flows that interact with the system are the heat losses and the work needed to move the car we have:

E_{in}- E_{out}=-Q_{out}+W_{in}

Regarding the energy system we have the following:

E_{system,final}- E_{system,initial}=(U_{f}-U_{i})_{internal}+(1/2m(V^2_{f}-V^2_{i}))_{kinetic}+(mg(h_{f}-h_{i}))_{potential}

By doing the calculations we have:

E_{system,final}- E_{system,initial}=[0,1*900]_{internal}+[0,5*900(30^2-10^2)/1000)_{kinetic}+(900*10*(20-0)/1000)_{potential}\\E_{system,final}- E_{system,initial}=90+360+180=630kJ

Consider that in the previous calculation, the kinetic and potential energy terms were divided by 1.000 to change the units from J to kJ.

Finally, the work needed to move the car under the required conditions is calculated as follows:

W_{in}=Q_{out}+E_{system,final}- E_{system,initial}\\W_{in}=21,1011+630=651,1011kJ

Consider that in the previous calculation, the heat loss was changed previously from BTU to kJ.

4 0
3 years ago
Name two parts that are sometimes made of hard metal and pressed into the head​
gayaneshka [121]

Answer:copper , stainless steal

Wrought iron

Explanation:

6 0
3 years ago
Q.13 In order to produce maximum starting torque in a split-phase motor, how many degrees out of phase should the start- and run
Phantasy [73]

Answer:

D. 90 degrees.

Explanation:

Torque is a rotational force which moves an object in other direction. There should be 90 degrees out of phase to start, run winding currents with each other. Torque is produced by the rotational motion of an object. The angle of the object must be 90 degrees set in order to create torque.

3 0
3 years ago
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
Other questions:
  • Explain the conductivity results observed for ionic compounds in the solid state and in aqueous solution.i.Solid ionic compounds
    12·1 answer
  • A medium-sized jet has a 3.8-m-diameter fuselage and a loaded mass of 85,000 kg. The drag on an airplane is primarily due to the
    14·1 answer
  • What’s tree about freedom of expression
    11·1 answer
  • The following vessel has an example of which type of engine attached to it?
    12·1 answer
  • When could you use the engineering design process in your own life?
    9·1 answer
  • Air enters a control volume operating at steady state at 1.2 bar, 300K, and leaves at 12 bar, 440K, witha volumetric flow rate o
    11·1 answer
  • What is government role in the modern American version of capitalism
    11·1 answer
  • Which of these drum brake systems uses servo action in both directions?
    9·1 answer
  • Can push or pull an object.<br> O Tension<br> O Compression<br> O Force<br> O Axial
    8·2 answers
  • _________ is an example of an electrical device.<br> A) PlugB) CordC) CableD) All of the above
    8·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!