Launch multiple simulation with a couple of variable specific for each simulation. #346
Unanswered
rodolphebauer
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Hello, one solution I can think of is this:
The idea is to use a map of values as your only parameter instead of multiple individual parameters. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone,
I'm a user of Gama, more specifically of the MAELIA plateform. To run my simulations, I use the batch fonction of gama. However, for each simulation I run, I want to change two different parameters in my launcher. I know how to do with one, by using the function "among" and giving to gama each value of the parameter needed, but if I use "among" for two parameters, gama performs a simulation for each combinaison of the values for the first and the second parameter. I want gama to run the simulation with the first value of both parmater, then the second etc...
Let's take an exemple :
parameter 'name : ' var: name <- 'titi'
among: ['titi', 'toto', 'tata']
parameter 'color : ' var: name <- 'blue'
among: ['blue', 'green', 'yellow']
I want to have three simulations with the values ['titi','blue'], ['toto', 'green'], ['tata', 'yellow'].
Is there a way to do that ?
Many thanks !
Beta Was this translation helpful? Give feedback.
All reactions