A structure that possesses ductility, has the ability to accommodate large deformations, adjustable supports for correction of differential settlements.
What is liquefaction?In reaction to an applied stress, such as the shaking during an earthquake or other fast change in stress state, a cohesionless saturated or partially saturated soil dramatically loses strength and stiffness, causing material that is typically a solid to behave like a liquid. When there is considerable ground shaking, loosely packed, water-logged sediments at or near the ground surface begin to liquefy. When there is considerable ground shaking, loosely packed, water-logged sediments at or near the ground surface begin to liquefy. During earthquakes, liquefaction that takes place beneath buildings and other structures can result in significant damage. Liquification is the physical conversion of a gas into a liquid state (condensation).To learn more about liquefaction refer to:
https://brainly.com/question/13044551
#SPJ4
Type the correct answer in the box. Spell all words correctly.
In a manufacturing system, a sensor determines whether a furnace is at an appropriate temperature. The sensor’s information governs the flow of fuel to the furnace. Identify the elements of this manufacturing system.
This particular manufacturing system has an additional fourth element known as ___.
The identification of the elements of this manufacturing system may include the presence of a sensor, respective temperature, and the utilization of fuel.
What is a Manufacturing system?A manufacturing system must have three basic components. They are as follows:
Input: Raw materials or parts that will be used in the manufacturing process.Process: The methods and techniques used to transform the inputs into the desired output.Output: The products or services that are created as a result of manufacturing.This particular manufacturing system has an additional fourth element known as a furnace. This is one of the most important elements of the respective manufacturing system because it involves the position where this action is being done.
Therefore, the identification of the elements of this manufacturing system may include the presence of a sensor, respective temperature, and the utilization of fuel.
To learn more about the manufacturing system, refer to the link:
https://brainly.com/question/20517100
#SPJ1
Write a Python code to accept integer numbers in a list. Find and display the
sum and product of the numbers available at even and odd indices of the list,
respectively.
#initializing list
list1 = []
# accepting values from user
n = int(input("Enter number of elements in list: "))
# iterating till the range
for i in range(0, n):
ele = int(input())
list1.append(ele)
# sum and product at even and odd indexes
even_sum = 0
odd_sum = 0
even_prod = 1
odd_prod = 1
# iterating each element in list
for j in range(len(list1)):
if j % 2 == 0:
even_sum += list1[j]
even_prod *= list1[j]
else:
odd_sum += list1[j]
odd_prod *= list1[j]
# Displaying sum and product of even and odd indices
print("Sum of elements at even indices:", even_sum)
print("Product of elements at even indices:", even_prod)
print("Sum of elements at odd indices:", odd_sum)
print("Product of elements at odd indices:", odd_prod)
How will Hyperloop trains be different from traditional trains?
Answer:
Its passengers would sit comfortably in a pod while being propelled forward through a de-pressurized tube at 700 to 800 miles per hour (mph). The Hyperloop is afforded its super-fast travel speeds because of the tube, which allows the pod to travel through a virtually resistance-free track.
Explanation:
How do engineers deal with liquefaction when building a very tall building?
The way that engineers deal with liquefaction when building a very tall building are through:
Replacement or physical modificationDensificationPore water pressure reliefFoundation reinforcementWhat is liquefaction How do you overcome it?Liquefaction occurs when waterlogged, loosely packed sediments at or near the ground surface start to lose strength in reaction to violent ground shaking. Major damage during earthquakes can result from liquefaction that occurs beneath buildings and other structures.
Therefore, Water and loose sediments in your soil interact to cause the liquefaction process. In the end, this results in soil that is weaker than average and damages property. Avoiding construction in places that are liable to liquefaction is the best defense against it. Increase the foundation's strength and enhance the soil quality to reduce liquefaction.
Learn more about liquefaction from
https://brainly.com/question/4067457
#SPJ1