![]() |
OpenSeesPyAssistant 1.1
OpenSeesPy for everyone
|
Module for the section (steel I shape profiles, RC circular/square/rectangular sections). More...
Classes | |
class | RCCircShape |
Class that stores funcions, geometric and mechanical properties of RC circular shape profile. More... | |
class | RCRectShape |
Class that stores funcions, geometric and mechanical properties of RC rectangular shape profile. More... | |
class | RCSquareShape |
Class that is the children of RCRectShape and cover the specific case of square RC sections. More... | |
class | Section |
Parent abstract class for the storage and manipulation of a section's information (mechanical and geometrical parameters, etc). More... | |
class | SteelIShape |
Class that stores funcions, geometric and mechanical properties of a steel double symmetric I-shape profile. More... | |
Functions | |
def | ComputeACircle (D) |
Function that computes the area of one circle (reinforcing bar or hoop). More... | |
def | ComputeRho (A, nr, A_tot) |
Compute the ratio of area of a reinforcement to area of a section. More... | |
Module for the section (steel I shape profiles, RC circular/square/rectangular sections).
Carmine Schipani, 2021
def Section.ComputeACircle | ( | D | ) |
Function that computes the area of one circle (reinforcing bar or hoop).
D | (float): Diameter of the circle (reinforcing bar of hoop). |
Definition at line 763 of file Section.py.
def Section.ComputeRho | ( | A, | |
nr, | |||
A_tot | |||
) |
Compute the ratio of area of a reinforcement to area of a section.
A | (float): Area of reinforcement. |
nr | (float): Number of reinforcement (allow float for computing ratio with different area; just convert the other areas to one and compute the equivalent n). |
A_tot | (float): Area of the concrete. |
Definition at line 774 of file Section.py.