question

Kari Payton avatar image
0 Likes"
Kari Payton asked Kari Payton commented

FlexScript to set max output flow from fluid processor

What function can I use to set the maximum output of a fluid processor on a custom code in process flow? I am using the FlexSim flow library not FlowWorks. In flow works there's model.find("abc").output.maxRate. But I can't figure out what node that is for the regular fluid items.

FlexSim 19.1.0
flownodes
fluidprocoutput.png (12.2 KiB)
· 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.

1 Answer

Arun Kr avatar image
1 Like"
Arun Kr answered Kari Payton commented

It is the maxflowrate code. Try using the below code.

  1. double FlowRate = 5;
  2. Object FluidProcessor = Model.find("FluidProcessor1");
  3. setvarnum(FluidProcessor,"maxflowrate",FlowRate);
· 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.