Answer
given,
6 lanes divided highway 3 lanes in each direction
rolling terrain
lane width = 10'
shoulder on right = 5'
PHF = 0.9
shoulder on the left direction = 3'
peak hour volume = 3500 veh/hr
large truck = 7 %
tractor trailer = 3 %
speed = 55 mi/h
LOS is determined based on V p
10' lane weight ; f_{Lw}=6.6 mi/h
5' on right ; f_{Lc} = 0.4 mi/hr
3' on left ; no adjustment
3 lanes in each direction f n = 3 mi/h



= 0.877

= 1,555 veh/hr/lane

= (55 + 5) - 6.6 - 0.4 -3 -0
= 50 mi/h


level of service is D using speed flow curves and LOS for basic free moving of vehicle
Answer:
percentage change in volume is 2.60%
water level rise is 4.138 mm
Explanation:
given data
volume of water V = 500 L
temperature T1 = 20°C
temperature T2 = 80°C
vat diameter = 2 m
to find out
percentage change in volume and how much water level rise
solution
we will apply here bulk modulus equation that is ratio of change in pressure to rate of change of volume to change of pressure
and we know that is also in term of change in density also
so
E =
................1
And
............2
here ρ is density
and we know ρ for 20°C = 998 kg/m³
and ρ for 80°C = 972 kg/m³
so from equation 2 put all value


dV = 0.0130 m³
so now % change in volume will be
dV % =
× 100
dV % =
× 100
dV % = 2.60 %
so percentage change in volume is 2.60%
and
initial volume v1 =
................3
final volume v2 =
................4
now from equation 3 and 4 , subtract v1 by v2
v2 - v1 =
dV =
put here all value
0.0130 =
dl = 0.004138 m
so water level rise is 4.138 mm
Answer:
a. 2x/3
b. 8
Explanation:
fundamental period can be defined to mean that at after every period of 2π radians or 360° the value of graph is repeated. For such functions the fundamental period is the period after which they repeat themselves.
It van also be looked as The fundamental period of cos(θ) is 2π. That is (for example) cos(0) to cos(2π) represents one full period.
Please see attachment for the step by step solution.
Answer:
Explanation:
class Pet:
def __init__(self):
self.name = ''
self.age = 0
def print_info(self):
print('Pet Information:')
print(' Name:', self.name)
print(' Age:', self.age)
class Dog(Pet):
def __init__(self):
Pet.__init__(self)
self.breed = ''
def main():
my_pet = Pet()
my_dog = Dog()
pet_name = input()
pet_age = int(input())
dog_name = input()
dog_age = int(input())
dog_breed = input()
my_pet.name = pet_name
my_pet.age = pet_age
my_pet.print_info()
my_dog.name = dog_name
my_dog.age = dog_age
my_dog.breed = dog_breed
my_dog.print_info()
print(' Breed:', my_dog.breed)
main()
Da, sigur. cu ce ai nevoie de ajutor?