Skip to content

REQUEST: a way to set members_number_of_divisions_for_result_diagram #24

Description

@damianbobrowski

Is your feature request related to a problem? Please describe.
In RFEM it is possible to set members_number_of_divisions_for_result_diagram. Example usage:

from RFEM.initModel import Model, Calculate_all
from RFEM.Results.resultTables import ResultTables
from RFEM.Calculate.meshSettings import MeshSettings

Model(False, "simpleBeam")

# switch to detailde results
Model.clientModel.service.use_detailed_member_results(True)

# set the member division to 12
meshConfig = {'members_number_of_divisions_for_result_diagram': 12}
MeshSettings(meshConfig)

Calculate_all()
resultTable = ResultTables.MembersInternalForces() 

In RSTAB module RSTAB.meshSettings is missing. Probably reasons is that it relies on WS methods:

model.clientModel.service.get_mesh_settings()
model.clientModel.service.set_mesh_settings()

which are missing for RSTAB

raise MethodNotFound(qn)
suds.MethodNotFound: Method not found: 'RstabModel.RstabModelPort.get_mesh_settings'    

Describe the solution you'd like
API way to set members_number_of_divisions_for_result_diagram

Describe alternatives you've considered
_

Additional context
_

Metadata

Metadata

Assignees

Labels

enhancementNew feature or requestquestionFurther information is requested

Type

No type
No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions