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
mariarad [96]
3 years ago
10

For a rod of annealed AISI 1018 steel with a cross sectional area of 0.65 in^2?; what is the maximum tensile load Pmax that shou

ld be placed on it given a design factor of 3 to avoid yielding?
Engineering
1 answer:
lawyer [7]3 years ago
7 0

Answer:

maximum tensile load Pmax is 11.91 ksi

Explanation:

given data

area = 0.65 in²

design factor of safety = 3

to find out

what is the maximum tensile load Pmax

solution

we know here area is 0.65 in² and FOS = 3

so by steel table for rod of annealed AISI 1018 steel table we know σy = 55 ksi

so

we use here design factor formula that is

\frac{ \sigma y}{FOS}  = \frac{Pmax}{area}  .............1

put here all these value we get Pmax in equation 1

\frac{55}{3}  = \frac{Pmax}{0.65}

Pmax = 11.91 ksi

so maximum tensile load Pmax is 11.91 ksi

You might be interested in
What is the gear ratio of the given train
Olin [163]

Answer:

1/4

Explanation:

.......................

7 0
2 years ago
How is the energy harnessed and converted into useful energy?
garri49 [273]

Answer:

1. How energy is harnessed?  

Another way to tap solar energy is by collecting the sun's heat. Solar thermal power plants use heat from the sun to create steam, which can then be used to make electricity. On a smaller scale, solar panels that harness thermal energy can be used for heating water in homes, other buildings, and swimming pools.

2. How is solar energy converted into useful energy?

Solar panels convert the sun's light into usable solar energy using N-type and P-type semiconductor material. When sunlight is absorbed by these materials, the solar energy knocks electrons loose from their atoms, allowing the electrons to flow through the material to produce electricity.

Explanation:

hope it helps, please mark as brainliest

6 0
3 years ago
A single-phase transformer circuit feeds a motor and lighting load of 50 kilowatts. At a power factor of .8, the KVA rating of t
AveGali [126]

The KVA rating of the step down transformer at the given power factor would be 62.5 kVA.

<h3>What is power factor of a transformer?</h3>

Power factor (PF) is the ratio of working power, measured in kilowatts (kW), to apparent power, measured in kilovolt amperes (kVA).

PF = working power / apparent power

PF =  kW/kVA

kVA = kW/PF

kVA = 50 kW/0.8

kVA = 62.5 kVA

Thus, the KVA rating of the step down transformer at the given power factor would be 62.5 kVA.

Learn more about power factor here: brainly.com/question/7956945

#SPJ1

3 0
2 years ago
THEME: What is the impact of technology on architecture?
abruzzese [7]

Answer:

With increased technological knowledge and consequent decreased factors of ignorance, the structures have less inert masses and therefore less need for such decoration. This is the reason why the modern buildings are plainer and depend upon precision of outline and perfection of finish for their architectural effect.

8 0
3 years ago
Same rule: If both players spend the same number of coins, player 2 gains 1 coin. Off-by-one rule: If the players do not spend t
Galina-37 [17]

Answer:

Check the explanation

Explanation:

1 -

public int getPlayer2Move(int round)

{

  int result = 0;

 

  //If round is divided by 3

  if(round%3 == 0) {

      result= 3;

  }

  //if round is not divided by 3 and is divided by 2

  else if(round%3 != 0 && round%2 == 0) {

      result = 2;

  }

  //if round is not divided by 3 or 2

  else {

      result = 1;

  }

 

  return result;

}

2-

public void playGame()

{

 

  //Initializing player 1 coins

  int player1Coins = startingCoins;

 

  //Initializing player 2 coins

  int player2Coins = startingCoins;

 

 

  for ( int round = 1 ; round <= maxRounds ; round++) {

     

      //if the player 1 or player 2 coins are less than 3

      if(player1Coins < 3 || player2Coins < 3) {

          break;

      }

     

      //The number of coins player 1 spends

      int player1Spends = getPlayer1Move();

     

      //The number of coins player 2 spends

      int player2Spends = getPlayer2Move(round);

     

      //Remaining coins of player 1

      player1Coins -= player1Spends;

     

      //Remaining coins of player 2

      player2Coins -= player2Spends;

     

      //If player 2 spends the same number of coins as player 2 spends

      if ( player1Spends == player2Spends) {

          player2Coins += 1;

          continue;

      }

     

      //positive difference between the number of coins spent by the two players

      int difference = Math.abs(player1Spends - player2Spends) ;

     

      //if difference is 1

      if( difference == 1) {

          player2Coins += 1;

          continue;

      }

     

      //If difference is 2

      if(difference == 2) {

          player1Coins += 2;

          continue;

      }

     

     

  }

 

  // At the end of the game

  //If player 1 coins is equal to player two coins

  if(player1Coins == player2Coins) {

      System.out.println("tie game");

  }

  //If player 1 coins are greater than player 2 coins

  else if(player1Coins > player2Coins) {

      System.out.println("player 1 wins");

  }

  //If player 2 coins is grater than player 2 coins

  else if(player1Coins < player2Coins) {

      System.out.println("player 2 wins");

  }

}

3 0
3 years ago
Other questions:
  • 4.71 A full-wave rectifier circuit with a 1-kΩ operates from a 120-V (rms) 60-Hz household supply through a 6-to-1 transformer h
    10·1 answer
  • What is temperature coefficient of resistance
    12·1 answer
  • Assume that price is an integer variable whose value is the price (in US currency) in cents of an item. Assuming the item is pai
    11·1 answer
  • A stone-filled pit used for waste disposal is commonly referred to as a
    15·1 answer
  • What does carbon addition to iron do, what does it produce, how does it change properties, what are its reflections? Describe in
    12·1 answer
  • java Write a program that simulates tossing a coin. Prompt the user for how many times to toss the coin. Code a method with no p
    10·2 answers
  • When will the entropy value of the universe attained its maximum value?
    13·1 answer
  • As an employee, who is supposed to provide training on the chemicals you are handling or come in contact with at work?
    5·2 answers
  • Match the use of the magnetic field to its respective description.​
    6·1 answer
  • What current must flow if 0.24 coulombs is to be transferred in 15ms?
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!