File DustCommon_Mod.F90¶
File List > dust > DustCommon_Mod.F90
Go to the documentation of this file
module dustcommon_mod
use precision_mod, only: fp
! use precision_mod, only: fp
use error_mod, only: cc_success, cc_failure, cc_error, cc_warning, errormanagertype, &
error_invalid_config, error_invalid_state, error_not_found
use configmanager_mod, only: configmanagertype ! ConfigManager integration
use statemanager_mod, only: statemanagertype ! Add StateManager integration
implicit none
private
! Export types
public :: dustprocessconfig ! New unified process config
public :: dustconfig
public :: dustschemefengshaconfig
public :: dustschemeginouxconfig
! Export utility functions
public :: int_to_string
type :: dustconfig
! Process settings
character(len=32) :: scheme = 'fengsha'
logical :: is_active = .true.
logical :: diagnostics = .false. ! Diagnostic switch
! Diagnostic species configuration
integer :: n_diagnostic_species = 0
character(len=32), allocatable :: diagnostic_species(:) ! User-defined species for diagnostics
integer, allocatable :: diagnostic_species_id(:) ! Indices mapping diagnostic_species to species_names
real(fp) :: dt_min = 1.0_fp ! Minimum time step (seconds)
real(fp) :: dt_max = 3600.0_fp ! Maximum time step (seconds)
! Species configuration
integer :: n_species = 0
character(len=32), allocatable :: species_names(:)
integer, allocatable :: species_indices(:) ! Indices of dust species in ChemState
! Species properties
real(fp), allocatable :: species_density(:) ! density for each species
real(fp), allocatable :: species_lower_radius(:) ! lower_radius for each species
real(fp), allocatable :: species_radius(:) ! radius for each species
real(fp), allocatable :: species_upper_radius(:) ! upper_radius for each species
! Diagnostic configuration
logical :: output_diagnostics = .true.
real(fp) :: diagnostic_frequency = 3600.0_fp ! Output frequency (seconds)
contains
procedure, public :: validate => validate_dust_config
procedure, public :: finalize => finalize_dust_config
procedure, public :: print_summary => print_dust_config_summary
end type dustconfig
type :: dustschemefengshaconfig
! Scheme metadata
character(len=64) :: scheme_name = 'fengsha'
character(len=256) :: description = 'Fengsha Dust emission scheme developed at NOAA ARL for use at NOAA NWS'
character(len=64) :: author = 'Barry Baker & Wei Li'
character(len=16) :: algorithm_type = 'explicit'
! Process configuration
logical :: affects_full_column = .false. ! Surface-only processing
! Scheme parameters
real(fp) :: alpha = 0.2 ! linear scaling factor
real(fp) :: gamma = 1.0 ! Exponential scaling factor on source parameter
real(fp) :: drylimit_factor = 1.0 ! Dry Limit factor modifying the Fecan dry limit following Zender 2003
real(fp) :: moist_correction_factor = 1.0 ! Moisture correction factor
real(fp) :: kvhmax = 0.0002 ! Maximum vertical to horizontal flux ratio
integer :: drag_option = 1 ! Drag Partition Option: 1 - use input drag, 2 - Darmenova, 3 - Leung 2022, 4 - MB95
integer :: horizflux_option = 1 ! Horizontal flux option: 1 - White (1979), 2 - Draxler (2001), 3 - Kawamura (1964)
integer :: moist_option = 1 ! Moisture parameterization: 1 - Fecan, 2 - Zhao
integer :: distribution_option = 1 ! Dust Distribution option: 1 - Kok 2011, 2 - Meng 2022 (not implemented yet)
! Required meteorological fields
integer :: n_required_met_fields = 15
character(len=32) :: required_met_fields(15)
contains
procedure, public :: validate => validate_fengsha_config
procedure, public :: finalize => finalize_fengsha_config
end type dustschemefengshaconfig
! fengsha scheme uses local variables only - no persistent state type needed
type :: dustschemeginouxconfig
! Scheme metadata
character(len=64) :: scheme_name = 'ginoux'
character(len=256) :: description = 'Ginoux dust emission scheme'
character(len=64) :: author = 'Barry Baker & Wei Li'
character(len=16) :: algorithm_type = 'explicit'
! Process configuration
logical :: affects_full_column = .false. ! Surface-only processing
! Scheme parameters
real(fp) :: Ch_DU(5) = (/ 1.0_fp, 1.0_fp, 1.0_fp, 1.0_fp, 1.0_fp /) ! Dust tuning coefficient per species bin
! Required meteorological fields
integer :: n_required_met_fields = 9
character(len=32) :: required_met_fields(9)
contains
procedure, public :: validate => validate_ginoux_config
procedure, public :: finalize => finalize_ginoux_config
end type dustschemeginouxconfig
! ginoux scheme uses local variables only - no persistent state type needed
type :: dustprocessconfig
! Process metadata
character(len=64) :: process_name = 'dust'
character(len=16) :: process_version = '1.0.0'
logical :: is_active = .true.
! Process-specific configuration (delegate to DustConfig)
type(DustConfig) :: dust_config
! Scheme configurations
type(DustSchemeFENGSHAConfig) :: fengsha_config
type(DustSchemeGINOUXConfig) :: ginoux_config
contains
procedure, public :: load_from_config => dust_process_load_config
procedure, public :: load_species_from_chem_state => load_species_from_chem_state
procedure, public :: validate => dust_process_validate
procedure, public :: finalize => dust_process_finalize
procedure, public :: get_active_scheme_config => get_active_scheme_config
procedure, public :: load_fengsha_config
procedure, public :: load_ginoux_config
procedure, public :: map_diagnostic_species_indices
end type dustprocessconfig
contains
subroutine validate_dust_config(this, error_handler)
class(DustConfig), intent(inout) :: this
type(ErrorManagerType), intent(inout) :: error_handler
character(len=256) :: error_msg
integer :: rc
! Validate time step bounds
if (this%dt_min <= 0.0_fp) then
call error_handler%report_error(error_invalid_config, &
"Minimum time step must be positive", rc)
return
end if
if (this%dt_max < this%dt_min) then
call error_handler%report_error(error_invalid_config, &
"Maximum time step must be >= minimum time step", rc)
return
end if
! Validate active scheme(s)
! Validate scheme
if (trim(this%scheme) /= 'fengsha' .and. &
trim(this%scheme) /= 'ginoux' .and. &
.true.) then
write(error_msg, '(A)') "Invalid scheme: " // trim(this%scheme)
call error_handler%report_error(error_invalid_config, error_msg, rc)
return
end if
end subroutine validate_dust_config
subroutine print_dust_config_summary(this)
class(DustConfig), intent(in) :: this
write(*, '(A)') "=== Dust Process Configuration ==="
write(*, '(A,A)') " Active scheme: ", trim(this%scheme)
write(*, '(A,I0)') " Number of species: ", this%n_species
write(*, '(A,F0.1,A)') " Minimum time step: ", this%dt_min, " s"
write(*, '(A,F0.1,A)') " Maximum time step: ", this%dt_max, " s"
write(*, '(A,L1)') " Output diagnostics: ", this%output_diagnostics
write(*, '(A)') "============================================="
end subroutine print_dust_config_summary
subroutine finalize_dust_config(this)
class(DustConfig), intent(inout) :: this
! Deallocate species names array
if (allocated(this%species_names)) then
deallocate(this%species_names)
end if
! Deallocate species indices array
if (allocated(this%species_indices)) then
deallocate(this%species_indices)
end if
! Deallocate species properties arrays
if (allocated(this%species_density)) then
deallocate(this%species_density)
end if
if (allocated(this%species_lower_radius)) then
deallocate(this%species_lower_radius)
end if
if (allocated(this%species_radius)) then
deallocate(this%species_radius)
end if
if (allocated(this%species_upper_radius)) then
deallocate(this%species_upper_radius)
end if
! Deallocate diagnostic species array
if (allocated(this%diagnostic_species)) then
deallocate(this%diagnostic_species)
end if
! Deallocate diagnostic species indices array
if (allocated(this%diagnostic_species_id)) then
deallocate(this%diagnostic_species_id)
end if
end subroutine finalize_dust_config
subroutine validate_fengsha_config(this, error_handler)
class(DustSchemeFENGSHAConfig), intent(inout) :: this
type(ErrorManagerType), intent(inout) :: error_handler
! TODO: Add scheme-specific validation
end subroutine validate_fengsha_config
subroutine finalize_fengsha_config(this)
class(DustSchemeFENGSHAConfig), intent(inout) :: this
! Nothing to deallocate for basic configuration
end subroutine finalize_fengsha_config
subroutine validate_ginoux_config(this, error_handler)
class(DustSchemeGINOUXConfig), intent(inout) :: this
type(ErrorManagerType), intent(inout) :: error_handler
! TODO: Add scheme-specific validation
end subroutine validate_ginoux_config
subroutine finalize_ginoux_config(this)
class(DustSchemeGINOUXConfig), intent(inout) :: this
! Nothing to deallocate for basic configuration
end subroutine finalize_ginoux_config
function int_to_string(int_val) result(str_val)
integer, intent(in) :: int_val
character(len=32) :: str_val
write(str_val, '(I0)') int_val
str_val = adjustl(str_val)
end function int_to_string
subroutine dust_process_load_config(this, config_manager, error_handler)
class(DustProcessConfig), intent(inout) :: this
type(ConfigManagerType), intent(inout) :: config_manager
type(ErrorManagerType), intent(inout) :: error_handler
character(len=256) :: scheme_name
integer :: ierr, rc
! Process reads directly from master YAML structure: processes.dust
! ConfigManager provides generic YAML access, process handles its own configuration
! Load process metadata
call config_manager%get_string("processes/dust/name", this%process_name, rc, "dust")
if (rc /= cc_success) this%process_name = "dust" ! default
call config_manager%get_string("processes/dust/version", this%process_version, rc, "1.0.0")
if (rc /= cc_success) this%process_version = "1.0.0" ! default
call config_manager%get_logical("processes/dust/activate", this%is_active, rc, .true.)
if (rc /= cc_success) this%is_active = .true. ! default
! Load process-specific configuration directly from master YAML
call config_manager%get_string("processes/dust/scheme", this%dust_config%scheme, rc, "fengsha")
if (rc /= cc_success) then
call error_handler%report_error(error_invalid_config, &
"Missing required 'scheme' in processes/dust configuration", rc)
return
end if
! Load diagnostic switch
call config_manager%get_logical("processes/dust/diagnostics", this%dust_config%diagnostics, rc, .false.)
if (rc /= cc_success) this%dust_config%diagnostics = .false. ! Default
! Load diagnostic species list
call config_manager%get_array("processes/dust/diag_species", this%dust_config%diagnostic_species, &
rc, default_values=["All"])
if (rc /= cc_success) then
! Default to all species if not specified
allocate(this%dust_config%diagnostic_species(1))
this%dust_config%diagnostic_species(1) = "All"
this%dust_config%n_diagnostic_species = 1
else
! Set the count based on the returned array size
if (allocated(this%dust_config%diagnostic_species)) then
this%dust_config%n_diagnostic_species = size(this%dust_config%diagnostic_species)
else
this%dust_config%n_diagnostic_species = 0
end if
end if
! Species configuration is loaded from ChemState in load_species_from_chem_state
! The species come from the master species YAML file (CATChem_species.yml)
! and are filtered by is_dust property
! Load scheme-specific configuration from master YAML
scheme_name = trim(this%dust_config%scheme)
select case (scheme_name)
case ('fengsha')
call this%load_fengsha_config(config_manager, error_handler)
case ('ginoux')
call this%load_ginoux_config(config_manager, error_handler)
case default
call error_handler%report_error(error_invalid_state, &
"Unknown dust scheme: " // trim(scheme_name), rc)
return
end select
end subroutine dust_process_load_config
subroutine load_species_from_chem_state(this, chem_state, error_handler)
use chemstate_mod, only: chemstatetype
class(DustProcessConfig), intent(inout) :: this
type(ChemStateType), pointer, intent(in) :: chem_state
type(ErrorManagerType), intent(inout) :: error_handler
integer :: i, rc
integer :: species_idx
if (.not. associated(chem_state)) then
call error_handler%report_error(error_invalid_state, &
"ChemState not associated in load_species_from_chem_state", rc)
return
end if
! by_metadata mode: Load species by type from ChemState using dynamic metadata flag mapping
! Dynamic mapping: is_dust -> nSpeciesDust and DustIndex
this%dust_config%n_species = chem_state%nSpeciesDust
if (this%dust_config%n_species <= 0) then
call error_handler%report_error(error_invalid_state, &
"No dust species found in ChemState", rc)
return
end if
! Check if DustIndex is allocated and has correct size
if (.not. allocated(chem_state%DustIndex)) then
call error_handler%report_error(error_invalid_state, &
"DustIndex not allocated in ChemState", rc)
return
end if
if (size(chem_state%DustIndex) < this%dust_config%n_species) then
call error_handler%report_error(error_invalid_state, &
"DustIndex size inconsistent with nSpeciesDust", rc)
return
end if
! Deallocate existing arrays if allocated
if (allocated(this%dust_config%species_names)) then
deallocate(this%dust_config%species_names)
end if
if (allocated(this%dust_config%species_indices)) then
deallocate(this%dust_config%species_indices)
end if
! Allocate arrays
allocate(this%dust_config%species_names(this%dust_config%n_species))
allocate(this%dust_config%species_indices(this%dust_config%n_species))
! Allocate species properties arrays
allocate(this%dust_config%species_density(this%dust_config%n_species))
allocate(this%dust_config%species_lower_radius(this%dust_config%n_species))
allocate(this%dust_config%species_radius(this%dust_config%n_species))
allocate(this%dust_config%species_upper_radius(this%dust_config%n_species))
! by_metadata mode: Copy indices from metadata-specific index array using dynamic mapping
! Dynamic mapping: is_dust -> DustIndex
this%dust_config%species_indices(1:this%dust_config%n_species) = &
chem_state%DustIndex(1:this%dust_config%n_species)
! Get species names using the indices
do i = 1, this%dust_config%n_species
if (this%dust_config%species_indices(i) > 0 .and. &
this%dust_config%species_indices(i) <= size(chem_state%SpeciesNames)) then
this%dust_config%species_names(i) = &
trim(chem_state%SpeciesNames(this%dust_config%species_indices(i)))
else
call error_handler%report_error(error_invalid_state, &
"Invalid species index in species index array", rc)
return
end if
end do
! Load species properties from ChemState
do i = 1, this%dust_config%n_species
species_idx = this%dust_config%species_indices(i)
this%dust_config%species_density(i) = chem_state%ChemSpecies(species_idx)%density
this%dust_config%species_lower_radius(i) = chem_state%ChemSpecies(species_idx)%lower_radius
this%dust_config%species_radius(i) = chem_state%ChemSpecies(species_idx)%radius
this%dust_config%species_upper_radius(i) = chem_state%ChemSpecies(species_idx)%upper_radius
end do
end subroutine load_species_from_chem_state
subroutine load_fengsha_config(this, config_manager, error_handler)
class(DustProcessConfig), intent(inout) :: this
type(ConfigManagerType), intent(inout) :: config_manager
type(ErrorManagerType), intent(inout) :: error_handler
integer :: ierr, rc
! Load scheme parameters directly from processes/dust/fengsha/ in master YAML
call config_manager%get_real("processes/dust/fengsha/alpha", &
this%fengsha_config%alpha, rc, 0.2_fp)
if (rc /= cc_success) this%fengsha_config%alpha = 0.2_fp
call config_manager%get_real("processes/dust/fengsha/gamma", &
this%fengsha_config%gamma, rc, 1.0_fp)
if (rc /= cc_success) this%fengsha_config%gamma = 1.0_fp
call config_manager%get_real("processes/dust/fengsha/drylimit_factor", &
this%fengsha_config%drylimit_factor, rc, 1.0_fp)
if (rc /= cc_success) this%fengsha_config%drylimit_factor = 1.0_fp
call config_manager%get_real("processes/dust/fengsha/moist_correction_factor", &
this%fengsha_config%moist_correction_factor, rc, 1.0_fp)
if (rc /= cc_success) this%fengsha_config%moist_correction_factor = 1.0_fp
call config_manager%get_real("processes/dust/fengsha/kvhmax", &
this%fengsha_config%kvhmax, rc, 0.0002_fp)
if (rc /= cc_success) this%fengsha_config%kvhmax = 0.0002_fp
call config_manager%get_integer("processes/dust/fengsha/drag_option", &
this%fengsha_config%drag_option, rc, 1)
if (rc /= cc_success) this%fengsha_config%drag_option = 1
call config_manager%get_integer("processes/dust/fengsha/horizflux_option", &
this%fengsha_config%horizflux_option, rc, 1)
if (rc /= cc_success) this%fengsha_config%horizflux_option = 1
call config_manager%get_integer("processes/dust/fengsha/moist_option", &
this%fengsha_config%moist_option, rc, 1)
if (rc /= cc_success) this%fengsha_config%moist_option = 1
call config_manager%get_integer("processes/dust/fengsha/distribution_option", &
this%fengsha_config%distribution_option, rc, 1)
if (rc /= cc_success) this%fengsha_config%distribution_option = 1
end subroutine load_fengsha_config
subroutine load_ginoux_config(this, config_manager, error_handler)
class(DustProcessConfig), intent(inout) :: this
type(ConfigManagerType), intent(inout) :: config_manager
type(ErrorManagerType), intent(inout) :: error_handler
integer :: ierr, rc
! Load scheme parameters directly from processes/dust/ginoux/ in master YAML
! Array parameter: Ch_DU
block
real(fp), allocatable :: temp_array(:)
call config_manager%get_real_array("processes/dust/ginoux/Ch_DU", &
temp_array, rc)
if (rc == cc_success .and. allocated(temp_array)) then
this%ginoux_config%Ch_DU(1:min(size(temp_array), size(this%ginoux_config%Ch_DU))) = &
temp_array(1:min(size(temp_array), size(this%ginoux_config%Ch_DU)))
deallocate(temp_array)
end if
end block
end subroutine load_ginoux_config
subroutine dust_process_validate(this, state_manager, error_handler)
class(DustProcessConfig), intent(inout) :: this
type(StateManagerType), intent(in) :: state_manager
type(ErrorManagerType), intent(inout) :: error_handler
! Validate main config
call this%dust_config%validate(error_handler)
! Validate scheme-specific config
select case (trim(this%dust_config%scheme))
case ('fengsha')
call this%fengsha_config%validate(error_handler)
case ('ginoux')
call this%ginoux_config%validate(error_handler)
end select
end subroutine dust_process_validate
subroutine dust_process_finalize(this)
class(DustProcessConfig), intent(inout) :: this
call this%dust_config%finalize()
call this%fengsha_config%finalize()
call this%ginoux_config%finalize()
end subroutine dust_process_finalize
function get_active_scheme_config(this) result(scheme_config)
class(DustProcessConfig), intent(in) :: this
class(*), allocatable :: scheme_config
select case (trim(this%dust_config%scheme))
case ('fengsha')
allocate(scheme_config, source=this%fengsha_config)
case ('ginoux')
allocate(scheme_config, source=this%ginoux_config)
case default
! Return null
end select
end function get_active_scheme_config
subroutine map_diagnostic_species_indices(this, error_handler)
class(DustProcessConfig), intent(inout) :: this
type(ErrorManagerType), intent(inout) :: error_handler
integer :: i, j, rc
character(len=256) :: error_msg
logical :: found_species
! Only proceed if diagnostic species are defined
if (this%dust_config%n_diagnostic_species == 0) return
! Handle "All" case - map all available species
if (this%dust_config%n_diagnostic_species == 1 .and. &
trim(this%dust_config%diagnostic_species(1)) == "All") then
! Deallocate and reallocate for all species
if (allocated(this%dust_config%diagnostic_species_id)) deallocate(this%dust_config%diagnostic_species_id)
allocate(this%dust_config%diagnostic_species_id(this%dust_config%n_species))
if (allocated(this%dust_config%diagnostic_species)) deallocate(this%dust_config%diagnostic_species)
allocate(this%dust_config%diagnostic_species(this%dust_config%n_species))
this%dust_config%n_diagnostic_species = this%dust_config%n_species
this%dust_config%diagnostic_species = this%dust_config%species_names
! Map all species indices (1:n_species)
do i = 1, this%dust_config%n_species
this%dust_config%diagnostic_species_id(i) = i
end do
return
end if
! Allocate diagnostic species indices array
if (allocated(this%dust_config%diagnostic_species_id)) deallocate(this%dust_config%diagnostic_species_id)
allocate(this%dust_config%diagnostic_species_id(this%dust_config%n_diagnostic_species))
! Map each diagnostic species name to its index in species_names
do i = 1, this%dust_config%n_diagnostic_species
found_species = .false.
do j = 1, this%dust_config%n_species
if (trim(this%dust_config%diagnostic_species(i)) == trim(this%dust_config%species_names(j))) then
this%dust_config%diagnostic_species_id(i) = j
found_species = .true.
exit
end if
end do
if (.not. found_species) then
write(error_msg, '(A,A,A)') "Diagnostic species '", &
trim(this%dust_config%diagnostic_species(i)), &
"' not found in process species list"
call error_handler%report_error(error_not_found, error_msg, rc)
!return !do not return and the diagnostics for this unspecified species will be zero in the output
end if
end do
end subroutine map_diagnostic_species_indices
end module dustcommon_mod