How to change graphical input
|
|
Hi,
Using IThink we have the Graphical Input Device tool that allows to change a graph, before any simulation, to test different relationships between two variables. Which tool can be used, and how, to have the same features in the Forio Interface? Should I change the graph in the IThink model and then recharge the equations or is possible to modify the graph in Forio environment? Tks Best regards Roberto Cantoni |
|
|
Hi,
The tool that you are looking for is called the Drawable Line Graph. It is used to set lookup tables by drawing behavior onto the graph. I imagine this question is in response to your TelService model which was converted from iThink. During that conversion process your lookups in iThink were converted to a format which is inaccessible to the Drawable Line Graph - to convert them into an accessible form look for something like the following V output = ARRAYGRAPHXY(input, { {0,0.1}, {0.5,0.5}, {1,0.9} }) and convert it into the following format D sample_table[1..3,1..2] = { {0,0.1}, {0.5,0.5}, {1,0.9} } V output = ARRAYGRAPHXY(input, sample_table) Then you will have access to the variable called sample_table in the UI designer for use in the drawable line graph. Remember though that everytime you re-import your iThink model you will have to re-convert your lookups. Billy |
Please log in to reply to topics.