-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
enhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested
Description
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 requestNew feature or requestquestionFurther information is requestedFurther information is requested