RFEM_Python_Client icon indicating copy to clipboard operation
RFEM_Python_Client copied to clipboard

REQUEST: Load Acting Regions for Free Loads

Open BurakYyurt opened this issue 10 months ago • 1 comments

Hi, Is it possible to implement "Load Acting Regions" to free line load and free rectangular load methods (I only checked those 2, but possibly to all free load methods) ? They are kind of handy when dealing with curved surfaces to avoid double loading.

BurakYyurt avatar Mar 13 '25 13:03 BurakYyurt

Haha - I realized those methods were already implemented in the javascript api. I am abysmally bad at using Git, so rather than subject the world to the catastrophe of my pull request, I’m just dropping my changes here instead.

If anyone needs, add the following lines to free load parameter. You need to pass the load acting region from and to variables in the load_parameter list.

clientObject.load_acting_region_from = load_parameter[xxx] clientObject.load_acting_region_to = load_parameter[xxx+1]

dont forget to update this

if len(load_parameter) != 6:

BurakYyurt avatar Mar 13 '25 13:03 BurakYyurt