### UTL-HPC #### Structure of Blocks _FOR EACH SIMULATION_ ``` BEGIN OPTIONS [PRINT_TABLE] END OPTIONS ``` ``` BEGIN PARTITIONS [ ...] END PARTITIONS ``` #### Explanation of Variables ##### Block: OPTIONS * `PRINT_TABLE` keyword to indicate that the partition table will be printed to the listing file. ##### Block: PARTITIONS * `mname` is the unique model name. * `mrank` is the zero-based partition number (also: MPI rank or processor id) to which the model will be assigned. #### Example Input File Example 1 ``` BEGIN options END options BEGIN partitions # mname MPI-rank model_0 0 model_1 0 model_2 1 model_3 2 model_4 3 model_5 3 END partitions ``` Example 2 ``` BEGIN options END options BEGIN partitions # mname MPI-rank left_gwf 0 inset_gwf 1 right_gwf 0 left_gwt 0 inset_gwt 1 right_gwt 0 END partitions ```