You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When I add a material to my RFEM model using Material.UserDefinedMaterial, elasticity_modulus and shear_modulus are not added to the model. Also when I try to add it as material_type=MaterialType.TYPE_CONCRETE I get the following error: suds.WebFault: b"Server raised fault: 'Object: Material No. 2\nAttribute: Material type\nError: Invalid value.'"
To Reproduce
Steps to reproduce the behavior:
Defined the follwoing function to add materials:
def add_materials(self) -> None:
"""Add materials to the model."""
Material(no=1, name="C30/37 | EN 1992-1-1:2004/A1:2014")
Material.UserDefinedMaterial(
no=2,
material_type=MaterialType.TYPE_BASIC,
name="C30/37 cracked",
elasticity_modulus=11000,
shear_modulus=13750,
thermal_expansion_coefficient=0.00001,
poisson_ratio=0.2,
mass_density=2500,
definition_type=MaterialDefinitionType.E_G_NU,
)
Material(no=3, name="S355")
Expected behavior
I expect the E and G moduli to be added correctly to the RFEM model, but they are skipped. The rest of the props are added correctly.
Desktop:
Version of WIN11 OS: [WIN 11 23H2]
Version of RFEM6.07.0002
Version of python 3.10.8
Additional context:
When I add print: print(Material.GetMaterial(2).temperature[0][0].row['elasticity_modulus_global']) 11000 gets printed as expected, however it is not in the model.
The text was updated successfully, but these errors were encountered:
Describe the bug
When I add a material to my RFEM model using
Material.UserDefinedMaterial
,elasticity_modulus
andshear_modulus
are not added to the model. Also when I try to add it asmaterial_type=MaterialType.TYPE_CONCRETE
I get the following error:suds.WebFault: b"Server raised fault: 'Object: Material No. 2\nAttribute: Material type\nError: Invalid value.'"
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I expect the E and G moduli to be added correctly to the RFEM model, but they are skipped. The rest of the props are added correctly.
Desktop:
Additional context:
When I add print:
print(Material.GetMaterial(2).temperature[0][0].row['elasticity_modulus_global'])
11000 gets printed as expected, however it is not in the model.The text was updated successfully, but these errors were encountered: