concreteproperties.stress_strain_profile.EurocodeParabolicUltimate#
- class EurocodeParabolicUltimate(compressive_strength: float, compressive_strain: float, ultimate_strain: float, n: float, n_points: Optional[int] = 10)[source]#
Bases:
ConcreteUltimateProfile
Class for an ultimate parabolic stress-strain relationship to EC2.
- Parameters
compressive_strength (float) – Concrete compressive strength
compressive_strain (float) – Strain at which the concrete stress equals the compressive strength
ultimate_strain (float) – Concrete strain at failure
n (float) – Parabolic curve exponent
n_points (Optional[int]) – Number of points to discretise the parabolic segment of the curve
Methods
Returns the most positive stress.
Returns the elastic modulus of the stress-strain profile.
Returns a stress given a strain.
Returns the most negative stress.
Returns the ultimate strain, or largest compressive strain.
Returns an ordered list of unique strains.
Plots the stress-strain profile.
Prints the stress-strain profile properties to the terminal.
Attributes
n_points
strains
stresses
compressive_strength
compressive_strain
ultimate_strain
n
- get_compressive_strength() float #
Returns the most positive stress.
- Returns
Compressive strength
- Return type
float
- get_elastic_modulus() float #
Returns the elastic modulus of the stress-strain profile.
- Returns
Elastic modulus
- Return type
float
- get_stress(strain: float) float #
Returns a stress given a strain.
- Parameters
strain (float) – Strain at which to return a stress.
- Returns
Stress
- Return type
float
- get_tensile_strength() float #
Returns the most negative stress.
- Returns
Tensile strength
- Return type
float
- get_ultimate_strain() float #
Returns the ultimate strain, or largest compressive strain.
- Returns
Ultimate strain
- Return type
float
- get_unique_strains() List[float] #
Returns an ordered list of unique strains.
- Returns
Ordered list of unique strains
- plot_stress_strain(title: Optional[str] = 'Stress-Strain Profile', **kwargs) matplotlib.axes.Axes #
Plots the stress-strain profile.
- Parameters
title (Optional[str]) – Plot title
kwargs – Passed to
plotting_context()
- Returns
Matplotlib axes object
- Return type
- print_properties(fmt: Optional[str] = '8.6e')#
Prints the stress-strain profile properties to the terminal.
- Parameters
fmt (Optional[str]) – Number format