Fish Fuction for creating lifts

I am trying to use the fish function to create my lifts. It’s breaking by saying…*** Bad conversion of parameter number 7 (group_name)…***

I think it is seeing the group_name as a string and not as a placeholder for my lift group name. Please how can I resolve this?

using
[group_name]
since it is a FISH variable.

1 Like

Thank you. I think it’s still not recognizing it.

Hi.

It seems like no zone is in the group.
Which command did you use to affect the group?
What happens if you plot the zones and color them by groups?

Cheers!

Theophile

1 Like

Please check doc of FISH “string.build”, it might be

group_name = string.build(“L%1”, lift).

and check if the group_name is as you wished:

io.out(group_name)

and this group is in your model.

1 Like