PRT-OC
Structure of Blocks
FOR EACH SIMULATION
BEGIN OPTIONS
[BUDGET FILEOUT <budgetfile>]
[BUDGETCSV FILEOUT <budgetcsvfile>]
[TRACK FILEOUT <trackfile>]
[TRACKCSV FILEOUT <trackcsvfile>]
[TRACK_RELEASE]
[TRACK_EXIT]
[TRACK_SUBFEATURE_EXIT]
[TRACK_TIMESTEP]
[TRACK_TERMINATE]
[TRACK_WEAKSINK]
[TRACK_USERTIME]
[TRACK_DROPPED]
END OPTIONS
BEGIN DIMENSIONS
[NTRACKTIMES <ntracktimes>]
END DIMENSIONS
BEGIN TRACKTIMES
[<time>
<time>
...]
END TRACKTIMES
FOR ANY STRESS PERIOD
BEGIN PERIOD <iper>
[SAVE <rtype> <ocsetting>]
[PRINT <rtype> <ocsetting>]
END PERIOD
Explanation of Variables
Block: OPTIONS
BUDGETkeyword to specify that record corresponds to the budget.FILEOUTkeyword to specify that an output filename is expected next.budgetfilename of the output file to write budget information.BUDGETCSVkeyword to specify that record corresponds to the budget CSV.budgetcsvfilename of the comma-separated value (CSV) output file to write budget summary information. A budget summary record will be written to this file for each time step of the simulation.TRACKkeyword to specify that record corresponds to a binary track file. Each PRT Model’s OC Package may have only one binary track output file.trackfilename of the binary output file to write tracking information.TRACKCSVkeyword to specify that record corresponds to a CSV track file. Each PRT Model’s OC Package may have only one CSV track file.trackcsvfilename of the comma-separated value (CSV) file to write tracking information.TRACK_RELEASEkeyword to indicate that particle tracking output is to be written when a particle is releasedTRACK_EXITkeyword to indicate that particle tracking output is to be written when a particle exits a grid feature (e.g. model, cell)TRACK_SUBFEATURE_EXITkeyword to indicate that particle tracking output is to be written when a particle exits a sub-grid-scale feature. Such features are considered implementation details of the tracking algorithm employed for particular grid types, and reporting for exit events from such features is disabled by default.TRACK_TIMESTEPkeyword to indicate that particle tracking output is to be written at the end of each time stepTRACK_TERMINATEkeyword to indicate that particle tracking output is to be written when a particle terminates for any reasonTRACK_WEAKSINKkeyword to indicate that particle tracking output is to be written when a particle exits a weak sink (a cell which removes some but not all inflow from adjacent cells)TRACK_USERTIMEkeyword to indicate that particle tracking output is to be written at user-specified times, provided as double precision values in the TRACKTIMES block.TRACK_DROPPEDkeyword to indicate that particle tracking output is to be written when a particle is dropped to the water table via DRY_TRACKING_METHOD DROP.
Block: DIMENSIONS
ntracktimesis the number of user-specified particle tracking times in the TRACKTIMES block.
Block: TRACKTIMES
timereal value that defines the tracking time with respect to the simulation start time.
Block: PERIOD
iperinteger value specifying the starting stress period number for which the data specified in the PERIOD block apply. IPER must be less than or equal to NPER in the TDIS Package and greater than zero. The IPER value assigned to a stress period block must be greater than the IPER value assigned for the previous PERIOD block. The information specified in the PERIOD block will continue to apply for all subsequent stress periods, unless the program encounters another PERIOD block.SAVEkeyword to indicate that information will be saved this stress period.PRINTkeyword to indicate that information will be printed this stress period.rtypetype of information to save or print. Can only be BUDGET.ocsettingspecifies the steps for which the data will be saved.ALL FIRST LAST FREQUENCY <frequency> STEPS <steps>
ALLkeyword to indicate save for all time steps in period.FIRSTkeyword to indicate save for first step in period. This keyword may be used in conjunction with other keywords to print or save results for multiple time steps.LASTkeyword to indicate save for last step in period. This keyword may be used in conjunction with other keywords to print or save results for multiple time steps.frequencysave at the specified time step frequency. This keyword may be used in conjunction with other keywords to print or save results for multiple time steps.stepssave for each step specified in STEPS. This keyword may be used in conjunction with other keywords to print or save results for multiple time steps.
Example Input File
BEGIN OPTIONS
END OPTIONS
BEGIN PERIOD 1
PRINT BUDGET ALL
SAVE BUDGET ALL
END PERIOD