This is the same problem with the AttributeDefinitionList input. You can find the problem by examining the .log file generated by JaamSim when it reads the .cfg file. Open the .log file in Notepad++ and scroll down until you find the following lines:
Pasajeros AttributeDefinitionList { { tipo 0 } { ttotal 0 s } { serv 0 s } { equip 1 } { mano 0 } }
*** INPUT ERROR *** Entity: Pasajeros, Keyword: AttributeDefinitionList - Expected an input with 2 value(s), received: ttotal 0 s
This tells you that there is a problem with the AttributeDefinitionList input for Pasajeros. The entries for ttotal and serv should be { ttotal 0[s] } and { serv 0[s] }
A secondary problem is that it is possible to start the model despite the input error and that the resulting runtime error does not generated a popup message. I will look into those problems.
Harry