Concrete

class compas_model.materials.Concrete(fck, fck_cube=None, fcm=None, fctm=None, Ecm=None, density=2400, poisson=0.2, name=None)

Bases: Material

Class representing a generic concrete material.

Parameters:
fckfloat

Characteristic cylinder compressive strength in [MPa].

fck_cubefloat, optional

Characteristic cube compressive strength in [MPa]. If not provided, fck_cube = 1.25 * fck is used.

fctmfloat, optional

Mean tensile strength in [MPa]. If not provided, fctm = 0.1 * fck is used.

Ecmfloat, optional

Modulus of elasticity in [GPa].

densityfloat, optional

Density of the material in [kg/m3]. If not provided, 2400 kg/m3 is used.

poissonfloat, optional

Poisson’s ratio. If not provided, poisson = 0.2 is used.

namestr, optional

Name of the material.

Attributes:
fckfloat

Characteristic cylinder compressive strength in [MPa].

fck_cubefloat

Characteristic cube compressive strength in [MPa].

fcmfloat

Mean compressive strength as fcm = fck + 8 Mpa.

fctmfloat

Mean tensile strength in [MPa].

Ecmfloat

Modulus of elasticity in [MPa].

Methods

from_strength_class

Construct a concrete material from a strength class.

Inherited Methods

ToString

Converts the instance to a string.

copy

Make an independent copy of the data object.

from_json

Construct an object of this type from a JSON file.

from_jsonstring

Construct an object of this type from a JSON string.

sha256

Compute a hash of the data for comparison during version control using the sha256 algorithm.

to_json

Convert an object to its native data representation and save it to a JSON file.

to_jsonstring

Convert an object to its native data representation and save it to a JSON string.

validate_data

Validate the data against the object's data schema.