answersLogoWhite

0


Best Answer

A singly reinforced beam only has steel reinforcement on the tension side (along the bottom of the cross section) where as a doubly reinforced beam has steel reinforcement on both the tension and compression sides, ie. the top and bottom of the cross section.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

Concrete beams in which the reinforcing steel bars are placed near the bottom of the beam where they are most effective in resisting tensile stresses. In such a way the concrete on top would be able to resist the compression force, however being weak in tension it would be compensated by steel bars resisting it.

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

The singly reinforcement beam has steel reinforcement on the tension side. The double reinforcement beam has steel reinforcement on both sides.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between the singly reinforced beam and doubly reinforced beam?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Convert single linked list to double linked list?

You copy a singly linked list into a doubly linked list by iterating over the singly linked list and, for each element, calling the doubly linked list insert function.


What is the difference of singly reinforced beam from doubly reinforced beam?

Singly reinforced beams have reinforcing only on the tension face. Doubly reinforced beams have reinforcing on the tension and compression face. Doubly reinforced beams can increase section capacity, but are primarily used to increase the ductility of the concrete beam. In certain codes, if the concrete section is controlled by the concrete failing in compression before the tension steel rebar yields (called a compression-controlled or brittle section), the calculated section capacity must be reduced to account for the brittle and sudden/unpredictable nature of a compression controlled (also called a brittle) failure. In order to make the section controlled by the yielding of the tension reinforcement (called a tension-controlled or ductile section), the ductility must be increased. This can be accomplished by adding steel in the compression zone, which gives strength to the compression area, thereby delaying the failure of the concrete. Enough compression steel can cause the section to switch from a brittle mode-of-failure to a ductile mode-of-failure, thereby permitting the designer to not decrease the section capacity from its calculated value. When identifying a doubly- reinforced beam, be sure that the steel in the compression area is meant to be for strength. Oftentimes, all faces of a beam will have some reinforcing for temperature/shrinkage protection and to tie the stirrups to. Steel that is only there for temp/shrinkage or to facilitate tying the rebar will usually be small and not much of it. In buildings, they will be often #3 bars @ 12" centers. In bridges, they may be #4 bars. These small bars should not be counted as compression-zone reinforcing. Look for bars in the compression zone that are of similar size to the main tension reinforcing.


Traversing in Doubly Linked List is faster then Singly Linked List?

Traversing a doubly linked list is generally faster than traversing a singly linked list, but the speedup depends on how you do the traversal:Traversing from first to last node: No difference.Random access: Doubly linked list is faster, the difference is a fixed factor. (Like twice as fast. Which makes it still very slow for random access compared to arrays.)Reverse order: Doubly linked list is just as fast traversing "backwards" as "forwards", while a singly linked list traversing in reverse order needs to traverse the entire list once for every element in the list - it is a LOT slower. (Time complexity O(n) for doubly linked list, O(n*n) for singly linked, if you are familiar with the notation.)If you are talking about the computer science "big O notation", doubly linked and singly liked lists are the same. This is because the Big O notation ignores fixed factors and only looks at how time increases with the length of the list, and in this respect the two are the same. (Except for the special case of traversing the list in reverse order. Even here a singly linked list could do it in O(n) time - same as a doubly linked list - by reversing the list (O(n)) before traversing it (O(n)) for a total time of 2*O(n), which by the rules of Big O is the same as O(n).)


What is difference between linked list and singly linked list?

Answersingly linked list has the node inserted only at one end. and the pointer corresponds to the next pointer.but in a doubly linked list, the node pointer points to the both previous and the next node.singly linked list has two nodesdoubly linked list has three nodesA doubly linked list makes sense when you need to traverse the list in both directions. You aren't able to do that with a singly linked list.


What is best and worst case of time complexity and space complexity of insert and delete operation in singly linked list doubly linked list?

When inserting or extracting at the end of a singly-linked list or at the beginning or end of a doubly-linked list, the complexity is constant time. Inserting or extracting in the middle of a list has linear complexity, with best case O(1) when the insertion or extraction point is already known in advance and a worst case of O(n) when it is not.

Related questions

Doubly reinforced concrete vs singly reinforced?

