This pull request includes updates to the update_atmos_chemistry subroutine in atmos_model.F90 and modifications in the module_cplfields module in cpl/module_cplfields.F90. The changes primarily focus on incorporating the vtype (vegetation type) variable into the atmospheric chemistry update process.
Updates to atmos_model.F90:
Added vtype to the list of variables in update_atmos_chemistry subroutine.
Included a call to cplFieldGet to retrieve the vegetation_type field and assign it to vtype.
Updated the reshaping and type conversion logic to include vtype.
Added logging for vtype to output its min, max, and average values.
Modifications to cpl/module_cplfields.F90:
Commented out the fraction_of_vegetation_category and number_of_vegetation_categories fields in the FieldInfo list.
Added vegetation_type to the list of fields, and commented out number_of_vegetation_categories and fraction_of_vegetation_category.
Description
This pull request includes updates to the
update_atmos_chemistry
subroutine inatmos_model.F90
and modifications in themodule_cplfields
module incpl/module_cplfields.F90
. The changes primarily focus on incorporating thevtype
(vegetation type) variable into the atmospheric chemistry update process.Updates to
atmos_model.F90
:vtype
to the list of variables inupdate_atmos_chemistry
subroutine.cplFieldGet
to retrieve thevegetation_type
field and assign it tovtype
.vtype
.vtype
to output its min, max, and average values.Modifications to
cpl/module_cplfields.F90
:fraction_of_vegetation_category
andnumber_of_vegetation_categories
fields in theFieldInfo
list.vegetation_type
to the list of fields, and commented outnumber_of_vegetation_categories
andfraction_of_vegetation_category
.closes #889 This PR goes along with AQM#103
Issue(s) addressed
Testing
Dependencies
Should be paired with bbakernoaa/aqm/feature/vegtype
Requirements before merging