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
kiruha [24]
4 years ago
13

A multipurpose transformer has a secondary coil with several points at which a voltage can be extracted, giving outputs of 5.60,

12.0, and 480 V. (a) The input voltage is 140 V to a primary coil of 220 turns. What are the numbers of turns in the parts of the secondary used to produce the output voltages
Engineering
1 answer:
Rudik [331]4 years ago
4 0

Answer:

for 5.6V 9 turns, for 12.0V 19 turns, for 480V 755 turns

Explanation:

Vp/Vs= Np/Ns

Vp: Primary voltage

Vs: Secondary Voltage

Np: number of turns on primary side

Ns: number of turns on secondary side

for output 5.6V

140/5.6= 220/Ns

Ns= 8.8 or 9 Turns

for output 12.0V

140/12= 220/Ns

Ns= 18.9 or 19 turns

for output 480V

140/480= 220/Ns

Ns= 754.3 or 755 turns

You might be interested in
A thick aluminum block initially at 26.5°C is subjected to constant heat flux of 4000 W/m2 by an electric resistance heater whos
Yanka [14]

Given Information:

Initial temperature of aluminum block = 26.5°C

Heat flux = 4000 w/m²

Time = 2112 seconds

Time = 30 minutes = 30*60 = 1800 seconds

Required Information:

Rise in surface temperature = ?

Answer:

Rise in surface temperature = 8.6 °C after 2112 seconds

Rise in surface temperature = 8 °C after 30 minutes

Explanation:

The surface temperature of the aluminum block is given by

T_{surface} = T_{initial} + \frac{q}{k} \sqrt{\frac{4\alpha t}{\pi} }

Where q is the heat flux supplied to aluminum block, k is the conductivity of pure aluminum and α is the diffusivity of pure aluminum.

After t = 2112 sec:

T_{surface} = 26.5 + \frac{4000}{237} \sqrt{\frac{4(9.71\times 10^{-5}) (2112)}{\pi} }\\\\T_{surface} = 26.5 + \frac{4000}{237} (0.51098)\\\\T_{surface} = 26.5 + 8.6\\\\T_{surface} = 35.1\\\\

The rise in the surface temperature is

Rise = 35.1 - 26.5 = 8.6 °C

Therefore, the surface temperature of the block will rise by 8.6 °C after 2112 seconds.

After t = 30 mins:

T_{surface} = 26.5 + \frac{4000}{237} \sqrt{\frac{4(9.71\times 10^{-5}) (1800)}{\pi} }\\\\T_{surface} = 26.5 + \frac{4000}{237} (0.4717)\\\\T_{surface} = 26.5 + 7.96\\\\T_{surface} = 34.5\\\\

The rise in the surface temperature is

Rise = 34.5 - 26.5 = 8 °C

Therefore, the surface temperature of the block will rise by 8 °C after 30 minutes.

5 0
3 years ago
Explain any five applications of computer modeling in beams.
coldgirl [10]

Answer:

Explain any five applications of computer modeling in beams.

Explanation:

7 0
3 years ago
Which distributions would you recommend be tested using Benford’s law? Select all choices that apply. (You may select more than
Leni [432]

Answer:

Please see the attached picture for the complete answer.

Explanation:

6 0
4 years ago
g For this project you are required to perform Matrix operations (Addition, Subtraction and Multiplication). For each of the ope
Kruka [31]

Answer:

C++ code is explained below

Explanation:

#include<iostream>

using namespace std;

//Function Declarations

void add();

void sub();

void mul();

//Main Code Displays Menu And Take User Input

int main()

{

  int choice;

  cout << "\nMenu";

  cout << "\nChoice 1:addition";

  cout << "\nChoice 2:subtraction";

  cout << "\nChoice 3:multiplication";

  cout << "\nChoice 0:exit";

 

  cout << "\n\nEnter your choice: ";

 

  cin >> choice;

 

  cout << "\n";

 

  switch(choice)

  {

      case 1: add();

              break;

             

      case 2: sub();

              break;

             

      case 3: mul();

              break;

     

      case 0: cout << "Exited";

              exit(1);

     

      default: cout << "Invalid";      

  }

  main();  

}

//Addition Of Matrix

void add()

{

  int rows1,cols1,i,j,rows2,cols2;

 

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  //Taking First Matrix

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  //Printing 1st Matrix

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

  //Taking Second Matrix

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  //Displaying second Matrix

  cout << "\n";

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

  //Displaying Sum of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      cout << "\n";

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]+m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void sub()

{

  int rows1,cols1,i,j,k,rows2,cols2;

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

  cout << "\n";

  //Displaying Subtraction of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]-m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void mul()

{

  int rows1,cols1,i,j,k,rows2,cols2,mul[10][10];

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  cout << "\n";

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  cout << "\n";

  //Displaying Matrix 2

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

     

  if(cols1!=rows2)

      cout << "operation is not supported";

  else

  {

      //Initializing results as 0

      for(i = 0; i < rows1; ++i)

  for(j = 0; j < cols2; ++j)

  mul[i][j]=0;

// Multiplying matrix m1 and m2 and storing in array mul.

  for(i = 0; i < rows1; i++)

  for(j = 0; j < cols2; j++)

  for(k = 0; k < cols1; k++)

  mul[i][j] += m1[i][k] * m2[k][j];

// Displaying the result.

  cout << "\n";

  for(i = 0; i < rows1; ++i)

      for(j = 0; j < cols2; ++j)

      {

      cout << " " << mul[i][j];

      if(j == cols2-1)

      cout << endl;

      }

      }  

  main();

 }

5 0
3 years ago
A ten-station transfer machine has an ideal cycle time of 30 sec. The frequency of line stops is 0.075 stops per cycle. When a l
goldfiish [28.3K]

Answer:

62.5%

Explanation:

We are given that

A ten-station transfer machine has ideal cycle time=30 sec=\frac{30}{60}=0.5 min

Frequency of line=0.075 stops per cycle

Average time=4 min

We have to determine the line efficiency

T_p=0.5+0.075(4)=0.5+0.3=0.8

Line efficiency=\frac{0.5}{0.8}\times 100=62.5%

Hence, the line efficiency=62.5%

8 0
4 years ago
Other questions:
  • At a lake location, the soil surface is 6 m under the water surface. Samples from the soil deposit underlying the lake indicate
    15·1 answer
  • Air flows steadily and isentropically from standard atmospheric conditions to a receiver pipe through a converging duct. The cro
    14·1 answer
  • Select the correct answer.
    8·1 answer
  • The acceleration of a particle is given by a = 2t − 10, where a is in meters per second squared and t is in seconds. Determine t
    11·1 answer
  • The lower yield point for an iron that has an average grain diameter of 1 × 10–2 mm is 230 MPa. At a grain diameter of 6 × 10–3
    9·1 answer
  • A wooden pallet carrying 540kg rests on a wooden floor. (a) a forklift driver decides to push it without lifting it.what force m
    10·1 answer
  • The MAP sensor's vacuum hose is loose and cracking. Technician A says this sensor measures air mass to establish the fuel inject
    14·1 answer
  • 12 inches is equivalent to_ foot.<br><br>A. 1<br>B. 12<br>C. 24<br>D. 36<br>​
    14·1 answer
  • In order to write a good problem statement, you need to identify the following components of the problem.
    8·1 answer
  • Back Savers is a company that produces backpacks primarily for students. They are considering offering some combination of two d
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!