Doubly reinforced concrete and singly reinforced concrete are two types of reinforced concrete structures that differ in the way reinforcement is provided to resist tensile forces. Singly Reinforced Concrete: Singly reinforced concrete refers to a structural element (such as a beam or a slab) where reinforcement is provided only on one side to resist tensile forces. Typically, steel reinforcement in the form of bars or meshes is embedded in the concrete in the tension zone, where the concrete is subjected to tensile stresses. The reinforcement helps to carry the tensile forces, while the concrete primarily resists compressive forces. Singly reinforced concrete is commonly used in many structural applications. Doubly Reinforced Concrete: Doubly reinforced concrete refers to a structural element where reinforcement is provided on both sides to resist tensile forces in different zones. In addition to the primary reinforcement on the tension side, secondary reinforcement is also provided on the compression side to increase the structural strength and control the development of cracks. The secondary reinforcement helps balance the tensile and compressive forces, improving the overall performance and load-carrying capacity of the element. Doubly reinforced concrete is often used in situations where higher strength and resistance to cracking are required, such as in deep beams or heavily loaded structural members. The decision to use singly or doubly reinforced concrete depends on factors such as the structural requirements, loads, span lengths, and design considerations. Doubly reinforced concrete is typically employed in situations where the loads are higher or where there is a need to control deflection or cracking to a greater extent. It provides enhanced strength and ductility to the structural element. However, it also requires careful design and detailing to ensure proper placement and spacing of the reinforcement on both sides. It's important to note that the design and implementation of reinforced concrete structures should always be carried out by qualified structural engineers who consider the specific project requirements, local building codes, and safety factors.


what are the differences between singly link list and doubly link list?

singly linked list stores only the address of next node while doubly linked list stores the address of previous node and next node and hence it is called doubly linked list. In singly linked list only forward traversing is possible while in doubly linked list forward and backward traversal is possible.


What is the desing procedur of singly reinforced beam?

ffyreryurriuyutrtyutyutytrtfghfjfgf


Convert single linked list to double linked list?

You copy a singly linked list into a doubly linked list by iterating over the singly linked list and, for each element, calling the doubly linked list insert function.


What is the difference of singly reinforced beam from doubly reinforced beam?

Singly reinforced beams have reinforcing only on the tension face. Doubly reinforced beams have reinforcing on the tension and compression face. Doubly reinforced beams can increase section capacity, but are primarily used to increase the ductility of the concrete beam. In certain codes, if the concrete section is controlled by the concrete failing in compression before the tension steel rebar yields (called a compression-controlled or brittle section), the calculated section capacity must be reduced to account for the brittle and sudden/unpredictable nature of a compression controlled (also called a brittle) failure. In order to make the section controlled by the yielding of the tension reinforcement (called a tension-controlled or ductile section), the ductility must be increased. This can be accomplished by adding steel in the compression zone, which gives strength to the compression area, thereby delaying the failure of the concrete. Enough compression steel can cause the section to switch from a brittle mode-of-failure to a ductile mode-of-failure, thereby permitting the designer to not decrease the section capacity from its calculated value. When identifying a doubly- reinforced beam, be sure that the steel in the compression area is meant to be for strength. Oftentimes, all faces of a beam will have some reinforcing for temperature/shrinkage protection and to tie the stirrups to. Steel that is only there for temp/shrinkage or to facilitate tying the rebar will usually be small and not much of it. In buildings, they will be often #3 bars @ 12" centers. In bridges, they may be #4 bars. These small bars should not be counted as compression-zone reinforcing. Look for bars in the compression zone that are of similar size to the main tension reinforcing.


What is the minimum compression reinforcement to be provided in singly reinforced beam?

3000 psi


Traversing in Doubly Linked List is faster then Singly Linked List?

Traversing a doubly linked list is generally faster than traversing a singly linked list, but the speedup depends on how you do the traversal:Traversing from first to last node: No difference.Random access: Doubly linked list is faster, the difference is a fixed factor. (Like twice as fast. Which makes it still very slow for random access compared to arrays.)Reverse order: Doubly linked list is just as fast traversing "backwards" as "forwards", while a singly linked list traversing in reverse order needs to traverse the entire list once for every element in the list - it is a LOT slower. (Time complexity O(n) for doubly linked list, O(n*n) for singly linked, if you are familiar with the notation.)If you are talking about the computer science "big O notation", doubly linked and singly liked lists are the same. This is because the Big O notation ignores fixed factors and only looks at how time increases with the length of the list, and in this respect the two are the same. (Except for the special case of traversing the list in reverse order. Even here a singly linked list could do it in O(n) time - same as a doubly linked list - by reversing the list (O(n)) before traversing it (O(n)) for a total time of 2*O(n), which by the rules of Big O is the same as O(n).)


What is the formula for ammonium sulfide as a neutral compound?

The formula sought is (NH4)2S: Ammonium is a singly charged cation and sulfide is a doubly charged anion.


Is a DC motor single excited or double excited?

It is doubly excited if it is sparately excited dc motor, singly excited if it is self excited machine


What does the hund's rule states?

Hund's Rule states that electrons will occupy orbitals of a subshell singly before any are doubly occupied. This is to maximize the total spin of the electrons in the subshell.


Singly reinforced beam definition?

singly reinforcement beam have steel provided only one side tension an another side compression. tension takes steel load or tensile load and compression takes concrete or compressive load.


What has the author Eleanor Gillian Judd written?

Eleanor Gillian Judd has written: 'Production of singly and doubly strange baryons and anti-baryons in heavy ion collisions at ultra-relativisticenergies'