This feature is available in Broadcast Pro and Broadcast Enterprise only.
Often a facilitator will want to customize a simulation for a group of users.
A workshop facilitator might want to tailor a simulation to match the skill level of the participants.
A facilitator might want to show or hide information to adjust the complexity level of the simulation.
A professor might want to use the same simulation multiple times with different case studies.
Forio Broadcast supports this by allowing the facilitator to create and set a "default run". The decisions made in this run are applied when any new run is begun by a user in the same simulation group.
For example, suppose the facilitator logged in, set a decision "Initial Price" to 50, and then set the current run as the default run. When a regular user logs in, the model decision "Initial Price" will be automatically initialized to 50. Other model variables and decisions can then be based upon that value.
Facilitators can also enter a name and a description of the Run using the Run Fields FD_run_name and FD_run_description. All new runs will automatically have their name and description set to the same values as the default run.
To allow facilitators to create scenarios, you will need to do the following.
Create a password protected simulation and a simple facilitator home page.
In your model, designate the simulation assumptions you wish the facilitator to set as decisions (if necessary, by changing the "V" to a "D").
Create a decisions form that prompts for simulation assumptions, and optionally, a run name and description.
Include a form field FD_action with a value of "set_default".
Optionally, display the scenario name and description on the simulation main page.
The following sections give an example, based on a simple model of price elasticity. The facilitator will set the base amount of sales and the price elasticity. The user will be able to set a price and see the amount of calculated sales and revenue.
All files used in the following example are available for download:
http://www.forio.com/broadcastdocs/downloads/scenarios.zip
Follow the instructions in these articles. Name the facilitator page "facilitator.htm" but leave it empty for the moment.
How to Create a Password Protected Simulation
How to Create a Facilitator Page
Enter the following model into your simulation. This model calculates sales and revenue, based on a user entered price and the facilitator set assumptions regarding price sensitivity and base sales. Notice the the facilitator-set assumptions are decisions marked with a "D".
|
## Price Sensitivity is similar to elasticity. |
Include the following decisions form in the file "facilitator.htm". Notice that it prompts for the run name and description as well as several scenario assumptions.
|
<P> </form> |
The FD_action parameter tells Forio Broadcast to set the current run as the default run (or, in the case of the second option, to clear the default run entirely). This does not have to be in the same form as the decisions themselves. You may want to create a "wizard"-like series of pages that only sets the default run at the end of the sequence.
Put this form field directly before the submit button in the previous example.
|
<P> |
You can display the run name and description with the following FML. See the reference $Run for more information. This shows the name of the current scenario (which is referenced with $Run.BaseRun). You can also get the name of the current run with $Run.Name. Typically this will be the same as the name of the scenario, as the run name is initialized to the scenario name.
|
#if($Run.BaseRun) |
Here is the complete example (using the model shown above). All the files for this simulation can be downloaded from:
http://www.forio.com/broadcastdocs/downloads/scenarios.zip
facilitator.htm
|
<HTML> |

index.htm
|
<HTML> |
