question

Damodaran Moturu G avatar image
0 Likes"
Damodaran Moturu G asked Damodaran Moturu G commented

Is it possible to change the maximum capacity of the processor dynamically?

FlexSim 17.2.4
processormaximum capacity
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

Joerg Vogel avatar image
3 Likes"
Joerg Vogel answered Damodaran Moturu G commented

The capacity is a variable in the attribute branch of the object tree.

The variable name is "maxcontent".

  1. model().find("Processor1").as(Object).attrs.variables.subnodes["maxcontent"].value = 4;

or non dot syntax

  1. setvarnum(model().find("Processor1"),"maxcontent",4);
· 4
5 |100000

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