|
MOM6
|
The control structure for the oil tracer package.
Definition at line 38 of file oil_tracer.F90.
Public variables and constants | |
| integer | ntr |
| The number of tracers that are actually used. | |
| logical | coupled_tracers = .false. |
| These tracers are not offered to the coupler. | |
| character(len=200) | ic_file |
| The file in which the age-tracer initial values can be found, or an empty string for internal initialization. | |
| logical | z_ic_file |
| If true, the IC_file is in Z-space. The default is false. | |
| real | oil_source_longitude |
| Latitude of source location (geographic) | |
| real | oil_source_latitude |
| Longitude of source location (geographic) | |
| integer | oil_source_i =-999 |
| Local i of source location (computational) | |
| integer | oil_source_j =-999 |
| Local j of source location (computational) | |
| real | oil_source_rate |
| Rate of oil injection [kg s-1]. | |
| real | oil_start_year |
| The year in which tracers start aging, or at which the surface value equals young_val, in years. | |
| real | oil_end_year |
| The year in which tracers start aging, or at which the surface value equals young_val, in years. | |
| type(time_type), pointer | time => NULL() |
| A pointer to the ocean model's clock. | |
| type(tracer_registry_type), pointer | tr_reg => NULL() |
| A pointer to the MOM tracer registry. | |
| real, dimension(:,:,:,:), pointer | tr => NULL() |
| The array of tracers used in this subroutine, in g m-3? | |
| real, dimension(ntr_max) | ic_val = 0.0 |
| The (uniform) initial condition value. | |
| real, dimension(ntr_max) | young_val = 0.0 |
| The value assigned to tr at the surface. | |
| real, dimension(ntr_max) | land_val = -1.0 |
| The value of tr used where land is masked out. | |
| real, dimension(ntr_max) | sfc_growth_rate |
| The exponential growth rate for the surface value [year-1]. | |
| real, dimension(ntr_max) | oil_decay_days |
| Decay time scale of oil [days]. | |
| real, dimension(ntr_max) | oil_decay_rate |
| Decay rate of oil [s-1] calculated from oil_decay_days. | |
| integer, dimension(ntr_max) | oil_source_k |
| Layer of source. | |
| logical | oil_may_reinit |
| If true, oil tracers may be reset by the initialization code if they are not found in the restart files. | |
| integer, dimension(ntr_max) | ind_tr |
| Indices returned by aof_set_coupler_flux if it is used and the surface tracer concentrations are to be provided to the coupler. | |
| type(vardesc), dimension(ntr_max) | tr_desc |
| Descriptions and metadata for the tracers. | |
| type(diag_ctrl), pointer | diag => NULL() |
| A structure that is used to regulate the timing of diagnostic output. | |
| type(mom_restart_cs), pointer | restart_csp => NULL() |
| A pointer to the restart control structure. | |