dlubal-software / RFEM_Python_Client

Python client (or high-level functions) for RFEM 6 using Web Services, SOAP and WSDL
https://dlubal-software.github.io/.github/
MIT License
67 stars 26 forks source link

BUG: Setting the area density according to SI for a thickness seems to not convert value #290

Open Dervis-vL opened 11 months ago

Dervis-vL commented 11 months ago

Describe the bug To set the area density variable (as seen on the printscreen) to a thickness via the webservice with the SI unit N/m^2 does not seem to convert it to kg/m^2 (see GUI on printscreen).

We provided the value 13441.67 [N/m^2] and expect the value 1344.167 [kg/m^2] in the GUI (after the model is saved).

To Reproduce The following call is made:

Thickness.StiffnessMatrix(
                no = self._thickness_count,
                name = thickness_name,
                material_no = material_num,
                stiffness_matrix= stiffness_matrix,
                consideration_of_self_weight = [ThicknessStiffnessMatrixSelfWeightDefinitionType.SELF_WEIGHT_DEFINITION_TYPE_DEFINED_VIA_FICTITIOUS_THICKNESS_AND_AREA_DENSITY, fictitious_thickness, area_density]
            )

Expected behavior We provided the value 13441.67 [N/m^2] and expect the value 1344.167 [kg/m^2] in the GUI (after the model is saved).

Screenshots

Area density

Desktop (please complete the following information):

Sacek073 commented 10 months ago

Hi @Dervis-vL, thank you for noticing this. It'll be investigated and if this beahviour is a bug it'll be corrected.

Sacek073 commented 10 months ago

The bug was reported (#139798). Thank you.

Dervis-vL commented 8 months ago

Hi!

I am curious to hear if progress on this issue has been made.