### GWE-EST #### Structure of Blocks _FOR EACH SIMULATION_ ``` BEGIN OPTIONS [SAVE_FLOWS] [ZERO_ORDER_DECAY_WATER] [ZERO_ORDER_DECAY_SOLID] [DENSITY_WATER ] [HEAT_CAPACITY_WATER ] [LATENT_HEAT_VAPORIZATION ] END OPTIONS ``` ``` BEGIN GRIDDATA POROSITY [LAYERED] -- READARRAY [DECAY_WATER [LAYERED] -- READARRAY] [DECAY_SOLID [LAYERED] -- READARRAY] HEAT_CAPACITY_SOLID [LAYERED] -- READARRAY DENSITY_SOLID [LAYERED] -- READARRAY END GRIDDATA ``` #### Explanation of Variables ##### Block: OPTIONS * `SAVE_FLOWS` keyword to indicate that EST flow terms will be written to the file specified with "BUDGET FILEOUT" in Output Control. * `ZERO_ORDER_DECAY_WATER` is a text keyword to indicate that zero-order decay will occur in the aqueous phase. That is, decay occurs in the water and is a rate per volume of water only, not per volume of aquifer (i.e., grid cell). Use of this keyword requires that DECAY_WATER is specified in the GRIDDATA block. * `ZERO_ORDER_DECAY_SOLID` is a text keyword to indicate that zero-order decay will occur in the solid phase. That is, decay occurs in the solid and is a rate per mass (not volume) of solid only. Use of this keyword requires that DECAY_SOLID is specified in the GRIDDATA block. * `density_water` density of water used by calculations related to heat storage and conduction. This value is set to 1,000 kg/m3 if no overriding value is specified. A user-specified value should be provided for models that use units other than kilograms and meters or if it is necessary to use a value other than the default. * `heat_capacity_water` heat capacity of water used by calculations related to heat storage and conduction. This value is set to 4,184 J/kg/C if no overriding value is specified. A user-specified value should be provided for models that use units other than kilograms, joules, and degrees Celsius or it is necessary to use a value other than the default. * `latent_heat_vaporization` latent heat of vaporization is the amount of energy that is required to convert a given quantity of liquid into a gas and is associated with evaporative cooling. While the EST package does not simulate evaporation, multiple other packages in a GWE simulation may. To avoid having to specify the latent heat of vaporization in multiple packages, it is specified in a single location and accessed wherever it is needed. For example, evaporation may occur from the surface of streams or lakes and the energy consumed by the change in phase would be needed in both the SFE and LKE packages. This value is set to 2,453,500 J/kg if no overriding value is specified. A user-specified value should be provided for models that use units other than joules and kilograms or if it is necessary to use a value other than the default. ##### Block: GRIDDATA * `porosity` is the mobile domain porosity, defined as the mobile domain pore volume per mobile domain volume. The GWE model does not support the concept of an immobile domain in the context of heat transport. * `decay_water` is the rate coefficient for zero-order decay for the aqueous phase of the mobile domain. A negative value indicates heat (energy) production. The dimensions of zero-order decay in the aqueous phase are energy per length cubed (volume of water) per time. Zero-order decay in the aqueous phase will have no effect on simulation results unless ZERO_ORDER_DECAY_WATER is specified in the options block. * `decay_solid` is the rate coefficient for zero-order decay for the solid phase. A negative value indicates heat (energy) production. The dimensions of zero-order decay in the solid phase are energy per mass of solid per time. Zero-order decay in the solid phase will have no effect on simulation results unless ZERO_ORDER_DECAY_SOLID is specified in the options block. * `heat_capacity_solid` is the mass-based heat capacity of dry solids (aquifer material). For example, units of J/kg/C may be used (or equivalent). * `density_solid` is a user-specified value of the density of aquifer material not considering the voids. Value will remain fixed for the entire simulation. For example, if working in SI units, values may be entered as kilograms per cubic meter. #### Example Input File ``` BEGIN OPTIONS HEAT_CAPACITY_WATER 4180.0 DENSITY_WATER 999.0 LATENT_HEAT_VAPORIZATION 2.454E+06 END OPTIONS BEGIN GRIDDATA POROSITY CONSTANT 0.1 HEAT_CAPACITY_SOLID CONSTANT 880.0 DENSITY_SOLID CONSTANT 2650.0 END GRIDDATA ```