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
9966 [12]
2 years ago
9

A bridge to be fabricated of steel girders is designed to be 500 m long and 12 m wide at ambient temperature (assumed 20°C). Exp

ansion joints will be provided to compensate for the change in length in the girders as the temperature varies. Each expansion joint can compensate for a maximum of 20 mm of change in length. From historical records it is estimated that the minimum and maximum temperatures in the region will be -35°C and 40°C, respectively. Determine (a) the minimum number of expansion joints required and (b) the length that each bridge section should be fabricated.
Engineering
1 answer:
Volgvan2 years ago
8 0

Answer:

a) 22.5number

b) 22.22 m length

Explanation:

Given data:

Bridge length = 500 m

width of bridge = 12 m

Maximum temperature = 40 degree C

minimum temperature  = - 35 degree C

Maximum expansion can be determined as

\Delta L = L \alpha (T_{max} - T_{min})

where , \alpha is expansion coefficient = 12\times 10^{-6} degree C

SO, \Delta L = 500\times 12\times 10^{-6}\times ( 40 - (-35))

\Delta L = 0.45 m = 450 mm

number of minimum expansion joints is calculated as

n = \frac{450}{20} = 22.5

b) length of each bridge

Length = \frac{500}{22.5} = 22.22 m

You might be interested in
Argue the importance to society of incorporating green building into an engineer’s designs, with at least two examples.
klio [65]
It is important because now a days we all need help from engineers
3 0
2 years ago
Am I alive I really need to know?
Nesterboy [21]
Hell no,cause i’m not
5 0
3 years ago
Water enters a tank from two pipes, one with a flow rate of 0.3 kg/s and the other with a flow rate of 0.1 kg / s. The tank has
stiks02 [169]

Answer:

total amount of water after 2 min will be 84.4 kg/s

Explanation:

Given data:

one tank inflow = 0.1 kg/s

2nd tank inflow = 0.3 kg/s

3rd tank outflow = 0.03 kg/s

Total net inflow in tank is = 0.3 +0.1 =0.4 kg/s

From third point, outflow is 0.03 kg/s

Therefore, resultant in- flow = 0.4 - 0.03

Resultant inflow is  = 0.37 kg/s

Tank has initially 40 kg water

In 2 min ( 2*60 sec), total inflow in tank is 0.37*60*2 = 44.4 kg

So, total amount of water after 2 min will be = 40+44.4 = 84.4 kg

8 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
An industrial plant consists of several 60 Hz single-phase motors with low power factor. The plant absorbs 600 kW with a power f
Gelneren [198K]

Answer:

(a) Q=332 kvar and C=5.66 uF

(b) pf=0.90 lagging

Explanation:

Given Data:

P=600kW

V=12.47kV

f=60Hz

pf_{old} =0.75

pf_{new} =0.95

(a) Find the required kVAR rating of a capacitor

\alpha _{old}=cos^{-1}(0.75) =41.41°

\alpha _{new}=cos^{-1}(0.95) =18.19°

The required compensation reactive power can be found by

Q=P(tan(\alpha_{old}) - tan(\alpha_{new}))

Q=600(tan(41.41) - tan(18.19))

Q=332 kvar

The corresponding capacitor value can be found by

C=Q/2\pi fV^{2}

C=332/2*\pi *60*12.47^{2}

C=5.66 uF

(b) calculate the resultant supply power factor

First convert the hp into kW

P_{mech} =250*746=186.5 kW

Find the electrical power (real power) of the motor

P_{elec} =P_{mech}/n

where n is the efficiency of the motor

P_{elec} =186.5/0.80=233.125 kW

The current in the motor is

I_{m} =(P/\*V*pf)

The pf of motor is 0.85 Leading

Note that represents the angle in complex notation (polar form)

I_{m} =(233.125/12.47*0.85)

I_{m}=18.694+11.586j A

Now find the Load current

pf of load is 0.75 lagging (notice the minus sign)

I_{load} =(600/12.47*0.75)

I_{load} =48.115-42.433j A

Now the supply current is the current flowing in the load plus the current flowing in the motor

I_{supply} =I_{m} + I_{load}

I_{supply}= (18.694+11.586)+(48.115-42.433)

I_{supply} =66.809-30.847j A

or in polar form

I_{supply} =73.58°

Which means that the supply current lags the supply voltage by 24.78

therefore, the supply power factor is

pf=cos(24.78)=0.90 lagging

Which makes sense because original power factor was 0.75 then we installed synchronous motor which resulted in improved power factor of 0.90

8 0
3 years ago
Other questions:
  • Only put coolant into your radiator when the engine is _____.
    11·1 answer
  • What the Best describes the purpose of the occupational safety and health administración OSHA
    12·1 answer
  • Energy that causes a transfer of heat between marterials
    13·1 answer
  • During a long run a very well-trained dog can use up to 1000 ‘cal’/hour (Note: Food calories differ by a factor of one thousand
    14·1 answer
  • Describe three parts of a fluid power system and the roles played by each to make the device work.
    8·1 answer
  • Describe a pro and con of having a passenger in the car
    11·1 answer
  • Select the correct text in the passage.
    6·2 answers
  • PLZZZZZ HELP
    7·2 answers
  • Which of the following best describes the basic purpose of the internet?
    7·2 answers
  • What happens to the duty cycle for a GMAW Gun when 75Ar/25COzgas
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!