question

Conner F avatar image
0 Likes"
Conner F asked Phil BoBo edited

Trouble resizing the crane dimensions

As my title says I am having trouble resizing the crane dimensions in the xys axes and I've looked online and through the forum for answers and can't seem to find one. Is there somebody who would be able to explain how to do this?

FlexSim 18.1.2
crane
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

·
Emily Hardy avatar image
1 Like"
Emily Hardy answered Phil BoBo edited

Changing the XYZ for the crane changes the shape of the the "task executer" part of the crane, as highlighted in the picture below:

If you want to change the dimensions of the different parts of the crane, you can follow this tree path:

Hope this helps!


· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Phil BoBo avatar image Phil BoBo ♦♦ commented ·

Several of the crane's sizers affect multiple spatial nodes of its sub-components.

For example, when you change the frame's Y size, it also changes the beam's Y size and the legs' Y locations. Both sizes and locations of the various components are related.

You can use the following code to change crane component values:

treenode crane = model().find("Crane1");

function_s(crane,"scalecomponents",crane,PICK_CRANE_FRAME_X,80);
function_s(crane,"scalecomponents",crane,PICK_CRANE_FRAME_Y,60);
function_s(crane,"scalecomponents",crane,PICK_CRANE_FRAME_Z,30);

/*
Other options for parameter 4:
PICK_CRANE_LEG_X
PICK_CRANE_LEG_Y
PICK_CRANE_BEAM_Z
PICK_CRANE_BRIDGE_X
PICK_CRANE_BRIDGE_Z
*/<br>
2 Likes 2 ·

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.