Answer:
When the imposter is sus : O
Explanation:
Answer:
2.0%
Explanation:
Percentage of aggregate = 94%
Specific gravity = 2.65
Specific gravity of asphalt = 1.9
Density of mix = 147pcf = 147lb/ft³
Total weight of mix: (volume = 1ft³)
= (147lb/ft³)(1ft³)
= 147lb
Percentage weight of asphalt in<u> mix:</u>
100% - 94%
= 6%
Weight of asphalt binders
= 6% x 147lb
= 8.82lb
Weight of aggregate in mix:
= 94% x 147
= 138.18lb
Specific weight of asphalt binder:
(Gab)(Yw)
Yw = specific Weight of water
= 62.4lb
Gab = specific gravity of asphalt binder
= 1.0
(62.4lb)(1.0)
= 62.4 lb/ft³
Volume of asphalt in binder:
8.82/62.4
= 0.14ft³
Specific weight of binder in mix:
2.65 x 62.4lb/ft³
= 165.36 lb/ft³
Volume of aggregate:
= 138.18/165.36
= 0.84ft³
Volume of void in the mix:
1ft³ - 0.84ft³ - 0.14ft³
= 0.02ft³
<u>The percentage of void in total mix:</u>
VTM = (0.02ft³/1ft³)100
= 2.0%
Answer:
The inductance of the inductor is 0.051H
Explanation:
From Ohm's law;
V = IR .................. 1
The inductor has its internal resistance referred to as the inductive reactance, X
, which is the resistance to the flow of current through the inductor.
From equation 1;
V = IX
X
=
................ 2
Given that; V = 240V, f = 50Hz,
=
, I = 15A, so that;
From equation 2,
X
= 
= 16Ω
To determine the inductance of the inductor,
X
= 2
fL
L = 
= 
= 0.05091
The inductance of the inductor is 0.051H.
Answer:A
Explanation:
Damp roof is generally applied at basement level which restrict the movement of moisture through walls and floors. Therefore it could be inside or the outside basement walls.
Explanation:
def checklist(a_list, a_value):// def //used to name a function, the //arguments being passed into the //functions are a_list and a_value
if a_value in list://if statement to
//check if it's in the list or not
print("")//print statement to do
//nothing
else://else statement for if the
//a_value is in a_list
a_list.append(a_value)//this adds
//the value to the list