ConcreteLinearNoTension#

class concreteproperties.stress_strain_profile.ConcreteLinearNoTension(elastic_modulus: float, ultimate_strain: float = 1, compressive_strength: float | None = None)[source]#

Bases: ConcreteServiceProfile

Class for a linear stress-strain profile with no tensile strength.

Parameters:
  • elastic_modulus (float) – Elastic modulus of the stress-strain profile

  • ultimate_strain (float) – Concrete strain at failure

  • compressive_strength (float | None) – Compressive strength of the concrete

Methods

get_compressive_strength

Returns the most positive stress.

get_elastic_modulus

Returns the elastic modulus of the stress-strain profile.

get_stress

Returns a stress given a strain.

get_tensile_strength

Returns the most negative stress.

get_ultimate_compressive_strain

Returns the largest strain.

get_ultimate_tensile_strain

Returns the largest tensile strain.

get_unique_strains

Returns an ordered list of unique strains.

get_yield_strength

Returns the yield strength of the stress-strain profile.

plot_stress_strain

Plots the stress-strain profile.

print_properties

Prints the stress-strain profile properties to the terminal.

Attributes

compressive_strength

ultimate_strain

strains

stresses

elastic_modulus

get_compressive_strength() float | None#

Returns the most positive stress.

Returns:

Compressive strength

Return type:

float | None

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 | None#

Returns the most negative stress.

Returns:

Tensile strength

Return type:

float | None

get_ultimate_compressive_strain() float#

Returns the largest strain.

Returns:

Ultimate strain

Return type:

float

get_ultimate_tensile_strain() float#

Returns the largest tensile 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

Return type:

list[float]

get_yield_strength() float#

Returns the yield strength of the stress-strain profile.

Raises:

NotImplementedError – If this method has not been implemented by the child class

Return type:

float

plot_stress_strain(title: str = 'Stress-Strain Profile', fmt: str = 'o-', **kwargs) matplotlib.axes.Axes#

Plots the stress-strain profile.

Parameters:
Returns:

Matplotlib axes object

Return type:

matplotlib.axes.Axes

print_properties(fmt: str = '8.6e') None#

Prints the stress-strain profile properties to the terminal.

Parameters:

fmt (str) – Number format